diff --git a/.gitignore b/.gitignore index 1c54f77..413a8d1 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ *.src.rpm *.tar.gz x86_64 +/libosinfo-1.5.0.tar.gz.asc diff --git a/0001-media-Fix-usage-of-application-id.patch b/0001-media-Fix-usage-of-application-id.patch deleted file mode 100644 index 003d9a8..0000000 --- a/0001-media-Fix-usage-of-application-id.patch +++ /dev/null @@ -1,38 +0,0 @@ -From 2626058a7921749387f8d3107241af7507f48c65 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= -Date: Mon, 1 Apr 2019 22:40:48 +0200 -Subject: [PATCH] media: Fix usage of application id -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -Christophe Fergeau pointed this issue out during the review of 6d789033e -and, even though, the bogus code ended up merged (sorry, mea culpa -here!). - -Signed-off-by: Fabiano Fidêncio -Reviewed-by: Cole Robinson ---- - osinfo/osinfo_media.c | 4 ++-- - 1 file changed, 2 insertions(+), 2 deletions(-) - -diff --git a/osinfo/osinfo_media.c b/osinfo/osinfo_media.c -index b16fcf6..4f86c2b 100644 ---- a/osinfo/osinfo_media.c -+++ b/osinfo/osinfo_media.c -@@ -830,10 +830,10 @@ create_from_location_async_data(CreateFromLocationAsyncData *data) - osinfo_entity_set_param(OSINFO_ENTITY(media), - OSINFO_MEDIA_PROP_PUBLISHER_ID, - data->publisher); -- if (!is_str_empty(data->pvd.application)) -+ if (!is_str_empty(data->application)) - osinfo_entity_set_param(OSINFO_ENTITY(media), - OSINFO_MEDIA_PROP_APPLICATION_ID, -- data->pvd.application); -+ data->application); - - index = (G_BYTE_ORDER == G_LITTLE_ENDIAN) ? 0 : 1; - vol_size = ((gint64) data->pvd.volume_space_size[index]) * --- -2.20.1 - diff --git a/0002-loader-Properly-load-the-arch-value-for-images.patch b/0002-loader-Properly-load-the-arch-value-for-images.patch deleted file mode 100644 index 50611e8..0000000 --- a/0002-loader-Properly-load-the-arch-value-for-images.patch +++ /dev/null @@ -1,37 +0,0 @@ -From 1940739805409af9e39c61dbfe238e6c9b1519b6 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= -Date: Wed, 10 Apr 2019 13:45:14 +0200 -Subject: [PATCH] loader: Properly load the arch value for images -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -osinfo_loader_image() has been considering the XML tag for the -images' architecture was "architecture", while it actually is "arch". - -By trying to read the wrong tag, no arch was loaded, causing then any -image load to fail with: -CRITICAL **: 13:30:06.539: osinfo_entity_set_param: assertion 'value != NULL' failed - -Signed-off-by: Fabiano Fidêncio ---- - osinfo/osinfo_loader.c | 3 +-- - 1 file changed, 1 insertion(+), 2 deletions(-) - -diff --git a/osinfo/osinfo_loader.c b/osinfo/osinfo_loader.c -index e30148b..84c25e5 100644 ---- a/osinfo/osinfo_loader.c -+++ b/osinfo/osinfo_loader.c -@@ -1312,8 +1312,7 @@ static OsinfoImage *osinfo_loader_image(OsinfoLoader *loader, - { NULL, G_TYPE_INVALID } - }; - -- gchar *arch = (gchar *)xmlGetProp(root, -- BAD_CAST OSINFO_IMAGE_PROP_ARCHITECTURE); -+ gchar *arch = (gchar *)xmlGetProp(root, BAD_CAST "arch"); - gchar *format = (gchar *)xmlGetProp(root, - BAD_CAST OSINFO_IMAGE_PROP_FORMAT); - gchar *cloud_init = (gchar *)xmlGetProp(root, --- -2.20.1 - diff --git a/0003-tests-Remove-test-.uris.patch b/0003-tests-Remove-test-.uris.patch deleted file mode 100644 index ad09703..0000000 --- a/0003-tests-Remove-test-.uris.patch +++ /dev/null @@ -1,559 +0,0 @@ -From d0f081759b99f6642ab5fe0e875dfd878f7ed8d3 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= -Date: Wed, 10 Apr 2019 14:56:56 +0200 -Subject: [PATCH] tests: Remove test-*.uris -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -Those tests are now part of osinfo-db. - -With this change we can get rid of the curl dependency we have. - -Signed-off-by: Fabiano Fidêncio ---- - README | 1 - - configure.ac | 8 --- - tests/Makefile.am | 26 +--------- - tests/test-imageuris.c | 90 -------------------------------- - tests/test-mediauris.c | 96 ---------------------------------- - tests/test-treeuris.c | 94 --------------------------------- - tests/test-uris-common.c | 109 --------------------------------------- - tests/test-uris-common.h | 26 ---------- - 8 files changed, 2 insertions(+), 448 deletions(-) - delete mode 100644 tests/test-imageuris.c - delete mode 100644 tests/test-mediauris.c - delete mode 100644 tests/test-treeuris.c - delete mode 100644 tests/test-uris-common.c - delete mode 100644 tests/test-uris-common.h - -diff --git a/README b/README -index e3d528c..7f73e74 100644 ---- a/README -+++ b/README -@@ -26,7 +26,6 @@ Dependencies - - - Optional: - - gobject-introspection -- - libcurl (for tests only) - - Vala (build-time only) - - Patch submissions -diff --git a/configure.ac b/configure.ac -index fef3cbc..6c3ea01 100644 ---- a/configure.ac -+++ b/configure.ac -@@ -55,14 +55,6 @@ AC_ARG_ENABLE([tests], - AS_HELP_STRING([--enable-tests], [enable test suite]), - [], [enable_tests=yes]) - --if test "x$enable_tests" != "xno" ; then -- have_curl=no -- PKG_CHECK_MODULES([CURL], [libcurl], [have_curl=yes], [:]) -- AC_SUBST(CURL_CFLAGS) -- AC_SUBST(CURL_LIBS) --fi --AM_CONDITIONAL([HAVE_CURL],[test "x$have_curl" = "xyes"]) -- - AM_CONDITIONAL([ENABLE_TESTS],[test "x$enable_tests" = "xyes"]) - - LIBOSINFO_MAJOR_VERSION=`echo $VERSION | awk -F. '{print $1}'` -diff --git a/tests/Makefile.am b/tests/Makefile.am -index a822af2..27b0f8d 100644 ---- a/tests/Makefile.am -+++ b/tests/Makefile.am -@@ -23,14 +23,6 @@ check_PROGRAMS = \ - test-imagelist \ - $(NULL) - --if HAVE_CURL --check_PROGRAMS += \ -- test-mediauris \ -- test-treeuris \ -- test-imageuris \ -- $(NULL) --endif -- - COMMON_LDADD = \ - $(COVERAGE_LDFLAGS) \ - $(GLIB_LIBS) \ -@@ -78,8 +70,8 @@ test_list_LDADD = $(COMMON_LDADD) - test_list_CFLAGS = $(COMMON_CFLAGS) - test_list_SOURCES = test-list.c - --test_media_LDADD = $(COMMON_LDADD) $(CURL_LIBS) --test_media_CFLAGS = $(COMMON_CFLAGS) $(CURL_CFLAGS) -+test_media_LDADD = $(COMMON_LDADD) -+test_media_CFLAGS = $(COMMON_CFLAGS) - test_media_SOURCES = test-media.c - - test_devicelist_LDADD = $(COMMON_LDADD) -@@ -110,20 +102,6 @@ test_isodetect_LDADD = $(COMMON_LDADD) - test_isodetect_CFLAGS = $(COMMON_CFLAGS) - test_isodetect_SOURCES = test-isodetect.c - --if HAVE_CURL --test_mediauris_LDADD = $(COMMON_LDADD) $(CURL_LIBS) --test_mediauris_CFLAGS = $(COMMON_CFLAGS) $(CURL_CFLAGS) --test_mediauris_SOURCES = test-mediauris.c test-uris-common.c test-uris-common.h -- --test_treeuris_LDADD = $(COMMON_LDADD) $(CURL_LIBS) --test_treeuris_CFLAGS = $(COMMON_CFLAGS) $(CURL_CFLAGS) --test_treeuris_SOURCES = test-treeuris.c test-uris-common.c test-uris-common.h -- --test_imageuris_LDADD = $(COMMON_LDADD) $(CURL_LIBS) --test_imageuris_CFLAGS = $(COMMON_CFLAGS) $(CURL_CFLAGS) --test_imageuris_SOURCES = test-imageuris.c test-uris-common.c test-uris-common.h --endif -- - test_install_script_LDADD = $(COMMON_LDADD) - test_install_script_CFLAGS = $(COMMON_CFLAGS) - test_install_script_SOURCES = test-install-script.c -diff --git a/tests/test-imageuris.c b/tests/test-imageuris.c -deleted file mode 100644 -index ca6e648..0000000 ---- a/tests/test-imageuris.c -+++ /dev/null -@@ -1,90 +0,0 @@ --/* -- * Copyright (C) 2108 Red Hat, Inc. -- * -- * This program is free software; you can redistribute it and/or modify -- * it under the terms of the GNU General Public License as published by -- * the Free Software Foundation; either version 2 of the License, or -- * (at your option) any later version. -- * -- * This program is distributed in the hope that it will be useful, -- * but WITHOUT ANY WARRANTY; without even the implied warranty of -- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- * GNU General Public License for more details. -- * -- * You should have received a copy of the GNU General Public License along -- * with this program. If not, see -- * -- * Authors: -- * Daniel P. Berrange -- */ -- --#include -- --#include --#include --#include -- --#include "test-uris-common.h" -- --static void --test_imageuris(gconstpointer data) --{ -- OsinfoOs *os = OSINFO_OS(data); -- GError *error = NULL; -- -- OsinfoImageList *imagelist = osinfo_os_get_image_list(os); -- -- test_uri(OSINFO_LIST(imagelist), (GetURLFunc) osinfo_image_get_url, &error); -- -- g_assert_no_error(error); -- -- g_object_unref(imagelist); --} -- --int --main(int argc, char *argv[]) --{ -- int ret; -- OsinfoLoader *loader = osinfo_loader_new(); -- OsinfoDb *db = osinfo_loader_get_db(loader); -- OsinfoOsList *oslist = NULL; -- GError *error = NULL; -- -- g_test_init(&argc, &argv, NULL); -- g_test_set_nonfatal_assertions(); -- -- if (!g_getenv("LIBOSINFO_NETWORK_TESTS")) -- return 77; /* Skip */ -- -- /* Upfront so we don't confuse valgrind */ -- curl_global_init(CURL_GLOBAL_ALL); -- osinfo_db_get_type(); -- osinfo_os_get_type(); -- osinfo_list_get_type(); -- osinfo_oslist_get_type(); -- osinfo_filter_get_type(); -- -- osinfo_loader_process_default_path(loader, &error); -- g_assert_no_error(error); -- -- oslist = osinfo_db_get_os_list(db); -- test_uris(oslist, "/imageuris/uris", test_imageuris); -- -- ret = g_test_run(); -- -- if (oslist) -- g_object_unref(oslist); -- -- g_object_unref(loader); -- -- curl_global_cleanup(); -- -- return ret; --} --/* -- * Local variables: -- * indent-tabs-mode: nil -- * c-indent-level: 4 -- * c-basic-offset: 4 -- * End: -- */ -diff --git a/tests/test-mediauris.c b/tests/test-mediauris.c -deleted file mode 100644 -index c9e09c7..0000000 ---- a/tests/test-mediauris.c -+++ /dev/null -@@ -1,96 +0,0 @@ --/* -- * Copyright (C) 2009-2012, 2014 Red Hat, Inc. -- * -- * This program is free software; you can redistribute it and/or modify -- * it under the terms of the GNU General Public License as published by -- * the Free Software Foundation; either version 2 of the License, or -- * (at your option) any later version. -- * -- * This program is distributed in the hope that it will be useful, -- * but WITHOUT ANY WARRANTY; without even the implied warranty of -- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- * GNU General Public License for more details. -- * -- * You should have received a copy of the GNU General Public License along -- * with this program. If not, see -- * -- * Authors: -- * Daniel P. Berrange -- */ -- --#include -- --#include --#include --#include -- --#include "test-uris-common.h" -- --static void --test_mediauris(gconstpointer data) --{ -- OsinfoOs *os = OSINFO_OS(data); -- GError *error = NULL; -- -- OsinfoMediaList *medialist = osinfo_os_get_media_list(os); -- -- test_uri(OSINFO_LIST(medialist), (GetURLFunc) osinfo_media_get_url, &error); -- -- g_assert_no_error(error); -- -- g_object_unref(medialist); --} -- --int --main(int argc, char *argv[]) --{ -- int ret; -- OsinfoLoader *loader = osinfo_loader_new(); -- OsinfoDb *db = osinfo_loader_get_db(loader); -- OsinfoOsList *oslist = NULL; -- GError *error = NULL; -- -- g_test_init(&argc, &argv, NULL); -- g_test_set_nonfatal_assertions(); -- -- if (!g_getenv("LIBOSINFO_NETWORK_TESTS")) -- return 77; /* Skip */ -- -- /* Upfront so we don't confuse valgrind */ -- curl_global_init(CURL_GLOBAL_ALL); -- osinfo_entity_get_type(); -- osinfo_db_get_type(); -- osinfo_device_get_type(); -- osinfo_platform_get_type(); -- osinfo_os_get_type(); -- osinfo_list_get_type(); -- osinfo_devicelist_get_type(); -- osinfo_platformlist_get_type(); -- osinfo_oslist_get_type(); -- osinfo_filter_get_type(); -- -- -- osinfo_loader_process_default_path(loader, &error); -- g_assert_no_error(error); -- -- oslist = osinfo_db_get_os_list(db); -- test_uris(oslist, "/mediauris/uris", test_mediauris); -- -- ret = g_test_run(); -- -- if (oslist) -- g_object_unref(oslist); -- -- g_object_unref(loader); -- -- curl_global_cleanup(); -- -- return ret; --} --/* -- * Local variables: -- * indent-tabs-mode: nil -- * c-indent-level: 4 -- * c-basic-offset: 4 -- * End: -- */ -diff --git a/tests/test-treeuris.c b/tests/test-treeuris.c -deleted file mode 100644 -index 48ce82a..0000000 ---- a/tests/test-treeuris.c -+++ /dev/null -@@ -1,94 +0,0 @@ --/* -- * Copyright (C) 2009-2012, 2014 Red Hat, Inc. -- * -- * This program is free software; you can redistribute it and/or modify -- * it under the terms of the GNU General Public License as published by -- * the Free Software Foundation; either version 2 of the License, or -- * (at your option) any later version. -- * -- * This program is distributed in the hope that it will be useful, -- * but WITHOUT ANY WARRANTY; without even the implied warranty of -- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- * GNU General Public License for more details. -- * -- * You should have received a copy of the GNU General Public License along -- * with this program. If not, see -- * -- * Authors: -- * Daniel P. Berrange -- */ -- --#include -- --#include --#include --#include -- --#include "test-uris-common.h" -- --static void --test_treeuris(gconstpointer data) --{ -- OsinfoOs *os = OSINFO_OS(data); -- GError *error = NULL; -- OsinfoTreeList *treelist = osinfo_os_get_tree_list(os); -- -- test_uri(OSINFO_LIST(treelist), (GetURLFunc) osinfo_tree_get_url, &error); -- -- g_assert_no_error(error); -- -- g_object_unref(treelist); --} -- --int --main(int argc, char *argv[]) --{ -- int ret; -- OsinfoLoader *loader = osinfo_loader_new(); -- OsinfoDb *db = osinfo_loader_get_db(loader); -- OsinfoOsList *oslist = NULL; -- GError *error = NULL; -- -- g_test_init(&argc, &argv, NULL); -- g_test_set_nonfatal_assertions(); -- -- if (!g_getenv("LIBOSINFO_NETWORK_TESTS")) -- return 77; /* Skip */ -- -- /* Upfront so we don't confuse valgrind */ -- curl_global_init(CURL_GLOBAL_ALL); -- osinfo_entity_get_type(); -- osinfo_db_get_type(); -- osinfo_device_get_type(); -- osinfo_platform_get_type(); -- osinfo_os_get_type(); -- osinfo_list_get_type(); -- osinfo_devicelist_get_type(); -- osinfo_platformlist_get_type(); -- osinfo_oslist_get_type(); -- osinfo_filter_get_type(); -- -- osinfo_loader_process_default_path(loader, &error); -- g_assert_no_error(error); -- -- oslist = osinfo_db_get_os_list(db); -- test_uris(oslist, "/treeuris/uris", test_treeuris); -- -- ret = g_test_run(); -- -- if (oslist) -- g_object_unref(oslist); -- -- g_object_unref(loader); -- -- curl_global_cleanup(); -- -- return ret; --} --/* -- * Local variables: -- * indent-tabs-mode: nil -- * c-indent-level: 4 -- * c-basic-offset: 4 -- * End: -- */ -diff --git a/tests/test-uris-common.c b/tests/test-uris-common.c -deleted file mode 100644 -index 8ebe4ea..0000000 ---- a/tests/test-uris-common.c -+++ /dev/null -@@ -1,109 +0,0 @@ --/* -- * Copyright (C) 2019 Red Hat, Inc. -- * -- * This program is free software; you can redistribute it and/or modify -- * it under the terms of the GNU General Public License as published by -- * the Free Software Foundation; either version 2 of the License, or -- * (at your option) any later version. -- * -- * This program is distributed in the hope that it will be useful, -- * but WITHOUT ANY WARRANTY; without even the implied warranty of -- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- * GNU General Public License for more details. -- * -- * You should have received a copy of the GNU General Public License along -- * with this program. If not, see -- */ -- --#include -- --#include --#include --#include -- --#include "test-uris-common.h" -- --static size_t write_callback(char *ptr, -- size_t size, -- size_t nmemb, -- void *userdata) --{ -- abort(); --} -- --void test_uri(OsinfoList *list, GetURLFunc get_url_func, GError **error) --{ -- GList *el = NULL, *tmp; -- -- tmp = el = osinfo_list_get_elements(list); -- while (tmp) { -- const gchar *url = get_url_func(tmp->data); -- const gchar *debugstr; -- CURL *curl; -- CURLcode res; -- long response_code; -- -- if (url == NULL || g_str_equal(url, "")) { -- tmp = tmp->next; -- continue; -- } -- -- curl = curl_easy_init(); -- curl_easy_setopt(curl, CURLOPT_NOBODY, 1L); -- curl_easy_setopt(curl, CURLOPT_TIMEOUT, 60L); -- curl_easy_setopt(curl, CURLOPT_TCP_KEEPALIVE, 1L); -- curl_easy_setopt(curl, CURLOPT_FOLLOWLOCATION, 1L); -- curl_easy_setopt(curl, CURLOPT_FAILONERROR, 1L); -- curl_easy_setopt(curl, CURLOPT_WRITEFUNCTION, write_callback); -- -- if ((debugstr = g_getenv("LIBOSINFO_TEST_DEBUG"))) { -- int debug_level = atoi(debugstr); -- -- curl_easy_setopt(curl, CURLOPT_VERBOSE, debug_level > 0 ? 1L : 0L); -- } -- -- g_test_message("%s", url); -- curl_easy_setopt(curl, CURLOPT_URL, url); -- res = curl_easy_perform(curl); -- curl_easy_getinfo(curl, CURLINFO_RESPONSE_CODE, &response_code); -- -- g_test_message("res=%d, %s; code=%ld", res, curl_easy_strerror(res), response_code); -- -- if (res == CURLE_OPERATION_TIMEDOUT) { -- g_printerr("Ignoring network timeout failure for %s\n", url); -- } else { -- if (res != CURLE_OK) { -- g_printerr("Failed URI %s res=%d (%s) code=%ld\n", -- url, res, curl_easy_strerror(res), response_code); -- } -- g_assert_cmpint(res, ==, CURLE_OK); -- } -- -- tmp = tmp->next; -- curl_easy_cleanup(curl); -- } -- -- g_list_free(el); --} -- -- --void test_uris(OsinfoOsList *oslist, const gchar *prefix, TestURLFunc test_func) --{ -- GList *osel = NULL, *tmp; -- -- tmp = osel = osinfo_list_get_elements(OSINFO_LIST(oslist)); -- -- while (tmp) { -- OsinfoOs *os = tmp->data; -- gchar *name = g_strdup_printf("%s/%s", -- prefix, -- osinfo_product_get_short_id(OSINFO_PRODUCT(os))); -- -- g_test_add_data_func(name, os, test_func); -- g_free(name); -- -- tmp = tmp->next; -- } -- -- g_list_free(osel); --} -diff --git a/tests/test-uris-common.h b/tests/test-uris-common.h -deleted file mode 100644 -index 34cc242..0000000 ---- a/tests/test-uris-common.h -+++ /dev/null -@@ -1,26 +0,0 @@ --/* -- * Copyright (C) 2019 Red Hat, Inc. -- * -- * This program is free software; you can redistribute it and/or modify -- * it under the terms of the GNU General Public License as published by -- * the Free Software Foundation; either version 2 of the License, or -- * (at your option) any later version. -- * -- * This program is distributed in the hope that it will be useful, -- * but WITHOUT ANY WARRANTY; without even the implied warranty of -- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- * GNU General Public License for more details. -- * -- * You should have received a copy of the GNU General Public License along -- * with this program. If not, see -- */ -- --#include -- --#include -- --typedef const gchar *(*GetURLFunc)(gpointer p); --typedef void (*TestURLFunc)(gconstpointer p); -- --void test_uri(OsinfoList *list, GetURLFunc get_url_func, GError **error); --void test_uris(OsinfoOsList *oslist, const gchar *prefix, TestURLFunc test_func); --- -2.20.1 - diff --git a/0004-tests-Remove-test-isodetect.patch b/0004-tests-Remove-test-isodetect.patch deleted file mode 100644 index d215be0..0000000 --- a/0004-tests-Remove-test-isodetect.patch +++ /dev/null @@ -1,52089 +0,0 @@ -From 789f1071bc426f27deb8a881727f55049d925201 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= -Date: Wed, 10 Apr 2019 14:50:20 +0200 -Subject: [PATCH] tests: Remove test-isodetect - -This test is now part of osinfo-db. - -With this change we can get rid of the whole isodata we have. - -Signed-off-by: rpm-build ---- - tests/Makefile.am | 7 +- - .../alpine-extended-3.5.0-x86.iso.txt | 29 -- - .../alpine-extended-3.5.0-x86_64.iso.txt | 29 -- - .../alpine-extended-3.5.1-x86.iso.txt | 29 -- - .../alpine-extended-3.5.1-x86_64.iso.txt | 29 -- - .../alpine-extended-3.5.2-x86.iso.txt | 29 -- - .../alpine-extended-3.5.2-x86_64.iso.txt | 29 -- - .../alpine-standard-3.5.0-x86.iso.txt | 29 -- - .../alpine-standard-3.5.0-x86_64.iso.txt | 29 -- - .../alpine-standard-3.5.1-x86.iso.txt | 29 -- - .../alpine-standard-3.5.1-x86_64.iso.txt | 29 -- - .../alpine-standard-3.5.2-x86.iso.txt | 29 -- - .../alpine-standard-3.5.2-x86_64.iso.txt | 29 -- - .../alpine-vanilla-3.5.0-x86.iso.txt | 29 -- - .../alpine-vanilla-3.5.0-x86_64.iso.txt | 29 -- - .../alpine-vanilla-3.5.1-x86.iso.txt | 29 -- - .../alpine-vanilla-3.5.1-x86_64.iso.txt | 29 -- - .../alpine-vanilla-3.5.2-x86.iso.txt | 29 -- - .../alpine-vanilla-3.5.2-x86_64.iso.txt | 29 -- - .../alpine-virt-3.5.0-x86.iso.txt | 29 -- - .../alpine-virt-3.5.0-x86_64.iso.txt | 29 -- - .../alpine-virt-3.5.1-x86.iso.txt | 29 -- - .../alpine-virt-3.5.1-x86_64.iso.txt | 29 -- - .../alpine-virt-3.5.2-x86.iso.txt | 29 -- - .../alpine-virt-3.5.2-x86_64.iso.txt | 29 -- - .../alpine-xen-3.5.0-x86_64.iso.txt | 29 -- - .../alpine-xen-3.5.1-x86_64.iso.txt | 29 -- - .../alpine-xen-3.5.2-x86_64.iso.txt | 29 -- - .../alpine-extended-3.6.0-x86.iso.txt | 29 -- - .../alpine-extended-3.6.0-x86_64.iso.txt | 29 -- - .../alpine-extended-3.6.1-x86.iso.txt | 29 -- - .../alpine-extended-3.6.1-x86_64.iso.txt | 29 -- - .../alpine-extended-3.6.2-x86.iso.txt | 29 -- - .../alpine-extended-3.6.2-x86_64.iso.txt | 29 -- - .../alpine-standard-3.6.0-x86.iso.txt | 29 -- - .../alpine-standard-3.6.0-x86_64.iso.txt | 29 -- - .../alpine-standard-3.6.1-x86.iso.txt | 29 -- - .../alpine-standard-3.6.1-x86_64.iso.txt | 29 -- - .../alpine-standard-3.6.2-x86.iso.txt | 29 -- - .../alpine-standard-3.6.2-x86_64.iso.txt | 29 -- - .../alpine-vanilla-3.6.0-x86.iso.txt | 29 -- - .../alpine-vanilla-3.6.0-x86_64.iso.txt | 29 -- - .../alpine-vanilla-3.6.1-x86.iso.txt | 29 -- - .../alpine-vanilla-3.6.1-x86_64.iso.txt | 29 -- - .../alpine-vanilla-3.6.2-x86.iso.txt | 29 -- - .../alpine-vanilla-3.6.2-x86_64.iso.txt | 29 -- - .../alpine-virt-3.6.0-x86.iso.txt | 29 -- - .../alpine-virt-3.6.0-x86_64.iso.txt | 29 -- - .../alpine-virt-3.6.1-x86.iso.txt | 29 -- - .../alpine-virt-3.6.1-x86_64.iso.txt | 29 -- - .../alpine-virt-3.6.2-x86.iso.txt | 29 -- - .../alpine-virt-3.6.2-x86_64.iso.txt | 29 -- - .../alpine-xen-3.6.0-x86_64.iso.txt | 29 -- - .../alpine-xen-3.6.1-x86_64.iso.txt | 29 -- - .../alpine-xen-3.6.2-x86_64.iso.txt | 29 -- - .../alpine-extended-3.7.0-x86.iso.txt | 29 -- - .../alpine-extended-3.7.0-x86_64.iso.txt | 29 -- - .../alpine-standard-3.7.0-x86.iso.txt | 29 -- - .../alpine-standard-3.7.0-x86_64.iso.txt | 29 -- - .../alpine-vanilla-3.7.0-ppc64le.iso.txt | 16 - - .../alpine-vanilla-3.7.0-x86.iso.txt | 29 -- - .../alpine-vanilla-3.7.0-x86_64.iso.txt | 29 -- - .../alpine-virt-3.7.0-x86.iso.txt | 29 -- - .../alpine-virt-3.7.0-x86_64.iso.txt | 29 -- - .../alpine-xen-3.7.0-x86_64.iso.txt | 29 -- - .../alpine-extended-3.8.1-x86.iso.txt | 29 -- - .../alpine-extended-3.8.1-x86_64.iso.txt | 29 -- - .../alpine-standard-3.8.0-ppc64le.iso.txt | 16 - - .../alpine-standard-3.8.0-s390x.iso.txt | 29 -- - .../alpine-standard-3.8.0-x86.iso.txt | 29 -- - .../alpine-standard-3.8.0-x86_64.iso.txt | 29 -- - .../alpine-standard-3.8.1-ppc64le.iso.txt | 16 - - .../alpine-standard-3.8.1-s390x.iso.txt | 29 -- - .../alpine-standard-3.8.1-x86.iso.txt | 29 -- - .../alpine-standard-3.8.1-x86_64.iso.txt | 29 -- - .../alpine-virt-3.8.0-x86.iso.txt | 29 -- - .../alpine-virt-3.8.0-x86_64.iso.txt | 29 -- - .../alpine-virt-3.8.1-x86.iso.txt | 29 -- - .../alpine-virt-3.8.1-x86_64.iso.txt | 29 -- - .../alpine-xen-3.8.0-x86_64.iso.txt | 29 -- - .../alpine-xen-3.8.1-x86_64.iso.txt | 29 -- - .../alt-p8-builder-20180912-i586.iso.txt | 29 -- - .../alt-p8-builder-20180912-x86_64.iso.txt | 29 -- - .../alt-p8-cinnamon-20180912-i586.iso.txt | 29 -- - .../alt-p8-cinnamon-20180912-x86_64.iso.txt | 29 -- - ...alt-p8-enlightenment-20180912-i586.iso.txt | 29 -- - ...t-p8-enlightenment-20180912-x86_64.iso.txt | 29 -- - .../alt-p8-gnome3-20180912-i586.iso.txt | 29 -- - .../alt-p8-gnome3-20180912-x86_64.iso.txt | 29 -- - .../alt-p8-gnustep-20180912-i586.iso.txt | 29 -- - .../alt-p8-gnustep-20180912-x86_64.iso.txt | 29 -- - .../alt.p8/alt-p8-icewm-20180912-i586.iso.txt | 29 -- - .../alt-p8-icewm-20180912-x86_64.iso.txt | 29 -- - .../alt.p8/alt-p8-jeos-20180912-i586.iso.txt | 29 -- - .../alt-p8-jeos-20180912-x86_64.iso.txt | 29 -- - .../alt.p8/alt-p8-kde4-20180912-i586.iso.txt | 29 -- - .../alt-p8-kde4-20180912-x86_64.iso.txt | 29 -- - .../alt.p8/alt-p8-kde5-20180912-i586.iso.txt | 29 -- - .../alt-p8-kde5-20180912-x86_64.iso.txt | 29 -- - .../alt.p8/alt-p8-lxde-20180912-i586.iso.txt | 29 -- - .../alt-p8-lxde-20180912-x86_64.iso.txt | 29 -- - .../alt.p8/alt-p8-lxqt-20180912-i586.iso.txt | 29 -- - .../alt-p8-lxqt-20180912-x86_64.iso.txt | 29 -- - .../alt.p8/alt-p8-mate-20180913-i586.iso.txt | 29 -- - .../alt-p8-mate-20180913-x86_64.iso.txt | 29 -- - .../alt-p8-rescue-20180912-i586.iso.txt | 29 -- - .../alt-p8-rescue-20180912-x86_64.iso.txt | 29 -- - .../alt-p8-server-20180913-i586.iso.txt | 29 -- - .../alt-p8-server-20180913-x86_64.iso.txt | 29 -- - .../alt-p8-server-pve-20180912-x86_64.iso.txt | 29 -- - .../alt-p8-sysv-tde-20180912-i586.iso.txt | 29 -- - .../alt-p8-sysv-tde-20180912-x86_64.iso.txt | 29 -- - .../alt-p8-sysv-xfce-20180912-i586.iso.txt | 29 -- - .../alt-p8-sysv-xfce-20180912-x86_64.iso.txt | 29 -- - .../alt-p8-wmaker-20180912-i586.iso.txt | 29 -- - .../alt-p8-wmaker-20180912-x86_64.iso.txt | 29 -- - .../alt.p8/alt-p8-xfce-20180912-i586.iso.txt | 29 -- - .../alt-p8-xfce-20180912-x86_64.iso.txt | 29 -- - .../regular-cinnamon-20181017-i586.iso.txt | 29 -- - .../regular-cinnamon-20181017-x86_64.iso.txt | 29 -- - ...egular-enlightenment-20181017-i586.iso.txt | 29 -- - ...ular-enlightenment-20181017-x86_64.iso.txt | 29 -- - .../regular-gnome3-20181017-i586.iso.txt | 29 -- - .../regular-gnome3-20181017-x86_64.iso.txt | 29 -- - .../regular-gnustep-20181017-i586.iso.txt | 29 -- - .../regular-gnustep-20181017-x86_64.iso.txt | 29 -- - .../regular-icewm-20181017-i586.iso.txt | 29 -- - .../regular-icewm-20181017-x86_64.iso.txt | 29 -- - .../regular-jeos-20181017-i586.iso.txt | 29 -- - .../regular-jeos-20181017-x86_64.iso.txt | 29 -- - .../regular-kde5-20181017-i586.iso.txt | 29 -- - .../regular-kde5-20181017-x86_64.iso.txt | 29 -- - .../regular-lxde-20181017-i586.iso.txt | 29 -- - .../regular-lxde-20181017-x86_64.iso.txt | 29 -- - .../regular-lxqt-20181017-i586.iso.txt | 29 -- - .../regular-lxqt-20181017-x86_64.iso.txt | 29 -- - .../regular-mate-20181017-i586.iso.txt | 29 -- - .../regular-mate-20181017-x86_64.iso.txt | 29 -- - .../regular-rescue-20181017-i586.iso.txt | 29 -- - .../regular-rescue-20181017-x86_64.iso.txt | 29 -- - .../regular-wmaker-20181017-i586.iso.txt | 29 -- - .../regular-wmaker-20181017-x86_64.iso.txt | 29 -- - .../regular-xfce-20181017-i586.iso.txt | 29 -- - .../regular-xfce-20181017-x86_64.iso.txt | 29 -- - .../alt8.0/alt-education-8.0-i586.iso.txt | 29 -- - .../alt8.0/alt-education-8.0-x86_64.iso.txt | 29 -- - .../alt-kworkstation-8.1-install-i586.iso.txt | 29 -- - ...lt-kworkstation-8.1-install-x86_64.iso.txt | 29 -- - .../alt-kworkstation-8.1-live-i586.iso.txt | 29 -- - .../alt-kworkstation-8.1-live-x86_64.iso.txt | 29 -- - .../alt8.1/alt-workstation-8.1-i586.iso.txt | 29 -- - .../alt8.1/alt-workstation-8.1-x86_64.iso.txt | 29 -- - .../alt-kworkstation-8.2-install-i586.iso.txt | 29 -- - ...lt-kworkstation-8.2-install-x86_64.iso.txt | 29 -- - .../alt-kworkstation-8.2-live-i586.iso.txt | 29 -- - .../alt-kworkstation-8.2-live-x86_64.iso.txt | 29 -- - .../alt8.2/alt-server-8.2-i586.iso.txt | 29 -- - .../alt8.2/alt-server-8.2-x86_64.iso.txt | 29 -- - .../alt8.2/alt-simply-8.2.0-i586.iso.txt | 29 -- - .../alt8.2/alt-simply-8.2.0-live-i586.iso.txt | 29 -- - .../alt-simply-8.2.0-live-x86_64.iso.txt | 29 -- - .../alt8.2/alt-simply-8.2.0-x86_64.iso.txt | 29 -- - .../alt8.2/alt-workstation-8.2-i586.iso.txt | 29 -- - .../alt8.2/alt-workstation-8.2-x86_64.iso.txt | 29 -- - .../Master-2.4-install-DVD.iso.txt | 29 -- - .../altlinux2.4/Master-2.4-install-cd.iso.txt | 29 -- - .../altlinux3.0/compact-3.0.4.iso.txt | 29 -- - .../altlinux3.0/installer-3.0.4.iso.txt | 29 -- - .../altlinux3.0/travelcd-3.0.4.iso.txt | 29 -- - ...altlinux-4.0.0-terminal-i586-en-cd.iso.txt | 29 -- - ...ltlinux-4.0.0-terminal-i586-ru-dvd.iso.txt | 29 -- - ...linux-4.0.1-server-i586-install-cd.iso.txt | 29 -- - ...nux-4.0.1-server-x86_64-install-cd.iso.txt | 29 -- - ...4.0.3-desktop-i586-install_en-dvd5.iso.txt | 29 -- - ...4.0.3-desktop-i586-install_ru-dvd5.iso.txt | 29 -- - ...4.0.3-desktop-i586-install_uk-dvd5.iso.txt | 29 -- - ...inux-4.0.3-lite-i586-install_en-cd.iso.txt | 29 -- - ...inux-4.0.3-lite-i586-install_ru-cd.iso.txt | 29 -- - ...inux-4.0.3-lite-i586-install_uk-cd.iso.txt | 29 -- - ...inux-4.1.1-desktop-i586-install-cd.iso.txt | 29 -- - ...ux-4.1.1-desktop-i586-install-dvd5.iso.txt | 29 -- - ...4.1.1-desktop-i586-install_en-dvd5.iso.txt | 29 -- - ...ux-4.1.1-desktop-x86_64-install-cd.iso.txt | 29 -- - ...-4.1.1-desktop-x86_64-install-dvd5.iso.txt | 29 -- - ...0-ark-desktop-i586-ru-install-dvd5.iso.txt | 29 -- - ...ark-desktop-x86_64-ru-install-dvd5.iso.txt | 29 -- - ....0.0-ark-server-i586-ru-install-cd.iso.txt | 29 -- - ....0-ark-server-x86_64-ru-install-cd.iso.txt | 29 -- - ....0.0-kdesktop-i586-ru-install-dvd5.iso.txt | 29 -- - ....0-kdesktop-x86_64-ru-install-dvd5.iso.txt | 29 -- - ...school-junior-i586-ru-install-dvd5.iso.txt | 29 -- - ...0.2-school-lite-i586-ru-install-cd.iso.txt | 29 -- - ...school-master-i586-ru-install-dvd5.iso.txt | 29 -- - ...school-server-i586-ru-install-dvd5.iso.txt | 29 -- - ...hool-server-x86_64-ru-install-dvd5.iso.txt | 29 -- - ...hool-terminal-i586-ru-install-dvd5.iso.txt | 29 -- - ...0.0-centaurus-i586-ru-install-dvd5.iso.txt | 29 -- - ...0-centaurus-x86_64-ru-install-dvd5.iso.txt | 29 -- - ....0.0-kdesktop-i586-ru-install-dvd5.iso.txt | 29 -- - ....0-kdesktop-x86_64-ru-install-dvd5.iso.txt | 29 -- - ...-6.0.1-simply-i586-ru-install-dvd5.iso.txt | 29 -- - ....0.1-simply-x86_64-ru-install-dvd5.iso.txt | 29 -- - ...0.2-centaurus-i586-ru-install-dvd5.iso.txt | 29 -- - ...5-centaurus-x86_64-ru-install-dvd5.iso.txt | 29 -- - .../android-x86-8.1-rc2.iso.txt | 29 -- - .../android-x86_64-8.1-rc2.iso.txt | 29 -- - .../archlinux-2019.02.01-x86_64.iso.txt | 29 -- - .../asianux4.6/asianux-4.6-i386.iso.txt | 29 -- - .../asianux4.6/asianux-4.6-x86_64.iso.txt | 29 -- - .../asianux4.7/asianux-4.7-i386.iso.txt | 29 -- - .../asianux4.7/asianux-4.7-x86_64.iso.txt | 29 -- - .../asianux/asianux7.0/asianux-7.0.iso.txt | 29 -- - .../asianux/asianux7.1/asianux-7.1.iso.txt | 29 -- - .../asianux/asianux7.2/asianux-7.2.iso.txt | 29 -- - .../centos6.0/CentOS-6.0-i386-bin-DVD.iso.txt | 29 -- - .../CentOS-6.0-x86_64-bin-DVD1.iso.txt | 29 -- - .../CentOS-6.1-i386-bin-DVD1.iso.txt | 29 -- - .../CentOS-6.1-x86_64-bin-DVD1.iso.txt | 29 -- - .../CentOS-6.10-i386-LiveDVD.iso.txt | 29 -- - .../CentOS-6.10-i386-bin-DVD1.iso.txt | 29 -- - .../CentOS-6.10-i386-minimal.iso.txt | 29 -- - .../CentOS-6.10-i386-netinstall.iso.txt | 29 -- - .../CentOS-6.10-x86_64-LiveDVD.iso.txt | 29 -- - .../CentOS-6.10-x86_64-bin-DVD1.iso.txt | 29 -- - .../CentOS-6.10-x86_64-minimal.iso.txt | 29 -- - .../CentOS-6.10-x86_64-netinstall.iso.txt | 29 -- - .../CentOS-6.2-i386-bin-DVD1.iso.txt | 29 -- - .../CentOS-6.2-x86_64-bin-DVD1.iso.txt | 29 -- - .../CentOS-6.3-i386-bin-DVD1.iso.txt | 29 -- - .../CentOS-6.3-x86_64-LiveDVD.iso.txt | 29 -- - .../CentOS-6.3-x86_64-bin-DVD1.iso.txt | 29 -- - .../CentOS-6.4-i386-bin-DVD1.iso.txt | 29 -- - .../CentOS-6.4-x86_64-bin-DVD1.iso.txt | 29 -- - .../CentOS-6.5-i386-bin-DVD1.iso.txt | 29 -- - .../CentOS-6.5-x86_64-bin-DVD1.iso.txt | 29 -- - .../centos6.6/CentOS-6.6-i386-bin-DVD1.iso | 29 -- - .../centos6.6/CentOS-6.6-i386-minimal.iso | 29 -- - .../centos6.6/CentOS-6.6-i386-netinstall.iso | 29 -- - .../centos6.6/CentOS-6.6-x86_64-bin-DVD1.iso | 29 -- - .../centos6.6/CentOS-6.6-x86_64-minimal.iso | 29 -- - .../CentOS-6.6-x86_64-netinstall.iso | 29 -- - .../centos6.7/CentOS-6.7-i386-LiveCD.iso | 29 -- - .../centos6.7/CentOS-6.7-i386-LiveDVD.iso | 29 -- - .../centos6.7/CentOS-6.7-i386-bin-DVD1.iso | 29 -- - .../centos6.7/CentOS-6.7-i386-minimal.iso | 29 -- - .../centos6.7/CentOS-6.7-i386-netinstall.iso | 29 -- - .../centos6.7/CentOS-6.7-x86_64-LiveCD.iso | 29 -- - .../centos6.7/CentOS-6.7-x86_64-LiveDVD.iso | 29 -- - .../centos6.7/CentOS-6.7-x86_64-bin-DVD1.iso | 29 -- - .../centos6.7/CentOS-6.7-x86_64-minimal.iso | 29 -- - .../CentOS-6.7-x86_64-netinstall.iso | 29 -- - .../centos6.8/CentOS-6.8-i386-LiveDVD.iso.txt | 29 -- - .../CentOS-6.8-i386-bin-DVD1.iso.txt | 29 -- - .../centos6.8/CentOS-6.8-i386-minimal.iso.txt | 29 -- - .../CentOS-6.8-i386-netinstall.iso.txt | 29 -- - .../CentOS-6.8-x86_64-LiveDVD.iso.txt | 29 -- - .../CentOS-6.8-x86_64-bin-DVD1.iso.txt | 29 -- - .../CentOS-6.8-x86_64-minimal.iso.txt | 29 -- - .../CentOS-6.8-x86_64-netinstall.iso.txt | 29 -- - .../centos6.9/CentOS-6.9-i386-LiveDVD.iso.txt | 29 -- - .../CentOS-6.9-i386-bin-DVD1.iso.txt | 29 -- - .../centos6.9/CentOS-6.9-i386-minimal.iso.txt | 29 -- - .../CentOS-6.9-i386-netinstall.iso.txt | 29 -- - .../CentOS-6.9-x86_64-LiveDVD.iso.txt | 29 -- - .../CentOS-6.9-x86_64-bin-DVD1.iso.txt | 29 -- - .../CentOS-6.9-x86_64-minimal.iso.txt | 29 -- - .../CentOS-6.9-x86_64-netinstall.iso.txt | 29 -- - .../centos7.0/CentOS-7-x86_64-DVD.iso.txt | 29 -- - .../CentOS-7-x86_64-Everything.iso.txt | 29 -- - .../CentOS-7-x86_64-LiveGNOME-1804.iso.txt | 29 -- - .../CentOS-7-x86_64-LiveGNOME.iso.txt | 29 -- - .../CentOS-7-x86_64-LiveKDE-1804.iso.txt | 29 -- - .../centos7.0/CentOS-7-x86_64-LiveKDE.iso.txt | 29 -- - .../centos7.0/CentOS-7-x86_64-Minimal.iso.txt | 29 -- - .../CentOS-7-x86_64-NetInstall-1611.iso.txt | 29 -- - .../CentOS-7.0-1406-x86_64-DVD.iso.txt | 29 -- - .../CentOS-7.0-1406-x86_64-Everything.iso.txt | 29 -- - .../debian6/debian-6.0.10-i386-DVD-1.iso.txt | 17 - - .../debian6/debian-6.0.4-i386-CD-1.iso.txt | 29 -- - .../debian6/debian-6.0.8-amd64-CD-1.iso.txt | 29 -- - .../debian6/debian-6.0.8-i386-CD-1.iso.txt | 29 -- - .../debian-live-6.0.3-i386-standard.iso.txt | 29 -- - .../debian-live-6.0.8-amd64-standard.iso.txt | 29 -- - .../debian-live-6.0.8-i386-standard.iso.txt | 29 -- - .../debian7/debian-7.0.0-amd64-DVD-1.iso.txt | 29 -- - .../debian7/debian-7.0.0-i386-DVD-1.iso.txt | 29 -- - .../debian7/debian-7.2.0-amd64-DVD-1.iso.txt | 29 -- - .../debian7/debian-7.2.0-i386-DVD-1.iso.txt | 29 -- - .../debian7/debian-7.3.0-amd64-DVD-1.iso.txt | 29 -- - .../debian7/debian-7.3.0-i386-DVD-1.iso.txt | 29 -- - .../debian8/debian-8.0.0-amd64-CD-1.iso.txt | 29 -- - .../debian8/debian-8.7.1-amd64-CD-1.iso.txt | 29 -- - .../debian9/debian-9.0-amd64-netinst.iso.txt | 29 -- - .../debian/debian9/debian-9.0-amd64.iso.txt | 29 -- - .../debian9/debian-9.0-arm64-netinst.iso.txt | 29 -- - .../debian/debian9/debian-9.0-arm64.iso.txt | 29 -- - .../debian9/debian-9.0-armhf-netinst.iso.txt | 16 - - .../debian/debian9/debian-9.0-armhf.iso.txt | 16 - - .../debian9/debian-9.0-i386-netinst.iso.txt | 29 -- - .../debian/debian9/debian-9.0-i386.iso.txt | 29 -- - .../debian-testing-amd64-DVD-1.iso.txt | 29 -- - .../dfly-x86_64-5.0.0_REL.iso.txt | 33 -- - .../dfly-x86_64-5.0.1_REL.iso.txt | 33 -- - .../dfly-x86_64-5.0.2_REL.iso.txt | 33 -- - .../dfly-x86_64-5.2.0_REL.iso.txt | 33 -- - .../dfly-x86_64-5.2.1_REL.iso.txt | 33 -- - .../dfly-x86_64-5.2.2_REL.iso.txt | 34 -- - .../dfly-x86_64-5.4.0_REL.iso.txt | 29 -- - .../dfly-x86_64-5.4.1_REL.iso.txt | 29 -- - ...3.4-amd64-amd64.180515-041823.base.iso.txt | 29 -- - ...os3.4-amd64-amd64.180515-044004.es.iso.txt | 29 -- - ...os3.4-amd64-amd64.180515-044248.bn.iso.txt | 29 -- - ....4-amd64-amd64.180515-044927.es_GT.iso.txt | 29 -- - ...os3.4-amd64-amd64.180515-050141.en.iso.txt | 29 -- - ...os3.4-amd64-amd64.180515-054338.ar.iso.txt | 29 -- - ...os3.4-amd64-amd64.180515-055726.fr.iso.txt | 29 -- - ....4-amd64-amd64.180515-061343.es_MX.iso.txt | 29 -- - ...os3.4-amd64-amd64.180515-062519.id.iso.txt | 29 -- - ...os3.4-amd64-amd64.180515-064146.th.iso.txt | 29 -- - ...os3.4-amd64-amd64.180515-070619.vi.iso.txt | 29 -- - ....4-amd64-amd64.180515-071821.zh_CN.iso.txt | 29 -- - .../fedora/fedora1/yarrow-i386-disc1.iso.txt | 29 -- - .../fedora/fedora1/yarrow-i386-disc2.iso.txt | 16 - - .../fedora/fedora1/yarrow-i386-disc3.iso.txt | 16 - - .../fedora/fedora1/yarrow-i386-dvd.iso.txt | 29 -- - .../fedora/fedora10/F10-i686-Live-KDE.iso.txt | 29 -- - .../fedora/fedora10/F10-i686-Live.iso.txt | 29 -- - .../fedora10/F10-x86_64-Live-KDE.iso.txt | 29 -- - .../fedora/fedora10/F10-x86_64-Live.iso.txt | 29 -- - .../fedora10/Fedora-10-i386-DVD.iso.txt | 29 -- - .../fedora10/Fedora-10-i386-disc1.iso.txt | 29 -- - .../fedora10/Fedora-10-i386-disc2.iso.txt | 16 - - .../fedora10/Fedora-10-i386-disc3.iso.txt | 16 - - .../fedora10/Fedora-10-i386-disc4.iso.txt | 16 - - .../fedora10/Fedora-10-i386-disc5.iso.txt | 16 - - .../fedora10/Fedora-10-i386-disc6.iso.txt | 16 - - .../fedora/fedora10/Fedora-10-ppc-DVD.iso.txt | 16 - - .../fedora10/Fedora-10-ppc-disc1.iso.txt | 16 - - .../fedora10/Fedora-10-ppc-disc2.iso.txt | 16 - - .../fedora10/Fedora-10-ppc-disc3.iso.txt | 16 - - .../fedora10/Fedora-10-ppc-disc4.iso.txt | 16 - - .../fedora10/Fedora-10-ppc-disc5.iso.txt | 16 - - .../fedora10/Fedora-10-ppc-disc6.iso.txt | 16 - - .../fedora10/Fedora-10-ppc-disc7.iso.txt | 16 - - .../fedora10/Fedora-10-x86_64-DVD.iso.txt | 29 -- - .../fedora10/Fedora-10-x86_64-disc1.iso.txt | 29 -- - .../fedora10/Fedora-10-x86_64-disc2.iso.txt | 16 - - .../fedora10/Fedora-10-x86_64-disc3.iso.txt | 16 - - .../fedora10/Fedora-10-x86_64-disc4.iso.txt | 16 - - .../fedora10/Fedora-10-x86_64-disc5.iso.txt | 16 - - .../fedora10/Fedora-10-x86_64-disc6.iso.txt | 16 - - .../fedora11/Fedora-11-i386-DVD.iso.txt | 29 -- - .../fedora11/Fedora-11-i386-disc1.iso.txt | 29 -- - .../fedora11/Fedora-11-i386-disc2.iso.txt | 16 - - .../fedora11/Fedora-11-i386-disc3.iso.txt | 16 - - .../fedora11/Fedora-11-i386-disc4.iso.txt | 16 - - .../fedora11/Fedora-11-i386-disc5.iso.txt | 16 - - .../fedora11/Fedora-11-i386-disc6.iso.txt | 16 - - .../fedora11/Fedora-11-i686-Live-KDE.iso.txt | 29 -- - .../fedora11/Fedora-11-i686-Live.iso.txt | 29 -- - .../fedora/fedora11/Fedora-11-ppc-DVD.iso.txt | 16 - - .../fedora11/Fedora-11-ppc-disc1.iso.txt | 16 - - .../fedora11/Fedora-11-ppc-disc2.iso.txt | 16 - - .../fedora11/Fedora-11-ppc-disc3.iso.txt | 16 - - .../fedora11/Fedora-11-ppc-disc4.iso.txt | 16 - - .../fedora11/Fedora-11-ppc-disc5.iso.txt | 16 - - .../fedora11/Fedora-11-ppc-disc6.iso.txt | 16 - - .../fedora11/Fedora-11-ppc-disc7.iso.txt | 16 - - .../fedora11/Fedora-11-x86_64-DVD.iso.txt | 29 -- - .../Fedora-11-x86_64-Live-KDE.iso.txt | 29 -- - .../fedora11/Fedora-11-x86_64-Live.iso.txt | 29 -- - .../fedora11/Fedora-11-x86_64-disc1.iso.txt | 29 -- - .../fedora11/Fedora-11-x86_64-disc2.iso.txt | 16 - - .../fedora11/Fedora-11-x86_64-disc3.iso.txt | 16 - - .../fedora11/Fedora-11-x86_64-disc4.iso.txt | 16 - - .../fedora11/Fedora-11-x86_64-disc5.iso.txt | 16 - - .../fedora11/Fedora-11-x86_64-disc6.iso.txt | 16 - - .../fedora12/Fedora-12-i386-DVD.iso.txt | 29 -- - .../fedora12/Fedora-12-i386-disc1.iso.txt | 29 -- - .../fedora12/Fedora-12-i386-disc2.iso.txt | 16 - - .../fedora12/Fedora-12-i386-disc3.iso.txt | 16 - - .../fedora12/Fedora-12-i386-disc4.iso.txt | 16 - - .../fedora12/Fedora-12-i386-disc5.iso.txt | 16 - - .../fedora12/Fedora-12-i686-Live-KDE.iso.txt | 29 -- - .../fedora12/Fedora-12-i686-Live.iso.txt | 29 -- - .../fedora/fedora12/Fedora-12-ppc-DVD.iso.txt | 16 - - .../fedora12/Fedora-12-ppc-disc1.iso.txt | 16 - - .../fedora12/Fedora-12-ppc-disc2.iso.txt | 16 - - .../fedora12/Fedora-12-ppc-disc3.iso.txt | 16 - - .../fedora12/Fedora-12-ppc-disc4.iso.txt | 16 - - .../fedora12/Fedora-12-ppc-disc5.iso.txt | 16 - - .../fedora12/Fedora-12-ppc-disc6.iso.txt | 16 - - .../fedora12/Fedora-12-x86_64-DVD.iso.txt | 29 -- - .../Fedora-12-x86_64-Live-KDE.iso.txt | 29 -- - .../fedora12/Fedora-12-x86_64-Live.iso.txt | 29 -- - .../fedora12/Fedora-12-x86_64-disc1.iso.txt | 29 -- - .../fedora12/Fedora-12-x86_64-disc2.iso.txt | 16 - - .../fedora12/Fedora-12-x86_64-disc3.iso.txt | 16 - - .../fedora12/Fedora-12-x86_64-disc4.iso.txt | 16 - - .../fedora12/Fedora-12-x86_64-disc5.iso.txt | 16 - - .../fedora13/Fedora-13-i386-DVD.iso.txt | 29 -- - .../fedora13/Fedora-13-i386-disc1.iso.txt | 29 -- - .../fedora13/Fedora-13-i386-disc2.iso.txt | 16 - - .../fedora13/Fedora-13-i386-disc3.iso.txt | 16 - - .../fedora13/Fedora-13-i386-disc4.iso.txt | 16 - - .../fedora13/Fedora-13-i386-disc5.iso.txt | 16 - - .../fedora13/Fedora-13-i686-Live-KDE.iso.txt | 29 -- - .../fedora13/Fedora-13-i686-Live.iso.txt | 29 -- - .../fedora13/Fedora-13-x86_64-DVD.iso.txt | 29 -- - .../Fedora-13-x86_64-Live-KDE.iso.txt | 29 -- - .../fedora13/Fedora-13-x86_64-Live.iso.txt | 29 -- - .../fedora13/Fedora-13-x86_64-disc1.iso.txt | 29 -- - .../fedora13/Fedora-13-x86_64-disc2.iso.txt | 16 - - .../fedora13/Fedora-13-x86_64-disc3.iso.txt | 16 - - .../fedora13/Fedora-13-x86_64-disc4.iso.txt | 16 - - .../fedora13/Fedora-13-x86_64-disc5.iso.txt | 16 - - .../fedora14/Fedora-14-i386-DVD.iso.txt | 29 -- - .../fedora14/Fedora-14-i386-disc1.iso.txt | 29 -- - .../fedora14/Fedora-14-i386-disc2.iso.txt | 16 - - .../fedora14/Fedora-14-i386-disc3.iso.txt | 16 - - .../fedora14/Fedora-14-i386-disc4.iso.txt | 16 - - .../fedora14/Fedora-14-i386-disc5.iso.txt | 16 - - .../Fedora-14-i686-Live-Desktop.iso.txt | 29 -- - .../fedora14/Fedora-14-i686-Live-KDE.iso.txt | 29 -- - .../fedora14/Fedora-14-x86_64-DVD.iso.txt | 29 -- - .../Fedora-14-x86_64-Live-Desktop.iso.txt | 29 -- - .../Fedora-14-x86_64-Live-KDE.iso.txt | 29 -- - .../fedora14/Fedora-14-x86_64-disc1.iso.txt | 29 -- - .../fedora14/Fedora-14-x86_64-disc2.iso.txt | 16 - - .../fedora14/Fedora-14-x86_64-disc3.iso.txt | 16 - - .../fedora14/Fedora-14-x86_64-disc4.iso.txt | 16 - - .../fedora14/Fedora-14-x86_64-disc5.iso.txt | 16 - - .../fedora15/Fedora-15-i386-DVD.iso.txt | 29 -- - .../Fedora-15-i686-Live-Desktop.iso.txt | 29 -- - .../fedora15/Fedora-15-i686-Live-KDE.iso.txt | 29 -- - .../fedora15/Fedora-15-x86_64-DVD.iso.txt | 29 -- - .../Fedora-15-x86_64-Live-Desktop.iso.txt | 29 -- - .../Fedora-15-x86_64-Live-KDE.iso.txt | 29 -- - .../fedora16/Fedora-16-i386-DVD.iso.txt | 29 -- - .../Fedora-16-i686-Live-Desktop.iso.txt | 29 -- - .../fedora16/Fedora-16-i686-Live-KDE.iso.txt | 29 -- - .../fedora16/Fedora-16-x86_64-DVD.iso.txt | 29 -- - .../Fedora-16-x86_64-Live-Desktop.iso.txt | 29 -- - .../Fedora-16-x86_64-Live-KDE.iso.txt | 29 -- - .../fedora17/Fedora-17-i386-DVD.iso.txt | 29 -- - .../Fedora-17-i686-Live-Desktop.iso.txt | 29 -- - .../fedora17/Fedora-17-i686-Live-KDE.iso.txt | 29 -- - .../fedora17/Fedora-17-x86_64-DVD.iso.txt | 29 -- - .../Fedora-17-x86_64-Live-Desktop.iso.txt | 29 -- - .../Fedora-17-x86_64-Live-KDE.iso.txt | 29 -- - .../fedora18/Fedora-18-i386-DVD.iso.txt | 29 -- - .../Fedora-18-i686-Live-Desktop.iso.txt | 29 -- - .../fedora18/Fedora-18-i686-Live-KDE.iso.txt | 29 -- - .../fedora18/Fedora-18-x86_64-DVD.iso.txt | 29 -- - .../Fedora-18-x86_64-Live-Desktop.iso.txt | 29 -- - .../Fedora-18-x86_64-Live-KDE.iso.txt | 29 -- - .../fedora19/Fedora-19-i386-netinst.iso.txt | 29 -- - .../fedora19/Fedora-19-x86_64-DVD.iso.txt | 29 -- - .../Fedora-Live-Desktop-i686-19-1.iso.txt | 29 -- - .../Fedora-Live-Desktop-x86_64-19-1.iso.txt | 29 -- - .../Fedora-Live-KDE-i686-19-1.iso.txt | 29 -- - .../Fedora-Live-KDE-x86_64-19-1.iso.txt | 29 -- - .../Fedora-Live-LXDE-x86_64-19-1.iso.txt | 29 -- - .../Fedora-Live-XFCE-x86_64-19-1.iso.txt | 29 -- - .../fedora/fedora2/FC2-i386-DVD.iso.txt | 29 -- - .../fedora/fedora2/FC2-i386-disc1.iso.txt | 29 -- - .../fedora/fedora2/FC2-i386-disc2.iso.txt | 16 - - .../fedora/fedora2/FC2-i386-disc3.iso.txt | 16 - - .../fedora/fedora2/FC2-i386-disc4.iso.txt | 16 - - .../fedora/fedora2/FC2-x86_64-DVD.iso.txt | 29 -- - .../fedora/fedora2/FC2-x86_64-disc1.iso.txt | 29 -- - .../fedora/fedora2/FC2-x86_64-disc2.iso.txt | 16 - - .../fedora/fedora2/FC2-x86_64-disc3.iso.txt | 16 - - .../fedora/fedora2/FC2-x86_64-disc4.iso.txt | 16 - - .../fedora20/Fedora-20-i386-DVD.iso.txt | 29 -- - .../fedora20/Fedora-20-i386-netinst.iso.txt | 29 -- - .../fedora20/Fedora-20-ppc64-netinst.iso.txt | 16 - - .../fedora20/Fedora-20-x86_64-DVD.iso.txt | 29 -- - .../fedora20/Fedora-20-x86_64-netinst.iso.txt | 29 -- - .../Fedora-Live-Desktop-i686-20-1.iso.txt | 29 -- - .../Fedora-Live-Desktop-x86_64-20-1.iso.txt | 29 -- - .../Fedora-Live-KDE-i686-20-1.iso.txt | 29 -- - .../Fedora-Live-KDE-x86_64-20-1.iso.txt | 29 -- - .../Fedora-Cloud-netinst-i386-21.iso.txt | 29 -- - .../Fedora-Cloud-netinst-x86_64-21.iso.txt | 29 -- - .../Fedora-Live-Workstation-i686-21-5.iso.txt | 29 -- - ...edora-Live-Workstation-x86_64-21-5.iso.txt | 29 -- - .../Fedora-Server-DVD-i386-21.iso.txt | 29 -- - .../Fedora-Server-DVD-x86_64-21.iso.txt | 29 -- - .../Fedora-Server-netinst-i386-21.iso.txt | 29 -- - .../Fedora-Server-netinst-x86_64-21.iso.txt | 29 -- - .../Fedora-Live-Workstation-i686-22-3.iso.txt | 29 -- - ...edora-Live-Workstation-x86_64-22-3.iso.txt | 29 -- - .../Fedora-Server-DVD-i386-22.iso.txt | 29 -- - .../Fedora-Server-DVD-x86_64-22.iso.txt | 29 -- - .../Fedora-Server-netinst-i386-22.iso.txt | 29 -- - .../Fedora-Server-netinst-x86_64-22.iso.txt | 29 -- - ...Fedora-Workstation-netinst-i386-22.iso.txt | 29 -- - ...dora-Workstation-netinst-x86_64-22.iso.txt | 29 -- - ...ra-Live-Workstation-i686-23_Beta-1.iso.txt | 29 -- - ...-Live-Workstation-x86_64-23_Beta-1.iso.txt | 29 -- - .../Fedora-Server-DVD-i386-23.iso.txt | 29 -- - .../Fedora-Server-DVD-x86_64-23.iso.txt | 29 -- - .../Fedora-Server-netinst-i386-23.iso.txt | 29 -- - .../Fedora-Server-netinst-x86_64-23.iso.txt | 29 -- - ...a-Workstation-netinst-i386-23_Beta.iso.txt | 29 -- - ...Workstation-netinst-x86_64-23_Beta.iso.txt | 29 -- - .../Fedora-Server-dvd-i386-24-1.2.iso.txt | 29 -- - .../Fedora-Server-dvd-x86_64-24-1.2.iso.txt | 29 -- - .../Fedora-Server-netinst-i386-24-1.2.iso.txt | 29 -- - ...edora-Server-netinst-x86_64-24-1.2.iso.txt | 29 -- - ...edora-Workstation-Live-i386-24-1.2.iso.txt | 29 -- - ...ora-Workstation-Live-x86_64-24-1.2.iso.txt | 29 -- - ...ra-Workstation-netinst-i386-24-1.2.iso.txt | 29 -- - ...-Workstation-netinst-x86_64-24-1.2.iso.txt | 29 -- - .../Fedora-Server-dvd-i386-25-1.3.iso.txt | 29 -- - .../Fedora-Server-dvd-x86_64-25-1.3.iso.txt | 29 -- - .../Fedora-Server-netinst-i386-25-1.3.iso.txt | 29 -- - ...edora-Server-netinst-x86_64-25-1.3.iso.txt | 29 -- - ...edora-Workstation-Live-i386-25-1.3.iso.txt | 29 -- - ...ora-Workstation-Live-x86_64-25-1.3.iso.txt | 29 -- - ...ra-Workstation-netinst-i386-25-1.3.iso.txt | 29 -- - ...-Workstation-netinst-x86_64-25-1.3.iso.txt | 29 -- - .../Fedora-Server-dvd-x86_64-26-1.5.iso.txt | 29 -- - ...edora-Server-netinst-x86_64-26-1.5.iso.txt | 29 -- - ...ora-Workstation-Live-x86_64-26-1.5.iso.txt | 29 -- - ...-Workstation-netinst-x86_64-26-1.5.iso.txt | 29 -- - .../Fedora-Server-dvd-x86_64-27-1.6.iso.txt | 34 -- - ...edora-Server-netinst-x86_64-27-1.6.iso.txt | 34 -- - ...ora-Workstation-Live-x86_64-27-1.6.iso.txt | 34 -- - ...-Workstation-netinst-x86_64-27-1.6.iso.txt | 34 -- - ...stationOstree-ostree-x86_64-27-1.6.iso.txt | 29 -- - .../Fedora-Server-dvd-x86_64-28-1.1.iso.txt | 29 -- - ...edora-Server-netinst-x86_64-28-1.1.iso.txt | 29 -- - ...ora-Workstation-Live-x86_64-28-1.1.iso.txt | 29 -- - ...a-Everything-netinst-x86_64-29-1.2.iso.txt | 29 -- - .../Fedora-Server-dvd-x86_64-29-1.2.iso.txt | 29 -- - ...edora-Server-netinst-x86_64-29-1.2.iso.txt | 29 -- - ...-Workstation-netinst-x86_64-29-1.2.iso.txt | 29 -- - .../fedora/fedora3/FC3-i386-DVD.iso.txt | 29 -- - .../fedora/fedora3/FC3-i386-disc1.iso.txt | 29 -- - .../fedora/fedora3/FC3-i386-disc2.iso.txt | 16 - - .../fedora/fedora3/FC3-i386-disc3.iso.txt | 16 - - .../fedora/fedora3/FC3-i386-disc4.iso.txt | 16 - - .../fedora/fedora3/FC3-x86_64-DVD.iso.txt | 29 -- - .../fedora/fedora3/FC3-x86_64-disc1.iso.txt | 29 -- - .../fedora/fedora3/FC3-x86_64-disc2.iso.txt | 16 - - .../fedora/fedora3/FC3-x86_64-disc3.iso.txt | 16 - - .../fedora/fedora3/FC3-x86_64-disc4.iso.txt | 16 - - .../fedora/fedora4/FC4-i386-DVD.iso.txt | 29 -- - .../fedora/fedora4/FC4-i386-disc1.iso.txt | 29 -- - .../fedora/fedora4/FC4-i386-disc2.iso.txt | 16 - - .../fedora/fedora4/FC4-i386-disc3.iso.txt | 16 - - .../fedora/fedora4/FC4-i386-disc4.iso.txt | 16 - - .../fedora/fedora4/FC4-ppc-DVD.iso.txt | 16 - - .../fedora/fedora4/FC4-ppc-disc1.iso.txt | 16 - - .../fedora/fedora4/FC4-ppc-disc2.iso.txt | 16 - - .../fedora/fedora4/FC4-ppc-disc3.iso.txt | 16 - - .../fedora/fedora4/FC4-ppc-disc4.iso.txt | 16 - - .../fedora/fedora4/FC4-ppc-disc5.iso.txt | 16 - - .../fedora/fedora4/FC4-x86_64-DVD.iso.txt | 29 -- - .../fedora/fedora4/FC4-x86_64-disc1.iso.txt | 29 -- - .../fedora/fedora4/FC4-x86_64-disc2.iso.txt | 16 - - .../fedora/fedora4/FC4-x86_64-disc3.iso.txt | 16 - - .../fedora/fedora4/FC4-x86_64-disc4.iso.txt | 16 - - .../fedora/fedora4/FC4-x86_64-disc5.iso.txt | 16 - - .../fedora/fedora5/FC-5-i386-DVD.iso.txt | 29 -- - .../fedora/fedora5/FC-5-i386-disc1.iso.txt | 29 -- - .../fedora/fedora5/FC-5-i386-disc2.iso.txt | 16 - - .../fedora/fedora5/FC-5-i386-disc3.iso.txt | 16 - - .../fedora/fedora5/FC-5-i386-disc4.iso.txt | 16 - - .../fedora/fedora5/FC-5-i386-disc5.iso.txt | 16 - - .../fedora/fedora5/FC-5-ppc-DVD.iso.txt | 16 - - .../fedora/fedora5/FC-5-ppc-disc1.iso.txt | 16 - - .../fedora/fedora5/FC-5-ppc-disc2.iso.txt | 16 - - .../fedora/fedora5/FC-5-ppc-disc3.iso.txt | 16 - - .../fedora/fedora5/FC-5-ppc-disc4.iso.txt | 16 - - .../fedora/fedora5/FC-5-ppc-disc5.iso.txt | 16 - - .../fedora/fedora5/FC-5-x86_64-DVD.iso.txt | 29 -- - .../fedora/fedora5/FC-5-x86_64-disc1.iso.txt | 29 -- - .../fedora/fedora5/FC-5-x86_64-disc2.iso.txt | 16 - - .../fedora/fedora5/FC-5-x86_64-disc3.iso.txt | 16 - - .../fedora/fedora5/FC-5-x86_64-disc4.iso.txt | 16 - - .../fedora/fedora5/FC-5-x86_64-disc5.iso.txt | 16 - - .../fedora/fedora6/FC-6-i386-DVD.iso.txt | 29 -- - .../fedora/fedora6/FC-6-i386-disc1.iso.txt | 29 -- - .../fedora/fedora6/FC-6-i386-disc2.iso.txt | 16 - - .../fedora/fedora6/FC-6-i386-disc3.iso.txt | 16 - - .../fedora/fedora6/FC-6-i386-disc4.iso.txt | 16 - - .../fedora/fedora6/FC-6-i386-disc5.iso.txt | 16 - - .../fedora/fedora6/FC-6-ppc-DVD.iso.txt | 16 - - .../fedora/fedora6/FC-6-ppc-disc1.iso.txt | 16 - - .../fedora/fedora6/FC-6-ppc-disc2.iso.txt | 16 - - .../fedora/fedora6/FC-6-ppc-disc3.iso.txt | 16 - - .../fedora/fedora6/FC-6-ppc-disc4.iso.txt | 16 - - .../fedora/fedora6/FC-6-ppc-disc5.iso.txt | 16 - - .../fedora/fedora6/FC-6-ppc-disc6.iso.txt | 16 - - .../fedora/fedora6/FC-6-x86_64-DVD.iso.txt | 29 -- - .../fedora/fedora6/FC-6-x86_64-disc1.iso.txt | 29 -- - .../fedora/fedora6/FC-6-x86_64-disc2.iso.txt | 16 - - .../fedora/fedora6/FC-6-x86_64-disc3.iso.txt | 16 - - .../fedora/fedora6/FC-6-x86_64-disc4.iso.txt | 16 - - .../fedora/fedora6/FC-6-x86_64-disc5.iso.txt | 16 - - .../fedora/fedora6/FC-6-x86_64-disc6.iso.txt | 16 - - .../fedora/fedora7/F-7-i386-DVD.iso.txt | 29 -- - .../fedora/fedora7/F-7-ppc-DVD.iso.txt | 16 - - .../fedora/fedora7/F-7-x86_64-DVD.iso.txt | 29 -- - .../fedora7/Fedora-7-KDE-Live-i686.iso.txt | 29 -- - .../fedora7/Fedora-7-KDE-Live-x86_64.iso.txt | 29 -- - .../fedora/fedora7/Fedora-7-Live-i686.iso.txt | 29 -- - .../fedora7/Fedora-7-Live-x86_64.iso.txt | 29 -- - .../fedora8/Fedora-8-Live-KDE-i686.iso.txt | 29 -- - .../fedora8/Fedora-8-Live-KDE-x86_64.iso.txt | 29 -- - .../fedora/fedora8/Fedora-8-Live-i686.iso.txt | 29 -- - .../fedora/fedora8/Fedora-8-Live-ppc.iso.txt | 16 - - .../fedora8/Fedora-8-Live-x86_64.iso.txt | 29 -- - .../fedora/fedora8/Fedora-8-i386-DVD.iso.txt | 29 -- - .../fedora/fedora8/Fedora-8-ppc-DVD.iso.txt | 16 - - .../fedora8/Fedora-8-x86_64-DVD.iso.txt | 29 -- - .../fedora/fedora9/Fedora-9-i386-DVD.iso.txt | 29 -- - .../fedora9/Fedora-9-i386-disc1.iso.txt | 29 -- - .../fedora9/Fedora-9-i386-disc2.iso.txt | 16 - - .../fedora9/Fedora-9-i386-disc3.iso.txt | 16 - - .../fedora9/Fedora-9-i386-disc4.iso.txt | 16 - - .../fedora9/Fedora-9-i386-disc5.iso.txt | 16 - - .../fedora9/Fedora-9-i386-disc6.iso.txt | 16 - - .../fedora9/Fedora-9-i686-Live-KDE.iso.txt | 29 -- - .../fedora/fedora9/Fedora-9-i686-Live.iso.txt | 29 -- - .../fedora/fedora9/Fedora-9-ppc-DVD.iso.txt | 16 - - .../fedora/fedora9/Fedora-9-ppc-disc1.iso.txt | 16 - - .../fedora/fedora9/Fedora-9-ppc-disc2.iso.txt | 16 - - .../fedora/fedora9/Fedora-9-ppc-disc3.iso.txt | 16 - - .../fedora/fedora9/Fedora-9-ppc-disc4.iso.txt | 16 - - .../fedora/fedora9/Fedora-9-ppc-disc5.iso.txt | 16 - - .../fedora/fedora9/Fedora-9-ppc-disc6.iso.txt | 16 - - .../fedora/fedora9/Fedora-9-ppc-disc7.iso.txt | 16 - - .../fedora9/Fedora-9-x86_64-DVD.iso.txt | 29 -- - .../fedora9/Fedora-9-x86_64-Live-KDE.iso.txt | 29 -- - .../fedora9/Fedora-9-x86_64-Live.iso.txt | 29 -- - .../fedora9/Fedora-9-x86_64-disc1.iso.txt | 29 -- - .../fedora9/Fedora-9-x86_64-disc2.iso.txt | 16 - - .../fedora9/Fedora-9-x86_64-disc3.iso.txt | 16 - - .../fedora9/Fedora-9-x86_64-disc4.iso.txt | 16 - - .../fedora9/Fedora-9-x86_64-disc5.iso.txt | 16 - - .../fedora9/Fedora-9-x86_64-disc6.iso.txt | 16 - - .../fedora9/Fedora-9-x86_64-disc7.iso.txt | 16 - - ...icWorkstation-ostree-x86_64-28-1.1.iso.txt | 29 -- - ...ra-Silverblue-ostree-x86_64-29-1.2.iso.txt | 29 -- - .../FreeBSD-10.1-RELEASE-amd64-dvd1.iso.txt | 29 -- - .../FreeBSD-10.2-RELEASE-amd64-dvd1.iso.txt | 33 -- - .../FreeBSD-10.3-RELEASE-amd64-dvd1.iso.txt | 33 -- - .../FreeBSD-10.4-RELEASE-amd64-disc1.iso.txt | 33 -- - .../FreeBSD-10.4-RELEASE-amd64-dvd1.iso.txt | 33 -- - .../FreeBSD-10.4-RELEASE-i386-disc1.iso.txt | 33 -- - .../FreeBSD-10.4-RELEASE-i386-dvd1.iso.txt | 33 -- - .../FreeBSD-11.0-RELEASE-amd64-disc1.iso.txt | 33 -- - .../FreeBSD-11.0-RELEASE-amd64-dvd1.iso.txt | 33 -- - .../FreeBSD-11.0-RELEASE-i386-disc1.iso.txt | 33 -- - .../FreeBSD-11.0-RELEASE-i386-dvd1.iso.txt | 33 -- - .../FreeBSD-11.1-RELEASE-amd64-disc1.iso.txt | 33 -- - .../FreeBSD-11.1-RELEASE-amd64-dvd1.iso.txt | 33 -- - .../FreeBSD-11.1-RELEASE-i386-disc1.iso.txt | 33 -- - .../FreeBSD-11.1-RELEASE-i386-dvd1.iso.txt | 33 -- - .../FreeBSD-11.2-RELEASE-amd64-disc1.iso.txt | 33 -- - .../FreeBSD-11.2-RELEASE-amd64-dvd1.iso.txt | 33 -- - .../FreeBSD-11.2-RELEASE-i386-disc1.iso.txt | 33 -- - .../FreeBSD-11.2-RELEASE-i386-dvd1.iso.txt | 33 -- - .../FreeBSD-12.0-RELEASE-amd64-disc1.iso.txt | 29 -- - .../FreeBSD-12.0-RELEASE-amd64-dvd1.iso.txt | 29 -- - .../FreeBSD-12.0-RELEASE-i386-disc1.iso.txt | 29 -- - .../FreeBSD-12.0-RELEASE-i386-dvd1.iso.txt | 29 -- - .../isodata/freedos/freedos1.2/FD12CD.iso.txt | 29 -- - .../freedos/freedos1.2/FD12LGCY.iso.txt | 29 -- - ...all-amd64-minimal-20190212T214502Z.iso.txt | 29 -- - ...stall-x86-minimal-20190214T185527Z.iso.txt | 29 -- - .../gnome/gnome3.8/GNOME-3.7.92.iso.txt | 29 -- - .../haiku-nightly-anyboot.iso.txt | 29 -- - .../haikur1alpha1/haiku-r1alpha1.iso.txt | 29 -- - .../haiku-r1alpha2-sources.iso.txt | 29 -- - .../haikur1alpha3/haiku-r1alpha3.iso.txt | 29 -- - .../haikur1alpha4.1/haiku-r1alpha4.iso.txt | 29 -- - .../mageia/mageia1/mageia-dual-1.iso.txt | 29 -- - .../mageia/mageia1/mageia-dvd-1-i586.iso.txt | 29 -- - ...-GNOME-europe1-americas-cdrom-i586.iso.txt | 29 -- - ...1-KDE4-europe1-americas-cdrom-i586.iso.txt | 29 -- - .../mageia/mageia2/Mageia-2-dual-CD.iso.txt | 29 -- - .../mageia/mageia2/Mageia-2-i586-DVD.iso.txt | 29 -- - .../Mageia-3-LiveCD-GNOME-en-i586-CD.iso.txt | 29 -- - .../Mageia-3-LiveCD-KDE4-en-i586-CD.iso.txt | 29 -- - .../Mageia-3-LiveDVD-GNOME-i586-DVD.iso.txt | 29 -- - .../Mageia-3-LiveDVD-GNOME-x86_64-DVD.iso.txt | 29 -- - .../Mageia-3-LiveDVD-KDE4-i586-DVD.iso.txt | 29 -- - .../Mageia-3-LiveDVD-KDE4-x86_64-DVD.iso.txt | 29 -- - .../mageia/mageia3/Mageia-3-dual-CD.iso.txt | 29 -- - .../mageia/mageia3/Mageia-3-i586-DVD.iso.txt | 29 -- - .../mageia3/Mageia-3-x86_64-DVD.iso.txt | 29 -- - .../Mageia-4-LiveCD-GNOME-en-i586-CD.iso.txt | 29 -- - .../Mageia-4-LiveCD-KDE4-en-i586-CD.iso.txt | 29 -- - .../Mageia-4-LiveDVD-GNOME-i586-DVD.iso.txt | 29 -- - .../Mageia-4-LiveDVD-GNOME-x86_64-DVD.iso.txt | 29 -- - .../Mageia-4-LiveDVD-KDE4-i586-DVD.iso.txt | 29 -- - .../Mageia-4-LiveDVD-KDE4-x86_64-DVD.iso.txt | 29 -- - .../mageia/mageia4/Mageia-4-dual-DVD.iso.txt | 29 -- - .../mageia/mageia4/Mageia-4-i586-DVD.iso.txt | 29 -- - .../mageia4/Mageia-4-x86_64-DVD.iso.txt | 29 -- - ...Mageia-4.1-LiveCD-GNOME-en-i586-CD.iso.txt | 29 -- - .../Mageia-4.1-LiveCD-KDE4-en-i586-CD.iso.txt | 29 -- - .../Mageia-4.1-LiveDVD-GNOME-i586-DVD.iso.txt | 29 -- - ...ageia-4.1-LiveDVD-GNOME-x86_64-DVD.iso.txt | 29 -- - .../Mageia-4.1-LiveDVD-KDE4-i586-DVD.iso.txt | 29 -- - ...Mageia-4.1-LiveDVD-KDE4-x86_64-DVD.iso.txt | 29 -- - .../mageia4/Mageia-4.1-dual-DVD.iso.txt | 29 -- - .../mageia4/Mageia-4.1-i586-DVD.iso.txt | 29 -- - .../mageia4/Mageia-4.1-x86_64-DVD.iso.txt | 29 -- - .../Mageia-5-LiveCD-GNOME-en-i586-CD.iso.txt | 29 -- - .../Mageia-5-LiveCD-KDE4-en-i586-CD.iso.txt | 29 -- - .../Mageia-5-LiveDVD-GNOME-i586-DVD.iso.txt | 29 -- - .../Mageia-5-LiveDVD-GNOME-x86_64-DVD.iso.txt | 29 -- - .../Mageia-5-LiveDVD-KDE4-i586-DVD.iso.txt | 29 -- - .../Mageia-5-LiveDVD-KDE4-x86_64-DVD.iso.txt | 29 -- - .../mageia/mageia5/Mageia-5-dual-DVD.iso.txt | 29 -- - .../mageia/mageia5/Mageia-5-i586-DVD.iso.txt | 29 -- - .../mageia5/Mageia-5-x86_64-DVD.iso.txt | 29 -- - .../Mageia-6-LiveDVD-GNOME-x86_64-DVD.iso.txt | 29 -- - ...Mageia-6-LiveDVD-Plasma-x86_64-DVD.iso.txt | 29 -- - .../Mageia-6-LiveDVD-Xfce-i586-DVD.iso.txt | 29 -- - .../Mageia-6-LiveDVD-Xfce-x86_64-DVD.iso.txt | 29 -- - .../mageia/mageia6/Mageia-6-i586-DVD.iso.txt | 29 -- - .../mageia6/Mageia-6-x86_64-DVD.iso.txt | 29 -- - .../NetBSD-6.0-amd64-boot-com.iso.txt | 16 - - .../netbsd6.0/NetBSD-6.0-amd64-boot.iso.txt | 16 - - .../netbsd/netbsd6.0/NetBSD-6.0-amd64.iso.txt | 16 - - .../NetBSD-6.0-i386-boot-com.iso.txt | 16 - - .../netbsd6.0/NetBSD-6.0-i386-boot.iso.txt | 16 - - .../netbsd/netbsd6.0/NetBSD-6.0-i386.iso.txt | 16 - - .../NetBSD-6.1-amd64-boot-com.iso.txt | 16 - - .../netbsd6.1/NetBSD-6.1-amd64-boot.iso.txt | 16 - - .../netbsd/netbsd6.1/NetBSD-6.1-amd64.iso.txt | 16 - - .../NetBSD-6.1-i386-boot-com.iso.txt | 16 - - .../netbsd6.1/NetBSD-6.1-i386-boot.iso.txt | 16 - - .../netbsd/netbsd6.1/NetBSD-6.1-i386.iso.txt | 16 - - .../NetBSD-7.0-amd64-boot-com.iso.txt | 16 - - .../netbsd7.0/NetBSD-7.0-amd64-boot.iso.txt | 16 - - .../netbsd/netbsd7.0/NetBSD-7.0-amd64.iso.txt | 16 - - .../NetBSD-7.0-i386-boot-com.iso.txt | 16 - - .../netbsd7.0/NetBSD-7.0-i386-boot.iso.txt | 16 - - .../netbsd/netbsd7.0/NetBSD-7.0-i386.iso.txt | 16 - - .../NetBSD-7.1.1-amd64-boot-com.iso.txt | 16 - - .../NetBSD-7.1.1-amd64-boot.iso.txt | 16 - - .../netbsd7.1.1/NetBSD-7.1.1-amd64.iso.txt | 29 -- - .../NetBSD-7.1.1-i386-boot-com.iso.txt | 16 - - .../NetBSD-7.1.1-i386-boot.iso.txt | 16 - - .../netbsd7.1.1/NetBSD-7.1.1-i386.iso.txt | 16 - - .../NetBSD-7.1.2-amd64-boot-com.iso.txt | 29 -- - .../NetBSD-7.1.2-amd64-boot.iso.txt | 33 -- - .../netbsd7.1.2/NetBSD-7.1.2-amd64.iso.txt | 29 -- - .../NetBSD-7.1.2-i386-boot-com.iso.txt | 33 -- - .../NetBSD-7.1.2-i386-boot.iso.txt | 33 -- - .../netbsd7.1.2/NetBSD-7.1.2-i386.iso.txt | 33 -- - .../NetBSD-7.1-amd64-boot-com.iso.txt | 16 - - .../netbsd7.1/NetBSD-7.1-amd64-boot.iso.txt | 16 - - .../netbsd/netbsd7.1/NetBSD-7.1-amd64.iso.txt | 16 - - .../NetBSD-7.1-i386-boot-com.iso.txt | 16 - - .../netbsd7.1/NetBSD-7.1-i386-boot.iso.txt | 29 -- - .../netbsd/netbsd7.1/NetBSD-7.1-i386.iso.txt | 16 - - .../NetBSD-7.2-amd64-boot-com.iso.txt | 33 -- - .../netbsd7.2/NetBSD-7.2-amd64-boot.iso.txt | 33 -- - .../netbsd/netbsd7.2/NetBSD-7.2-amd64.iso.txt | 33 -- - .../NetBSD-7.2-i386-boot-com.iso.txt | 33 -- - .../netbsd7.2/NetBSD-7.2-i386-boot.iso.txt | 33 -- - .../netbsd/netbsd7.2/NetBSD-7.2-i386.iso.txt | 33 -- - .../NetBSD-8.0-amd64-boot-com.iso.txt | 34 -- - .../netbsd8.0/NetBSD-8.0-amd64-boot.iso.txt | 34 -- - .../netbsd/netbsd8.0/NetBSD-8.0-amd64.iso.txt | 34 -- - .../NetBSD-8.0-i386-boot-com.iso.txt | 34 -- - .../netbsd8.0/NetBSD-8.0-i386-boot.iso.txt | 34 -- - .../netbsd/netbsd8.0/NetBSD-8.0-i386.iso.txt | 34 -- - .../openbsd/openbsd4.2/openbsd-4.2-amd64.txt | 29 -- - .../openbsd/openbsd4.2/openbsd-4.2-i386.txt | 29 -- - .../openbsd/openbsd4.3/openbsd-4.3-amd64.txt | 29 -- - .../openbsd/openbsd4.3/openbsd-4.3-i386.txt | 29 -- - .../openbsd/openbsd4.4/openbsd-4.4-amd64.txt | 29 -- - .../openbsd/openbsd4.4/openbsd-4.4-i386.txt | 29 -- - .../openbsd/openbsd4.5/openbsd-4.5-amd64.txt | 29 -- - .../openbsd/openbsd4.5/openbsd-4.5-i386.txt | 29 -- - .../openbsd/openbsd4.8/openbsd-4.8-amd64.txt | 29 -- - .../openbsd/openbsd4.8/openbsd-4.8-i386.txt | 29 -- - .../openbsd/openbsd4.9/openbsd-4.9-amd64.txt | 29 -- - .../openbsd/openbsd4.9/openbsd-4.9-i386.txt | 29 -- - .../openbsd/openbsd5.0/openbsd-5.0-amd64.txt | 29 -- - .../openbsd/openbsd5.0/openbsd-5.0-i386.txt | 29 -- - .../openbsd/openbsd5.1/openbsd-5.1-amd64.txt | 29 -- - .../openbsd/openbsd5.1/openbsd-5.1-i386.txt | 29 -- - .../openbsd/openbsd5.2/openbsd-5.2-amd64.txt | 29 -- - .../openbsd/openbsd5.2/openbsd-5.2-i386.txt | 29 -- - .../openbsd/openbsd5.3/openbsd-5.3-amd64.txt | 29 -- - .../openbsd/openbsd5.3/openbsd-5.3-i386.txt | 29 -- - .../openbsd/openbsd5.4/openbsd-5.4-amd64.txt | 33 -- - .../openbsd/openbsd5.4/openbsd-5.4-i386.txt | 33 -- - .../openbsd/openbsd5.5/openbsd-5.5-amd64.txt | 33 -- - .../openbsd/openbsd5.5/openbsd-5.5-i386.txt | 33 -- - .../openbsd/openbsd5.6/openbsd-5.6-amd64.txt | 33 -- - .../openbsd/openbsd5.6/openbsd-5.6-i386.txt | 33 -- - .../openbsd/openbsd5.7/openbsd-5.7-amd64.txt | 33 -- - .../openbsd/openbsd5.7/openbsd-5.7-i386.txt | 33 -- - .../openbsd/openbsd5.8/openbsd-5.8-amd64.txt | 33 -- - .../openbsd/openbsd5.8/openbsd-5.8-i386.txt | 33 -- - .../openbsd/openbsd5.9/openbsd-5.9-amd64.txt | 33 -- - .../openbsd/openbsd5.9/openbsd-5.9-i386.txt | 33 -- - .../openbsd/openbsd6.0/openbsd-6.0-amd64.txt | 33 -- - .../openbsd/openbsd6.0/openbsd-6.0-i386.txt | 33 -- - .../openbsd/openbsd6.1/openbsd-6.1-amd64.txt | 33 -- - .../openbsd/openbsd6.1/openbsd-6.1-i386.txt | 33 -- - .../openbsd/openbsd6.2/openbsd-6.2-amd64.txt | 33 -- - .../openbsd/openbsd6.2/openbsd-6.2-i386.txt | 33 -- - .../openbsd/openbsd6.3/openbsd-6.3-amd64.txt | 33 -- - .../openbsd/openbsd6.3/openbsd-6.3-i386.txt | 33 -- - .../openSUSE-12.2-DVD-i586.iso.txt | 29 -- - .../openSUSE-12.2-DVD-x86_64.iso.txt | 29 -- - .../openSUSE-12.3-DVD-i586.iso.txt | 29 -- - .../openSUSE-12.3-DVD-x86_64.iso.txt | 29 -- - .../openSUSE-13.1-GNOME-Live-i686.iso.txt | 29 -- - .../openSUSE-13.1-GNOME-Live-x86_64.iso.txt | 29 -- - .../openSUSE-13.1-KDE-Live-i686.iso.txt | 29 -- - .../openSUSE-13.1-KDE-Live-x86_64.iso.txt | 29 -- - .../openSUSE-13.2-DVD-i586.iso.txt | 29 -- - .../openSUSE-13.2-DVD-x86_64.iso.txt | 29 -- - .../openSUSE-Leap-15.0-DVD-x86_64.iso.txt | 29 -- - .../openSUSE-Leap-15.0-NET-x86_64.iso.txt | 29 -- - .../openSUSE-42.1-DVD-x86_64.iso.txt | 29 -- - .../openSUSE-Leap-42.2-DVD-x86_64.iso.txt | 29 -- - .../openSUSE-Leap-42.3-DVD-x86_64.iso.txt | 29 -- - .../openSUSE-Leap-42.3-NET-x86_64.iso.txt | 29 -- - ...enSUSE-Tumbleweed-DVD-i586-Current.iso.txt | 29 -- - ...SUSE-Tumbleweed-DVD-x86_64-Current.iso.txt | 29 -- - ...-DVD-x86_64-Snapshot20180420-Media.iso.txt | 29 -- - ...ed-NET-i586-Snapshot20180420-Media.iso.txt | 29 -- - ...weed-NET-x86_64-Snapshot20180420-Media.iso | 29 -- - .../popos17.10/pop-os_amd64_intel_57.iso.txt | 29 -- - .../popos17.10/pop-os_amd64_nvidia_46.iso.txt | 29 -- - .../pop-os_18.04_amd64_intel_32.iso.txt | 29 -- - .../pop-os_18.04_amd64_nvidia_32.iso.txt | 29 -- - .../pop-os_18.10_amd64_intel_3.iso.txt | 29 -- - .../pop-os_18.10_amd64_nvidia_3.iso.txt | 29 -- - ...0-gnome-live_20180904-amd64.hybrid.iso.txt | 29 -- - ...0-gnome-live_20181210-amd64.hybrid.iso.txt | 29 -- - ...0-gnome-live_20190128-amd64.hybrid.iso.txt | 29 -- - ...0-gnome-live_20190210-amd64.hybrid.iso.txt | 29 -- - ...L-Atomic-Host-Installer-7.0.0-Beta.iso.txt | 29 -- - ...rhel-atomic-installer-7.1-0.x86_64.iso.txt | 29 -- - ...rhel-atomic-installer-7.1-1.x86_64.iso.txt | 29 -- - ...hel-atomic-installer-7.2-10.x86_64.iso.txt | 29 -- - ...hel-atomic-installer-7.2-11.x86_64.iso.txt | 29 -- - ...hel-atomic-installer-7.2-12.x86_64.iso.txt | 29 -- - ...hel-atomic-installer-7.2-13.x86_64.iso.txt | 29 -- - ...el-atomic-installer-7.3.0-3.x86_64.iso.txt | 29 -- - ...el-atomic-installer-7.3.1-1.x86_64.iso.txt | 29 -- - ...el-atomic-installer-7.3.2-1.x86_64.iso.txt | 29 -- - ...el-atomic-installer-7.3.3-1.x86_64.iso.txt | 29 -- - ...el-atomic-installer-7.4.0-1.x86_64.iso.txt | 29 -- - .../rhel-server-5.10-i386-dvd.iso.txt | 29 -- - .../rhel-server-5.10-x86_64-dvd.iso.txt | 29 -- - .../rhel-server-5.11-x86_64-dvd.iso.txt | 29 -- - .../rhel-server-5.5-x86_64-dvd.iso.txt | 29 -- - .../rhel5.6/rhel-client-5.6-i386-dvd.iso.txt | 29 -- - .../rhel-client-5.6-x86_64-dvd1.iso.txt | 29 -- - .../rhel-client-5.6-x86_64-dvd2.iso.txt | 16 - - .../rhel5.6/rhel-server-5.6-i386-dvd.iso.txt | 29 -- - .../rhel-server-5.6-x86_64-dvd.iso.txt | 29 -- - .../rhel5.7/rhel-client-5.7-i386-dvd.iso.txt | 29 -- - .../rhel-client-5.7-x86_64-dvd1.iso.txt | 29 -- - .../rhel-client-5.7-x86_64-dvd2.iso.txt | 16 - - .../rhel5.7/rhel-server-5.7-i386-dvd.iso.txt | 29 -- - .../rhel-server-5.7-x86_64-dvd.iso.txt | 29 -- - .../rhel/rhel5.8/rhel-5.8-i386.iso.txt | 29 -- - .../rhel/rhel5.8/rhel-5.8-x86_64.iso.txt | 29 -- - .../rhel5.9/rhel-server-5.9-i386-dvd.iso.txt | 29 -- - .../rhel-server-5.9-x86_64-dvd.iso.txt | 29 -- - .../rhel6.0/rhel-server-6.0-i386-dvd.iso.txt | 29 -- - .../rhel-server-6.0-x86_64-boot.iso.txt | 29 -- - .../rhel-server-6.0-x86_64-dvd.iso.txt | 29 -- - .../rhel-workstation-6.0-i386-dvd.iso.txt | 29 -- - .../rhel-workstation-6.0-x86_64-dvd.iso.txt | 29 -- - .../rhel6.1/rhel-client-6.1-i386-dvd.iso.txt | 29 -- - .../rhel-client-6.1-x86_64-dvd.iso.txt | 29 -- - .../rhel6.1/rhel-server-6.1-i386-dvd.iso.txt | 29 -- - .../rhel-server-6.1-x86_64-dvd.iso.txt | 29 -- - .../rhel-workstation-6.1-i386-dvd.iso.txt | 29 -- - .../rhel-workstation-6.1-x86_64-dvd.iso.txt | 29 -- - ...L-6.10-20180525.0-Server-i386-dvd1.iso.txt | 29 -- - ...-6.10-20180525.0-Server-ppc64-dvd1.iso.txt | 16 - - ...-6.10-20180525.0-Server-s390x-dvd1.iso.txt | 16 - - ...6.10-20180525.0-Server-x86_64-dvd1.iso.txt | 29 -- - .../rhel6.2/rhel-client-6.2-i386-dvd.iso.txt | 29 -- - .../rhel-client-6.2-x86_64-dvd.iso.txt | 29 -- - .../rhel6.2/rhel-server-6.2-i386-dvd.iso.txt | 29 -- - .../rhel-server-6.2-x86_64-dvd.iso.txt | 29 -- - .../rhel-workstation-6.2-i386-dvd.iso.txt | 29 -- - .../rhel-workstation-6.2-x86_64-dvd.iso.txt | 29 -- - .../rhel6.3/rhel-server-6.3-i386-dvd.iso.txt | 29 -- - .../rhel-server-6.3-x86_64-dvd.iso.txt | 29 -- - .../rhel-workstation-6.3-i386-dvd.iso.txt | 29 -- - .../rhel-workstation-6.3-x86_64-dvd.iso.txt | 29 -- - .../rhel6.4/rhel-server-6.4-i386-dvd.iso.txt | 29 -- - .../rhel-server-6.4-x86_64-dvd.iso.txt | 29 -- - .../rhel-workstation-6.4-i386-dvd.iso.txt | 29 -- - .../rhel-workstation-6.4-x86_64-dvd.iso.txt | 29 -- - ...20131213.0-Workstation-x86_64-DVD1.iso.txt | 29 -- - .../rhel-server-6.6-x86_64-dvd.iso.txt | 29 -- - .../rhel6.7/rhel-server-6.7-i386-dvd.iso.txt | 29 -- - .../rhel-server-6.7-x86_64-dvd.iso.txt | 29 -- - .../rhel-server-6.8-x86_64-dvd.iso.txt | 29 -- - ...EL-6.9-20170309.0-Server-i386-dvd1.iso.txt | 29 -- - ...-6.9-20170309.0-Server-x86_64-dvd1.iso.txt | 29 -- - ...-7.0-20140507.0-Client-x86_64-dvd1.iso.txt | 29 -- - ...20140507.0-ComputeNode-x86_64-dvd1.iso.txt | 29 -- - ...-7.0-20140507.0-Server-x86_64-dvd1.iso.txt | 29 -- - ...20140507.0-Workstation-x86_64-dvd1.iso.txt | 29 -- - ...1.5-20141017.1-Server-aarch64-dvd1.iso.txt | 29 -- - ...-7.1-20150219.1-Client-x86_64-dvd1.iso.txt | 29 -- - ...-7.1-20150219.1-Server-x86_64-dvd1.iso.txt | 29 -- - ...20150219.1-Workstation-x86_64-dvd1.iso.txt | 29 -- - ...7.1-20150616.0-Server-aarch64-dvd1.iso.txt | 29 -- - .../rhel-computenode-7.2-x86_64-dvd.iso.txt | 29 -- - .../rhel-server-7.2-aarch64-dvd.iso.txt | 29 -- - .../rhel7.2/rhel-server-7.2-ppc64-dvd.iso.txt | 16 - - .../rhel-server-7.2-ppc64le-dvd.iso.txt | 16 - - .../rhel7.2/rhel-server-7.2-s390x-dvd.iso.txt | 16 - - .../rhel-server-7.2-x86_64-dvd.iso.txt | 29 -- - ...7.3-20161019.0-Server-aarch64-dvd1.iso.txt | 29 -- - ...L-7.3-20161019.0-Server-ppc64-dvd1.iso.txt | 16 - - ...7.3-20161019.0-Server-ppc64le-dvd1.iso.txt | 16 - - ...L-7.3-20161019.0-Server-s390x-dvd1.iso.txt | 16 - - ...-7.3-20161019.0-Server-x86_64-dvd1.iso.txt | 29 -- - ...7.4-20170711.0-Server-aarch64-dvd1.iso.txt | 29 -- - ...L-7.4-20170711.0-Server-ppc64-dvd1.iso.txt | 16 - - ...7.4-20170711.0-Server-ppc64le-dvd1.iso.txt | 16 - - ...L-7.4-20170711.0-Server-s390x-dvd1.iso.txt | 16 - - ...-7.4-20170711.0-Server-x86_64-dvd1.iso.txt | 29 -- - ...L-7.5-20180322.0-Server-ppc64-dvd1.iso.txt | 16 - - ...7.5-20180322.0-Server-ppc64le-dvd1.iso.txt | 16 - - ...L-7.5-20180322.0-Server-s390x-dvd1.iso.txt | 29 -- - ...-7.5-20180322.0-Server-x86_64-dvd1.iso.txt | 29 -- - ...L-7.6-20181010.0-Server-ppc64-boot.iso.txt | 16 - - ...L-7.6-20181010.0-Server-ppc64-dvd1.iso.txt | 16 - - ...7.6-20181010.0-Server-ppc64le-boot.iso.txt | 16 - - ...7.6-20181010.0-Server-ppc64le-dvd1.iso.txt | 16 - - ...L-7.6-20181010.0-Server-s390x-boot.iso.txt | 29 -- - ...L-7.6-20181010.0-Server-s390x-dvd1.iso.txt | 29 -- - ...-7.6-20181010.0-Server-x86_64-boot.iso.txt | 29 -- - ...-7.6-20181010.0-Server-x86_64-dvd1.iso.txt | 29 -- - ...20181010.0-Workstation-x86_64-boot.iso.txt | 29 -- - ...20181010.0-Workstation-x86_64-dvd1.iso.txt | 29 -- - .../RHEL-8.0-20181113.1-aarch64-boot.iso.txt | 29 -- - .../RHEL-8.0-20181113.1-aarch64-dvd1.iso.txt | 29 -- - .../RHEL-8.0-20181113.1-ppc64le-boot.iso.txt | 16 - - .../RHEL-8.0-20181113.1-ppc64le-dvd1.iso.txt | 16 - - .../RHEL-8.0-20181113.1-s390x-boot.iso.txt | 29 -- - .../RHEL-8.0-20181113.1-s390x-dvd1.iso.txt | 29 -- - .../RHEL-8.0-20181113.1-x86_64-boot.iso.txt | 29 -- - .../RHEL-8.0-20181113.1-x86_64-dvd1.iso.txt | 29 -- - .../SLED-11-SP1-DVD-i586-GM-DVD1.iso.txt | 29 -- - .../SLED-11-SP1-DVD-x86_64-GM-DVD1.iso.txt | 29 -- - .../SLED-11-SP2-DVD-i586-GM-DVD1.iso.txt | 29 -- - .../SLED-11-SP2-DVD-x86_64-GM-DVD1.iso.txt | 29 -- - .../SLED-11-SP3-DVD-i586-GM-DVD1.iso.txt | 29 -- - .../SLED-11-SP3-DVD-x86_64-GM-DVD1.iso.txt | 29 -- - .../SLED-11-SP4-DVD-i586-GM-DVD1.iso.txt | 29 -- - .../SLED-11-SP4-DVD-x86_64-GM-DVD1.iso.txt | 29 -- - .../SLE-12-Desktop-DVD-x86_64-GM-DVD1.iso.txt | 29 -- - ...-12-SP1-Desktop-DVD-x86_64-GM-DVD1.iso.txt | 29 -- - ...-12-SP2-Desktop-DVD-x86_64-GM-DVD1.iso.txt | 29 -- - ...-12-SP3-Desktop-DVD-x86_64-GM-DVD1.iso.txt | 29 -- - ...aS-Platform-1.0-DVD-x86_64-GM-DVD1.iso.txt | 29 -- - ...aS-Platform-2.0-DVD-x86_64-GM-DVD1.iso.txt | 29 -- - ...aS-Platform-3.0-DVD-x86_64-GM-DVD1.iso.txt | 29 -- - ...E-15-Installer-DVD-aarch64-GM-DVD1.iso.txt | 29 -- - ...E-15-Installer-DVD-ppc64le-GM-DVD1.iso.txt | 16 - - ...SLE-15-Installer-DVD-s390x-GM-DVD1.iso.txt | 29 -- - ...LE-15-Installer-DVD-x86_64-GM-DVD1.iso.txt | 29 -- - .../SLES-11-SP1-DVD-i586-GM-DVD1.iso.txt | 29 -- - .../SLES-11-SP1-DVD-x86_64-GM-DVD1.iso.txt | 29 -- - .../SLES-11-SP2-DVD-i586-GM-DVD1.iso.txt | 29 -- - .../SLES-11-SP2-DVD-x86_64-GM-DVD1.iso.txt | 29 -- - .../SLES-11-SP3-DVD-i586-GM-DVD1.iso.txt | 29 -- - .../SLES-11-SP3-DVD-x86_64-GM-DVD1.iso.txt | 29 -- - .../SLES-11-SP4-DVD-i586-GM-DVD1.iso.txt | 29 -- - .../SLES-11-SP4-DVD-x86_64-GM-DVD1.iso.txt | 29 -- - .../SLE-12-Server-DVD-x86_64-GM-DVD1.iso.txt | 29 -- - ...E-12-SP1-Server-DVD-x86_64-GM-DVD1.iso.txt | 29 -- - ...-12-SP2-Server-DVD-aarch64-GM-DVD1.iso.txt | 29 -- - ...-12-SP2-Server-DVD-ppc64le-GM-DVD1.iso.txt | 16 - - ...LE-12-SP2-Server-DVD-s390x-GM-DVD1.iso.txt | 29 -- - ...E-12-SP2-Server-DVD-x86_64-GM-DVD1.iso.txt | 29 -- - ...-12-SP3-Server-DVD-aarch64-GM-DVD1.iso.txt | 29 -- - ...-12-SP3-Server-DVD-ppc64le-GM-DVD1.iso.txt | 16 - - ...LE-12-SP3-Server-DVD-s390x-GM-DVD1.iso.txt | 29 -- - ...E-12-SP3-Server-DVD-x86_64-GM-DVD1.iso.txt | 29 -- - .../ubuntu-10.04.4-desktop-i386.iso.txt | 30 -- - .../ubuntu-11.04-desktop-amd64.iso.txt | 29 -- - .../ubuntu-11.10-desktop-amd64.iso.txt | 29 -- - .../ubuntu-11.10-desktop-i386.iso.txt | 29 -- - .../ubuntu-11.10-server-amd64.iso.txt | 29 -- - .../ubuntu-11.10-server-i386.iso.txt | 29 -- - .../ubuntu-12.04-alternate-amd64.iso.txt | 29 -- - .../ubuntu-12.04-alternate-i386.iso.txt | 29 -- - .../ubuntu-12.04-desktop-amd64.iso.txt | 29 -- - .../ubuntu-12.04-desktop-i386.iso.txt | 29 -- - .../ubuntu-12.04-server-amd64.iso.txt | 29 -- - .../ubuntu-12.04-server-i386.iso.txt | 29 -- - .../ubuntu-12.10-desktop-amd64+mac.iso.txt | 29 -- - .../ubuntu-12.10-desktop-amd64.iso.txt | 29 -- - .../ubuntu-12.10-desktop-i386.iso.txt | 29 -- - .../ubuntu-12.10-server-amd64+mac.iso.txt | 29 -- - .../ubuntu-12.10-server-amd64.iso.txt | 29 -- - .../ubuntu-12.10-server-i386.iso.txt | 29 -- - ...untu-13.04-beta2-desktop-amd64+mac.iso.txt | 29 -- - .../ubuntu-13.04-beta2-desktop-amd64.iso.txt | 29 -- - .../ubuntu-13.04-beta2-desktop-i386.iso.txt | 29 -- - ...buntu-13.04-beta2-server-amd64+mac.iso.txt | 29 -- - .../ubuntu-13.04-beta2-server-amd64.iso.txt | 29 -- - .../ubuntu-13.04-beta2-server-i386.iso.txt | 29 -- - .../ubuntu-13.10-desktop-amd64.iso.txt | 29 -- - .../ubuntu-13.10-desktop-i386.iso.txt | 29 -- - .../ubuntu-13.10-server-amd64.iso.txt | 29 -- - .../ubuntu-13.10-server-i386.iso.txt | 29 -- - .../ubuntu-14.04.1-desktop-amd64.iso.txt | 29 -- - .../ubuntu-14.04.1-desktop-i386.iso.txt | 29 -- - .../ubuntu-14.04.1-server-amd64.iso.txt | 29 -- - .../ubuntu-14.04.1-server-i386.iso.txt | 29 -- - .../ubuntu-14.10-desktop-amd64.iso.txt | 29 -- - .../ubuntu-14.10-desktop-i386.iso.txt | 29 -- - .../ubuntu-14.10-server-amd64.iso.txt | 29 -- - .../ubuntu-14.10-server-i386.iso.txt | 29 -- - .../ubuntu-15.04-desktop-amd64.iso.txt | 29 -- - .../ubuntu-15.04-desktop-i386.iso.txt | 29 -- - .../ubuntu-15.04-server-amd64.iso.txt | 29 -- - .../ubuntu-15.04-server-i386.iso.txt | 29 -- - .../ubuntu-15.10-desktop-amd64.iso.txt | 29 -- - .../ubuntu-15.10-desktop-i386.iso.txt | 29 -- - .../ubuntu-15.10-server-amd64.iso.txt | 29 -- - .../ubuntu-15.10-server-i386.iso.txt | 29 -- - .../ubuntu-16.04-desktop-amd64.iso.txt | 29 -- - .../ubuntu-16.04-desktop-i386.iso.txt | 29 -- - .../ubuntu-16.04-server-amd64.iso.txt | 29 -- - .../ubuntu-16.04-server-i386.iso.txt | 29 -- - .../ubuntu-16.04-server-powerpc.iso.txt | 17 - - .../ubuntu-16.04-server-ppc64el.iso.txt | 17 - - .../ubuntu-16.04-server-s390x.iso.txt | 29 -- - .../ubuntu-16.10-desktop-amd64.iso.txt | 29 -- - .../ubuntu-16.10-desktop-i386.iso.txt | 29 -- - .../ubuntu-16.10-server-amd64.iso.txt | 29 -- - .../ubuntu-16.10-server-arm64.iso.txt | 29 -- - .../ubuntu-16.10-server-i386.iso.txt | 29 -- - .../ubuntu-16.10-server-powerpc.iso.txt | 17 - - .../ubuntu-16.10-server-ppc64el.iso.txt | 17 - - .../ubuntu-16.10-server-s390x.iso.txt | 29 -- - .../ubuntu-17.04-desktop-amd64.iso.txt | 29 -- - .../ubuntu-17.04-desktop-i386.iso.txt | 29 -- - .../ubuntu-17.04-server-amd64.iso.txt | 29 -- - .../ubuntu-17.04-server-arm64.iso.txt | 29 -- - .../ubuntu-17.04-server-i386.iso.txt | 29 -- - .../ubuntu-17.04-server-ppc64el.iso.txt | 17 - - .../ubuntu-17.04-server-s390x.iso.txt | 29 -- - .../ubuntu-17.10-desktop-amd64.iso.txt | 29 -- - .../ubuntu-17.10-server-amd64.iso.txt | 29 -- - .../ubuntu-17.10-server-arm64.iso.txt | 29 -- - .../ubuntu-17.10-server-i386.iso.txt | 29 -- - .../ubuntu-17.10-server-ppc64el.iso.txt | 17 - - .../ubuntu-17.10-server-s390x.iso.txt | 29 -- - .../ubuntu-18.04-desktop-amd64.iso.txt | 29 -- - .../ubuntu-18.04-server-amd64.iso.txt | 29 -- - .../ubuntu-18.04-server-arm64.iso.txt | 29 -- - .../ubuntu-18.04-server-ppc64el.iso.txt | 17 - - .../ubuntu-18.04-server-s390x.iso.txt | 29 -- - .../ubuntu-18.04.1-desktop-amd64.iso.txt | 29 -- - ...ubuntu-18.04.1.0-live-server-amd64.iso.txt | 29 -- - .../ubuntu18.10/cosmic-desktop-amd64.iso.txt | 29 -- - .../cosmic-live-server-amd64.iso.txt | 29 -- - .../ubuntu18.10/cosmic-server-amd64.iso.txt | 29 -- - .../ubuntu18.10/cosmic-server-arm64.iso.txt | 29 -- - .../ubuntu18.10/cosmic-server-ppc64el.iso.txt | 17 - - .../ubuntu18.10/cosmic-server-s390x.iso.txt | 29 -- - .../ubuntu19.04/disco-desktop-amd64.iso.txt | 29 -- - .../ubuntu19.04/disco-server-amd64.iso.txt | 29 -- - .../ubuntu19.04/disco-server-arm64.iso.txt | 29 -- - .../ubuntu19.04/disco-server-ppc64el.iso.txt | 17 - - .../ubuntu19.04/disco-server-s390x.iso.txt | 29 -- - .../ubuntu-5.04-install-amd64.iso.txt | 29 -- - .../ubuntu-5.04-install-i386.iso.txt | 29 -- - .../ubuntu-5.04-install-powerpc.iso.txt | 16 - - .../ubuntu5.04/ubuntu-5.04-live-amd64.iso.txt | 29 -- - .../ubuntu5.04/ubuntu-5.04-live-i386.iso.txt | 29 -- - .../ubuntu-5.04-live-powerpc.iso.txt | 16 - - .../ubuntu5.10/ubuntu-5.10-dvd-amd64.iso.txt | 29 -- - .../ubuntu5.10/ubuntu-5.10-dvd-i386.iso.txt | 29 -- - .../ubuntu-5.10-dvd-powerpc.iso.txt | 16 - - .../ubuntu-5.10-install-amd64.iso.txt | 29 -- - .../ubuntu-5.10-install-i386.iso.txt | 29 -- - .../ubuntu-5.10-install-powerpc.iso.txt | 16 - - .../ubuntu5.10/ubuntu-5.10-live-amd64.iso.txt | 29 -- - .../ubuntu5.10/ubuntu-5.10-live-i386.iso.txt | 29 -- - .../ubuntu-5.10-live-powerpc.iso.txt | 16 - - .../ubuntu-6.06-alternate-amd64.iso.txt | 29 -- - .../ubuntu-6.06-alternate-hppa.iso.txt | 16 - - .../ubuntu-6.06-alternate-i386.iso.txt | 29 -- - .../ubuntu-6.06-alternate-ia64.iso.txt | 29 -- - .../ubuntu-6.06-alternate-powerpc.iso.txt | 16 - - .../ubuntu-6.06-desktop-amd64.iso.txt | 29 -- - .../ubuntu-6.06-desktop-i386.iso.txt | 29 -- - .../ubuntu-6.06-desktop-powerpc.iso.txt | 16 - - .../ubuntu6.06/ubuntu-6.06-dvd-amd64.iso.txt | 29 -- - .../ubuntu6.06/ubuntu-6.06-dvd-i386.iso.txt | 29 -- - .../ubuntu-6.06-dvd-powerpc.iso.txt | 16 - - .../ubuntu-6.06-server-amd64.iso.txt | 29 -- - .../ubuntu-6.06-server-hppa.iso.txt | 16 - - .../ubuntu-6.06-server-i386.iso.txt | 29 -- - .../ubuntu-6.06-server-ia64.iso.txt | 29 -- - .../ubuntu-6.06-server-powerpc.iso.txt | 16 - - .../ubuntu-6.06-server-sparc.iso.txt | 16 - - .../ubuntu-6.06.1-alternate-amd64.iso.txt | 29 -- - .../ubuntu-6.06.1-alternate-hppa.iso.txt | 16 - - .../ubuntu-6.06.1-alternate-i386.iso.txt | 29 -- - .../ubuntu-6.06.1-alternate-ia64.iso.txt | 29 -- - .../ubuntu-6.06.1-alternate-powerpc.iso.txt | 16 - - .../ubuntu-6.06.1-desktop-amd64.iso.txt | 29 -- - .../ubuntu-6.06.1-desktop-i386.iso.txt | 29 -- - .../ubuntu-6.06.1-desktop-powerpc.iso.txt | 16 - - .../ubuntu-6.06.1-dvd-amd64.iso.txt | 29 -- - .../ubuntu6.06/ubuntu-6.06.1-dvd-i386.iso.txt | 29 -- - .../ubuntu-6.06.1-dvd-powerpc.iso.txt | 16 - - .../ubuntu-6.06.1-server-amd64.iso.txt | 29 -- - .../ubuntu-6.06.1-server-hppa.iso.txt | 16 - - .../ubuntu-6.06.1-server-i386.iso.txt | 29 -- - .../ubuntu-6.06.1-server-ia64.iso.txt | 29 -- - .../ubuntu-6.06.1-server-powerpc.iso.txt | 16 - - .../ubuntu-6.06.1-server-sparc.iso.txt | 16 - - .../ubuntu-6.06.2-server-amd64.iso.txt | 29 -- - .../ubuntu-6.06.2-server-i386.iso.txt | 29 -- - .../ubuntu-6.06.2-server-powerpc.iso.txt | 16 - - .../ubuntu-6.06.2-server-sparc.iso.txt | 16 - - .../ubuntu-6.10-alternate-amd64.iso.txt | 29 -- - .../ubuntu-6.10-alternate-i386.iso.txt | 29 -- - .../ubuntu-6.10-alternate-powerpc.iso.txt | 16 - - .../ubuntu-6.10-desktop-amd64.iso.txt | 29 -- - .../ubuntu-6.10-desktop-i386.iso.txt | 29 -- - .../ubuntu-6.10-desktop-powerpc.iso.txt | 16 - - .../ubuntu-6.10-server-amd64.iso.txt | 29 -- - .../ubuntu-6.10-server-i386.iso.txt | 29 -- - .../ubuntu-6.10-server-powerpc.iso.txt | 16 - - .../ubuntu-6.10-server-sparc.iso.txt | 16 - - .../ubuntu-7.04-alternate-amd64.iso.txt | 29 -- - .../ubuntu-7.04-alternate-i386.iso.txt | 29 -- - .../ubuntu-7.04-desktop-amd64.iso.txt | 29 -- - .../ubuntu-7.04-desktop-i386.iso.txt | 29 -- - .../ubuntu-7.04-server-amd64.iso.txt | 29 -- - .../ubuntu-7.04-server-i386.iso.txt | 29 -- - .../ubuntu-7.04-server-sparc.iso.txt | 16 - - .../ubuntu-7.10-alternate-amd64.iso.txt | 29 -- - .../ubuntu-7.10-alternate-i386.iso.txt | 29 -- - .../ubuntu-7.10-desktop-amd64.iso.txt | 29 -- - .../ubuntu-7.10-desktop-i386.iso.txt | 29 -- - .../ubuntu-7.10-server-amd64.iso.txt | 29 -- - .../ubuntu-7.10-server-i386.iso.txt | 29 -- - .../ubuntu-7.10-server-sparc.iso.txt | 16 - - .../ubuntu-8.04-alternate-amd64.iso.txt | 29 -- - .../ubuntu-8.04-alternate-i386.iso.txt | 29 -- - .../ubuntu-8.04-desktop-amd64.iso.txt | 29 -- - .../ubuntu-8.04-desktop-i386.iso.txt | 29 -- - .../ubuntu8.04/ubuntu-8.04-dvd-amd64.iso.txt | 29 -- - .../ubuntu8.04/ubuntu-8.04-dvd-i386.iso.txt | 29 -- - .../ubuntu-8.04-server-amd64.iso.txt | 29 -- - .../ubuntu-8.04-server-i386.iso.txt | 29 -- - .../ubuntu-8.04.1-alternate-amd64.iso.txt | 29 -- - .../ubuntu-8.04.1-alternate-i386.iso.txt | 29 -- - .../ubuntu-8.04.1-desktop-amd64.iso.txt | 29 -- - .../ubuntu-8.04.1-desktop-i386.iso.txt | 29 -- - .../ubuntu-8.04.1-server-amd64.iso.txt | 29 -- - .../ubuntu-8.04.1-server-i386.iso.txt | 29 -- - .../ubuntu-8.04.2-alternate-amd64.iso.txt | 29 -- - .../ubuntu-8.04.2-alternate-i386.iso.txt | 29 -- - .../ubuntu-8.04.2-desktop-amd64.iso.txt | 29 -- - .../ubuntu-8.04.2-desktop-i386.iso.txt | 29 -- - .../ubuntu-8.04.2-server-amd64.iso.txt | 29 -- - .../ubuntu-8.04.2-server-i386.iso.txt | 29 -- - .../ubuntu-8.04.3-alternate-amd64.iso.txt | 29 -- - .../ubuntu-8.04.3-alternate-i386.iso.txt | 29 -- - .../ubuntu-8.04.3-desktop-amd64.iso.txt | 29 -- - .../ubuntu-8.04.3-desktop-i386.iso.txt | 29 -- - .../ubuntu-8.04.3-server-amd64.iso.txt | 29 -- - .../ubuntu-8.04.3-server-i386.iso.txt | 29 -- - .../ubuntu-8.04.4-alternate-amd64.iso.txt | 29 -- - .../ubuntu-8.04.4-alternate-i386.iso.txt | 29 -- - .../ubuntu-8.04.4-desktop-amd64.iso.txt | 29 -- - .../ubuntu-8.04.4-desktop-i386.iso.txt | 29 -- - .../ubuntu-8.04.4-server-amd64.iso.txt | 29 -- - .../ubuntu-8.04.4-server-i386.iso.txt | 29 -- - .../ubuntu-8.10-alternate-amd64.iso.txt | 29 -- - .../ubuntu-8.10-alternate-i386.iso.txt | 29 -- - .../ubuntu-8.10-desktop-amd64.iso.txt | 29 -- - .../ubuntu-8.10-desktop-i386.iso.txt | 29 -- - .../ubuntu-8.10-server-amd64.iso.txt | 16 - - .../ubuntu-9.04-desktop-i386.iso.txt | 29 -- - .../ubuntu-9.04-server-i386.iso.txt | 29 -- - .../voidlinux/void-live-i686-20181111.iso.txt | 29 -- - .../void-live-x86_64-20181111.iso.txt | 29 -- - ...IENTENTERPRISE_S_EVAL_X64FRE_EN-US.ISO.txt | 29 -- - ...IENTENTERPRISE_S_EVAL_X86FRE_EN-GB.ISO.txt | 29 -- - ...1_updated_apr_2016_x64_dvd_8705540.iso.txt | 29 -- - ...7_updated_jul_2016_x86_dvd_9055560.iso.txt | 29 -- - ...ows_10_education_n_x64_dvd_6847236.iso.txt | 29 -- - ...ndows_10_education_x86_dvd_6848121.iso.txt | 29 -- - ...rprise_2015_ltsb_n_x64_dvd_6848316.iso.txt | 29 -- - ...terprise_2015_ltsb_x64_dvd_6848446.iso.txt | 29 -- - ...ws_10_enterprise_n_x64_dvd_6852541.iso.txt | 29 -- - ...dows_10_enterprise_x64_dvd_6851151.iso.txt | 29 -- - ...dows_10_enterprise_x86_dvd_6851156.iso.txt | 30 -- - ...pdated_sept_2017_x64_dvd_100090817.iso.txt | 29 -- - ..._multiple_editions_x64_dvd_6846432.iso.txt | 29 -- - ...7_updated_jul_2016_x64_dvd_9053861.iso.txt | 29 -- - ..._multiple_editions_x64_dvd_6846434.iso.txt | 29 -- - ...7_updated_jul_2016_x86_dvd_9057460.iso.txt | 29 -- - .../windows/win2k/Win2000S-disk.iso.txt | 29 -- - ...debug_checked_build_x64_dvd_917521.iso.txt | 29 -- - ...hyper-v_server_2012_x64_dvd_915600.iso.txt | 29 -- - ...er_2012_essentials_x64_dvd_1022281.iso.txt | 29 -- - ...debug_checked_build_x64_dvd_917505.iso.txt | 29 -- - ...rver_and_foundation_x64_dvd_915793.iso.txt | 29 -- - ...dows_server_2012_vl_x64_dvd_917758.iso.txt | 29 -- - ...windows_server_2012_x64_dvd_915478.iso.txt | 29 -- - ...2_r2_debug_checked_x64_dvd_2708216.iso.txt | 29 -- - ...r-v_server_2012_r2_x64_dvd_2708236.iso.txt | 29 -- - ...2_r2_debug_checked_x64_dvd_2707937.iso.txt | 29 -- - ...ials_debug_checked_x64_dvd_2707170.iso.txt | 29 -- - ...ntials_with_update_x64_dvd_6052824.iso.txt | 29 -- - ...2012_r2_essentials_x64_dvd_2707177.iso.txt | 29 -- - ..._r2_vl_with_update_x64_dvd_6052766.iso.txt | 29 -- - ..._server_2012_r2_vl_x64_dvd_3319595.iso.txt | 29 -- - ...012_r2_with_update_x64_dvd_4065220.iso.txt | 29 -- - ...012_r2_with_update_x64_dvd_6052708.iso.txt | 29 -- - ...ows_server_2012_r2_x64_dvd_2707946.iso.txt | 29 -- - ...2012_r2_foundation_x64_dvd_2708426.iso.txt | 29 -- - ...H_SERVERHYPERCORE_OEM_X64FRE_EN-US.ISO.txt | 29 -- - ...indows_server_2016_x64_dvd_9718492.iso.txt | 29 -- - ...windows_server_2003_enterprise_x64.iso.txt | 31 -- - ...en_windows_server_2003_sp2_ia64_cd.iso.txt | 17 - - .../en_windows_server_2003_sp2_x64_cd.iso.txt | 17 - - .../en_windows_server_2003_sp2_x86_cd.iso.txt | 17 - - .../en_windows_server_2003_standard.iso.txt | 29 -- - ...n_windows_server_2003_standard_x64.iso.txt | 29 -- - ...ws_server_2003_with_sp1_enterprise.iso.txt | 31 -- - ...dows_server_2003_with_sp1_standard.iso.txt | 31 -- - .../en_win_srv_2003_r2_enterprise_cd1.iso.txt | 31 -- - .../en_win_srv_2003_r2_enterprise_cd2.iso.txt | 17 - - ..._enterprise_with_sp2_cd1_X13-05460.iso.txt | 29 -- - ..._enterprise_with_sp2_cd2_X13-68584.iso.txt | 16 - - ...win_srv_2003_r2_enterprise_x64_cd1.iso.txt | 31 -- - ...win_srv_2003_r2_enterprise_x64_cd2.iso.txt | 17 - - ...erprise_x64_with_sp2_cd1_X13-06188.iso.txt | 29 -- - ...erprise_x64_with_sp2_cd2_X13-68588.iso.txt | 16 - - .../en_win_srv_2003_r2_standard_cd1.iso.txt | 29 -- - .../en_win_srv_2003_r2_standard_cd2.iso.txt | 16 - - ...r2_standard_with_sp2_cd1_x13-04790.iso.txt | 31 -- - ...r2_standard_with_sp2_cd2_x13-68583.iso.txt | 17 - - ...n_win_srv_2003_r2_standard_x64_cd1.iso.txt | 29 -- - ...n_win_srv_2003_r2_standard_x64_cd2.iso.txt | 16 - - ...tandard_x64_with_sp2_cd1_x13-05757.iso.txt | 31 -- - ...tandard_x64_with_sp2_cd2_x13-68587.iso.txt | 17 - - ...d_sp2_checked_build_x64_dvd_342435.iso.txt | 29 -- - ...rprise_standard_sp2_x64_dvd_342336.iso.txt | 29 -- - ...rprise_standard_sp2_x86_dvd_342333.iso.txt | 29 -- - ...erprise_standard_x64_dvd_X14-26714.iso.txt | 31 -- - ...erprise_standard_x86_dvd_X14-26710.iso.txt | 31 -- - ...erver_2008_with_sp2_x64_dvd_342336.iso.txt | 31 -- - ...erver_2008_with_sp2_x86_dvd_342333.iso.txt | 31 -- - ..._web_server_2008_x64_dvd_X14-26683.iso.txt | 31 -- - ..._web_server_2008_x86_dvd_X14-26678.iso.txt | 31 -- - ...st_ent_dc_web_retail_x64_X15-50363.img.txt | 31 -- - ...with_service_pack_1_x64_dvd_700562.iso.txt | 29 -- - ..._server_2008_r2_hpc_x64_dvd_552761.iso.txt | 31 -- - ...er_and_web_with_sp1_x64_dvd_617601.iso.txt | 29 -- - ...tacenter_and_web_x64_dvd_x15-59754.iso.txt | 29 -- - ...web_retail_build_x64_dvd_x15-50365.iso.txt | 29 -- - ...nium_based_systems_ia64_dvd_617558.iso.txt | 31 -- - ...er_2008_r2_with_sp1_x64_dvd_617601.iso.txt | 31 -- - ...s_server_2008_r2_x64_dvd_x15-50365.iso.txt | 29 -- - ...st_ent_dc_web_retail_x64_X15-50365.img.txt | 31 -- - tests/isodata/windows/win7/Win7ProX86.iso.txt | 29 -- - ...essional_with_sp1_x64_dvd_u_676956.iso.lng | 2 - - ...essional_with_sp1_x64_dvd_u_676956.iso.txt | 31 -- - ...essional_with_sp1_x86_dvd_u_677077.iso.lng | 2 - - ...essional_with_sp1_x86_dvd_u_677077.iso.txt | 31 -- - ...debug_checked_build_dvd_x64_398741.iso.txt | 29 -- - ...debug_checked_build_dvd_x86_398742.iso.txt | 29 -- - ...rprise_n_with_sp1_x64_dvd_u_677704.iso.lng | 2 - - ...rprise_n_with_sp1_x64_dvd_u_677704.iso.txt | 29 -- - ...rprise_n_with_sp1_x86_dvd_u_677703.iso.txt | 29 -- - ...s_7_enterprise_n_x64_dvd_x16-11943.iso.lng | 2 - - ...s_7_enterprise_n_x64_dvd_x16-11943.iso.txt | 29 -- - ...s_7_enterprise_n_x86_dvd_x16-11935.iso.lng | 2 - - ...s_7_enterprise_n_x86_dvd_x16-11935.iso.txt | 29 -- - ...terprise_with_sp1_x64_dvd_u_677651.iso.txt | 29 -- - ...terprise_with_sp1_x86_dvd_u_677710.iso.txt | 29 -- - ...ows_7_enterprise_x64_dvd_x15-70749.iso.lng | 2 - - ...ows_7_enterprise_x64_dvd_x15-70749.iso.txt | 29 -- - ...ows_7_enterprise_x86_dvd_x15-70745.iso.lng | 2 - - ...ows_7_enterprise_x86_dvd_x15-70745.iso.txt | 29 -- - ...me_basic_with_sp1_x86_dvd_u_676470.iso.txt | 29 -- - ...ows_7_home_basic_x86_dvd_x15-65654.iso.txt | 29 -- - ...remium_n_with_sp1_x64_dvd_u_676825.iso.txt | 29 -- - ...remium_n_with_sp1_x86_dvd_u_676913.iso.txt | 29 -- - ...7_home_premium_n_x64_dvd_x16-13459.iso.txt | 29 -- - ...7_home_premium_n_x86_dvd_x16-13457.iso.txt | 29 -- - ..._premium_with_sp1_x64_dvd_u_676549.iso.txt | 29 -- - ..._premium_with_sp1_x86_dvd_u_676701.iso.txt | 29 -- - ...s_7_home_premium_x64_dvd_x15-65733.iso.txt | 29 -- - ...s_7_home_premium_x86_dvd_x15-65732.iso.txt | 29 -- - ...sional_n_with_sp1_x64_dvd_u_677207.iso.txt | 29 -- - ...sional_n_with_sp1_x86_dvd_u_677328.iso.lng | 2 - - ...sional_n_with_sp1_x86_dvd_u_677328.iso.txt | 29 -- - ...7_professional_n_x64_dvd_x16-13550.iso.txt | 29 -- - ...7_professional_n_x86_dvd_x16-13548.iso.txt | 29 -- - ...ssional_vl_build_x64_dvd_x15-71037.iso.txt | 29 -- - ...ssional_vl_build_x86_dvd_x15-71033.iso.txt | 29 -- - ...with_sp1_vl_build_x64_dvd_u_677791.iso.txt | 29 -- - ...with_sp1_vl_build_x86_dvd_u_677896.iso.txt | 29 -- - ...essional_with_sp1_x64_dvd_u_676939.iso.lng | 2 - - ...essional_with_sp1_x64_dvd_u_676939.iso.txt | 29 -- - ...essional_with_sp1_x86_dvd_u_677056.iso.lng | 2 - - ...essional_with_sp1_x86_dvd_u_677056.iso.txt | 29 -- - ...s_7_professional_x86_dvd_x15-65804.iso.txt | 29 -- - ...tarter_n_with_sp1_x86_dvd_u_678339.iso.txt | 29 -- - ...dows_7_starter_n_x86_dvd_x16-15928.iso.txt | 29 -- - ..._starter_with_sp1_x86_dvd_u_678562.iso.txt | 29 -- - ...indows_7_starter_x86_dvd_x15-68956.iso.txt | 29 -- - ...timate_n_with_sp1_x64_dvd_u_677543.iso.txt | 29 -- - ...timate_n_with_sp1_x86_dvd_u_677597.iso.lng | 2 - - ...timate_n_with_sp1_x86_dvd_u_677597.iso.txt | 30 -- - ...ows_7_ultimate_n_x64_dvd_x16-13641.iso.txt | 29 -- - ...ows_7_ultimate_n_x86_dvd_x16-13640.iso.txt | 29 -- - ...ultimate_with_sp1_x64_dvd_u_677332.iso.txt | 29 -- - ...ultimate_with_sp1_x86_dvd_u_677460.iso.txt | 29 -- - ...windows_7_ultimate_x64_dvd_unknown.iso.txt | 29 -- - .../en_windows_7_ultimate_x64_dvd_unknown.lng | 2 - - ...ndows_7_ultimate_x64_dvd_x15-65922.iso.lng | 2 - - ...ndows_7_ultimate_x64_dvd_x15-65922.iso.txt | 29 -- - ...windows_7_ultimate_x86_dvd_unknown.iso.txt | 29 -- - .../en_windows_7_ultimate_x86_dvd_unknown.lng | 2 - - ...ndows_7_ultimate_x86_dvd_x15-65921.iso.lng | 2 - - ...ndows_7_ultimate_x86_dvd_x15-65921.iso.txt | 29 -- - ...debug_checked_build_x64_dvd_619601.iso.txt | 29 -- - ...debug_checked_build_x86_dvd_619602.iso.txt | 29 -- - ...with_sp1_vl_build_x64_dvd_u_677808.iso.lng | 2 - - ...with_sp1_vl_build_x64_dvd_u_677808.iso.txt | 29 -- - ...with_sp1_vl_build_x86_dvd_u_677759.iso.lng | 2 - - ...with_sp1_vl_build_x86_dvd_u_677759.iso.txt | 29 -- - ...remium_n_with_sp1_x64_dvd_u_676833.iso.lng | 2 - - ...remium_n_with_sp1_x64_dvd_u_676833.iso.txt | 29 -- - ...terprise_with_sp1_x64_dvd_u_677671.iso.lng | 2 - - ...terprise_with_sp1_x64_dvd_u_677671.iso.txt | 29 -- - ...ultimate_with_sp1_x86_dvd_u_677463.iso.lng | 2 - - ...ultimate_with_sp1_x86_dvd_u_677463.iso.txt | 29 -- - ...rprise_with_update_x86_dvd_4050369.iso.txt | 29 -- - ...s_8_1_enterprise_n_x64_dvd_2971847.iso.txt | 29 -- - ...s_8_1_enterprise_n_x86_dvd_2971852.iso.txt | 29 -- - ...ows_8_1_enterprise_x64_dvd_2971910.iso.txt | 29 -- - ...ows_8_1_enterprise_x86_dvd_2972291.iso.txt | 29 -- - ...n-gb_windows_8_1_n_x64_dvd_2707898.iso.txt | 29 -- - ...n-gb_windows_8_1_n_x86_dvd_2707897.iso.txt | 29 -- - ...ndows_8_1_pro_n_vl_x64_dvd_2971976.iso.txt | 29 -- - ...ndows_8_1_pro_n_vl_x86_dvd_2972710.iso.txt | 29 -- - ...windows_8_1_pro_vl_x64_dvd_2971955.iso.txt | 29 -- - ...windows_8_1_pro_vl_x86_dvd_2972634.iso.txt | 29 -- - .../en-gb_windows_8_1_x64_dvd_2707421.iso.txt | 29 -- - .../en-gb_windows_8_1_x86_dvd_2707543.iso.txt | 29 -- - ...rise_n_with_update_x64_dvd_4065163.iso.txt | 29 -- - ...rise_n_with_update_x64_dvd_6050225.iso.txt | 29 -- - ...rprise_with_update_x64_dvd_6054382.iso.txt | 30 -- - ..._8.1_n_with_update_x64_dvd_6051677.iso.txt | 29 -- - ..._8.1_n_with_update_x86_dvd_6051704.iso.txt | 30 -- - ...o_n_vl_with_update_x64_dvd_6050969.iso.txt | 29 -- - ...o_n_vl_with_update_x86_dvd_6051127.iso.txt | 29 -- - ...pro_vl_with_update_x64_dvd_6050880.iso.txt | 29 -- - ...pro_vl_with_update_x86_dvd_6050918.iso.txt | 29 -- - ...ws_8.1_with_update_x64_dvd_6051480.iso.txt | 29 -- - ..._8_1_debug_checked_x64_dvd_2707208.iso.txt | 29 -- - ..._8_1_debug_checked_x86_dvd_2707387.iso.txt | 29 -- - ...rise_debug_checked_x64_dvd_2756358.iso.txt | 29 -- - ...rise_debug_checked_x86_dvd_2756359.iso.txt | 29 -- - ...se_n_debug_checked_x64_dvd_2942525.iso.txt | 29 -- - ...se_n_debug_checked_x86_dvd_2942527.iso.txt | 29 -- - ...s_8_1_enterprise_n_x64_dvd_2791038.iso.txt | 29 -- - ...s_8_1_enterprise_n_x64_dvd_2971845.iso.txt | 29 -- - ...s_8_1_enterprise_n_x86_dvd_2791297.iso.txt | 29 -- - ...s_8_1_enterprise_n_x86_dvd_2971850.iso.txt | 29 -- - ...ows_8_1_enterprise_x64_dvd_2791088.iso.txt | 29 -- - ...ows_8_1_enterprise_x64_dvd_2971902.iso.txt | 29 -- - ...ows_8_1_enterprise_x86_dvd_2791510.iso.txt | 29 -- - ...ows_8_1_enterprise_x86_dvd_2972289.iso.txt | 29 -- - ..._1_n_debug_checked_x64_dvd_2707894.iso.txt | 29 -- - ..._1_n_debug_checked_x86_dvd_2707893.iso.txt | 29 -- - ..._8_1_n_with_update_x64_dvd_4065114.iso.txt | 29 -- - .../en_windows_8_1_n_x64_dvd_2707896.iso.txt | 29 -- - .../en_windows_8_1_n_x86_dvd_2707895.iso.txt | 29 -- - ...ndows_8_1_pro_n_vl_x64_dvd_2791264.iso.txt | 29 -- - ...ndows_8_1_pro_n_vl_x64_dvd_2971969.iso.txt | 29 -- - ...ndows_8_1_pro_n_vl_x86_dvd_2791509.iso.txt | 29 -- - ...ndows_8_1_pro_n_vl_x86_dvd_2972709.iso.txt | 29 -- - ...windows_8_1_pro_vl_x64_dvd_2791292.iso.txt | 29 -- - ...windows_8_1_pro_vl_x64_dvd_2971948.iso.txt | 29 -- - ...windows_8_1_pro_vl_x86_dvd_2791634.iso.txt | 29 -- - ...windows_8_1_pro_vl_x86_dvd_2972633.iso.txt | 29 -- - .../en_windows_8_1_x64_dvd_2707217.iso.txt | 29 -- - .../en_windows_8_1_x86_dvd_2707392.iso.txt | 29 -- - ...ows8-ConsumerPreview-32bit-English.iso.lng | 2 - - ...ows8-ConsumerPreview-32bit-English.iso.txt | 29 -- - ...ows8-ConsumerPreview-64bit-English.iso.lng | 2 - - ...ows8-ConsumerPreview-64bit-English.iso.txt | 29 -- - ...dows_8_enterprise_n_x64_dvd_917975.iso.lng | 2 - - ...dows_8_enterprise_n_x64_dvd_917975.iso.txt | 29 -- - ...dows_8_enterprise_n_x64_dvd_918053.iso.txt | 29 -- - ...dows_8_enterprise_n_x86_dvd_918708.iso.txt | 29 -- - ...indows_8_enterprise_x64_dvd_922086.iso.txt | 29 -- - ...indows_8_enterprise_x86_dvd_917588.iso.txt | 29 -- - .../en-gb_windows_8_n_x64_dvd_915799.iso.txt | 29 -- - .../en-gb_windows_8_n_x86_dvd_916086.iso.txt | 29 -- - ..._windows_8_pro_n_vl_x64_dvd_918679.iso.txt | 29 -- - ..._windows_8_pro_n_vl_x86_dvd_918878.iso.txt | 29 -- - ...gb_windows_8_pro_vl_x64_dvd_917700.iso.txt | 29 -- - ...gb_windows_8_pro_vl_x86_dvd_917831.iso.txt | 29 -- - .../en-gb_windows_8_x64_dvd_915412.iso.txt | 29 -- - .../en-gb_windows_8_x86_dvd_915479.iso.lng | 2 - - .../en-gb_windows_8_x86_dvd_915479.iso.txt | 29 -- - ...debug_checked_build_x64_dvd_917558.iso.lng | 2 - - ...debug_checked_build_x64_dvd_917558.iso.txt | 29 -- - ...debug_checked_build_x86_dvd_917560.iso.lng | 2 - - ...debug_checked_build_x86_dvd_917560.iso.txt | 29 -- - ...debug_checked_build_x64_dvd_917527.iso.lng | 2 - - ...debug_checked_build_x64_dvd_917527.iso.txt | 29 -- - ...debug_checked_build_x86_dvd_917529.iso.lng | 2 - - ...debug_checked_build_x86_dvd_917529.iso.txt | 29 -- - ...debug_checked_build_x64_dvd_917531.iso.lng | 2 - - ...debug_checked_build_x64_dvd_917531.iso.txt | 29 -- - ...debug_checked_build_x86_dvd_917534.iso.lng | 2 - - ...debug_checked_build_x86_dvd_917534.iso.txt | 29 -- - ...dows_8_enterprise_n_x64_dvd_918052.iso.lng | 2 - - ...dows_8_enterprise_n_x64_dvd_918052.iso.txt | 29 -- - ...dows_8_enterprise_n_x86_dvd_918707.iso.lng | 2 - - ...dows_8_enterprise_n_x86_dvd_918707.iso.txt | 29 -- - ...indows_8_enterprise_x64_dvd_917522.iso.lng | 2 - - ...indows_8_enterprise_x64_dvd_917522.iso.txt | 29 -- - ...indows_8_enterprise_x86_dvd_917587.iso.lng | 2 - - ...indows_8_enterprise_x86_dvd_917587.iso.txt | 29 -- - ...debug_checked_build_x64_dvd_917562.iso.lng | 2 - - ...debug_checked_build_x64_dvd_917562.iso.txt | 29 -- - ...debug_checked_build_x86_dvd_917564.iso.lng | 2 - - ...debug_checked_build_x86_dvd_917564.iso.txt | 29 -- - .../en_windows_8_n_x64_dvd_916091.iso.lng | 2 - - .../en_windows_8_n_x64_dvd_916091.iso.txt | 29 -- - .../en_windows_8_n_x86_dvd_916097.iso.lng | 2 - - .../en_windows_8_n_x86_dvd_916097.iso.txt | 29 -- - ..._windows_8_pro_n_vl_x64_dvd_918677.iso.lng | 2 - - ..._windows_8_pro_n_vl_x64_dvd_918677.iso.txt | 29 -- - ..._windows_8_pro_n_vl_x86_dvd_918877.iso.lng | 2 - - ..._windows_8_pro_n_vl_x86_dvd_918877.iso.txt | 29 -- - ...en_windows_8_pro_vl_x64_dvd_917699.iso.lng | 2 - - ...en_windows_8_pro_vl_x64_dvd_917699.iso.txt | 29 -- - ...en_windows_8_pro_vl_x86_dvd_917830.iso.lng | 2 - - ...en_windows_8_pro_vl_x86_dvd_917830.iso.txt | 29 -- - .../win8/en_windows_8_x64_dvd_915440.iso.lng | 2 - - .../win8/en_windows_8_x64_dvd_915440.iso.txt | 29 -- - .../win8/en_windows_8_x86_dvd_915417.iso.lng | 2 - - .../win8/en_windows_8_x86_dvd_915417.iso.txt | 29 -- - .../win8/fr_windows_8_x86_dvd_915420.iso.lng | 2 - - .../win8/fr_windows_8_x86_dvd_915420.iso.txt | 29 -- - ..._vista_business_sp2_x64_dvd_342327.iso.txt | 29 -- - ..._vista_business_sp2_x86_dvd_342321.iso.txt | 31 -- - ...h_service_pack_1_x64_dvd_x14-56048.iso.txt | 31 -- - ...h_service_pack_1_x86_dvd_x14-56028.iso.txt | 31 -- - ...ista_enterprise_sp2_x64_dvd_342332.iso.txt | 29 -- - ...ista_enterprise_sp2_x86_dvd_342329.iso.txt | 29 -- - ...ith_service_pack_1_x64_dvd_unknown.iso.txt | 29 -- - ...h_service_pack_1_x64_dvd_x14-55934.iso.txt | 31 -- - ...ith_service_pack_1_x86_dvd_unknown.iso.txt | 29 -- - ...h_service_pack_1_x86_dvd_x14-55954.iso.txt | 31 -- - ...ith_service_pack_2_beta_x86_288250.iso.txt | 29 -- - ...nterprise_with_sp2_beta_x64_288254.iso.txt | 29 -- - ...en_windows_vista_x64_dvd_X12-40712.iso.txt | 31 -- - ...en_windows_vista_x64_dvd_x12-40712.iso.txt | 29 -- - ...en_windows_vista_x86_dvd_X12-34293.iso.txt | 31 -- - ...en_windows_vista_x86_dvd_x12-34293.iso.txt | 29 -- - ...th_service_pack_3_x86_cd_x14-80416.iso.txt | 31 -- - .../winxp/cz_winxp_pro_with_sp2.iso.txt | 31 -- - .../en_winXP_Pro_x86_build2600_ISO.img.txt | 31 -- - .../windows/winxp/en_win_xp_pro_n.iso.txt | 29 -- - ...th_service_pack_3_x86_cd_x14-92445.iso.txt | 29 -- - ...service_pack_3_x86_cd_vl_x14-73974.iso.txt | 29 -- - ...th_service_pack_3_x86_cd_x14-80428.iso.txt | 29 -- - .../en_windows_xp_professional_x64.iso.txt | 29 -- - ...en_windows_xp_professional_x64_chk.iso.txt | 29 -- - .../winxp/en_winxp_mce_2005_cd1.iso.txt | 29 -- - .../winxp/en_winxp_mce_2005_cd2.iso.txt | 16 - - .../winxp/en_winxp_pro_with_sp2.iso.txt | 29 -- - .../winxp/en_winxp_sp1a_tablet_pc_cd1.iso.txt | 31 -- - .../winxp/en_winxp_tablet_2005_CD1.iso.txt | 31 -- - .../winxp/en_winxp_tablet_2005_CD2.iso.txt | 17 - - .../windows/winxp/en_winxp_tablet_cd2.iso.txt | 17 - - ...th_service_pack_3_x86_cd_x14-92426.iso.txt | 29 -- - tests/test-isodetect.c | 463 ------------------ - 1509 files changed, 1 insertion(+), 39984 deletions(-) - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.5/alpine-extended-3.5.0-x86.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.5/alpine-extended-3.5.0-x86_64.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.5/alpine-extended-3.5.1-x86.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.5/alpine-extended-3.5.1-x86_64.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.5/alpine-extended-3.5.2-x86.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.5/alpine-extended-3.5.2-x86_64.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.5/alpine-standard-3.5.0-x86.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.5/alpine-standard-3.5.0-x86_64.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.5/alpine-standard-3.5.1-x86.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.5/alpine-standard-3.5.1-x86_64.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.5/alpine-standard-3.5.2-x86.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.5/alpine-standard-3.5.2-x86_64.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.5/alpine-vanilla-3.5.0-x86.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.5/alpine-vanilla-3.5.0-x86_64.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.5/alpine-vanilla-3.5.1-x86.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.5/alpine-vanilla-3.5.1-x86_64.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.5/alpine-vanilla-3.5.2-x86.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.5/alpine-vanilla-3.5.2-x86_64.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.5/alpine-virt-3.5.0-x86.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.5/alpine-virt-3.5.0-x86_64.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.5/alpine-virt-3.5.1-x86.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.5/alpine-virt-3.5.1-x86_64.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.5/alpine-virt-3.5.2-x86.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.5/alpine-virt-3.5.2-x86_64.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.5/alpine-xen-3.5.0-x86_64.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.5/alpine-xen-3.5.1-x86_64.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.5/alpine-xen-3.5.2-x86_64.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.6/alpine-extended-3.6.0-x86.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.6/alpine-extended-3.6.0-x86_64.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.6/alpine-extended-3.6.1-x86.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.6/alpine-extended-3.6.1-x86_64.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.6/alpine-extended-3.6.2-x86.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.6/alpine-extended-3.6.2-x86_64.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.6/alpine-standard-3.6.0-x86.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.6/alpine-standard-3.6.0-x86_64.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.6/alpine-standard-3.6.1-x86.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.6/alpine-standard-3.6.1-x86_64.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.6/alpine-standard-3.6.2-x86.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.6/alpine-standard-3.6.2-x86_64.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.6/alpine-vanilla-3.6.0-x86.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.6/alpine-vanilla-3.6.0-x86_64.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.6/alpine-vanilla-3.6.1-x86.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.6/alpine-vanilla-3.6.1-x86_64.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.6/alpine-vanilla-3.6.2-x86.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.6/alpine-vanilla-3.6.2-x86_64.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.6/alpine-virt-3.6.0-x86.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.6/alpine-virt-3.6.0-x86_64.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.6/alpine-virt-3.6.1-x86.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.6/alpine-virt-3.6.1-x86_64.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.6/alpine-virt-3.6.2-x86.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.6/alpine-virt-3.6.2-x86_64.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.6/alpine-xen-3.6.0-x86_64.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.6/alpine-xen-3.6.1-x86_64.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.6/alpine-xen-3.6.2-x86_64.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.7/alpine-extended-3.7.0-x86.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.7/alpine-extended-3.7.0-x86_64.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.7/alpine-standard-3.7.0-x86.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.7/alpine-standard-3.7.0-x86_64.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.7/alpine-vanilla-3.7.0-ppc64le.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.7/alpine-vanilla-3.7.0-x86.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.7/alpine-vanilla-3.7.0-x86_64.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.7/alpine-virt-3.7.0-x86.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.7/alpine-virt-3.7.0-x86_64.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.7/alpine-xen-3.7.0-x86_64.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.8/alpine-extended-3.8.1-x86.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.8/alpine-extended-3.8.1-x86_64.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.8/alpine-standard-3.8.0-ppc64le.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.8/alpine-standard-3.8.0-s390x.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.8/alpine-standard-3.8.0-x86.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.8/alpine-standard-3.8.0-x86_64.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.8/alpine-standard-3.8.1-ppc64le.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.8/alpine-standard-3.8.1-s390x.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.8/alpine-standard-3.8.1-x86.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.8/alpine-standard-3.8.1-x86_64.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.8/alpine-virt-3.8.0-x86.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.8/alpine-virt-3.8.0-x86_64.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.8/alpine-virt-3.8.1-x86.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.8/alpine-virt-3.8.1-x86_64.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.8/alpine-xen-3.8.0-x86_64.iso.txt - delete mode 100644 tests/isodata/alpinelinux/alpinelinux3.8/alpine-xen-3.8.1-x86_64.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.p8/alt-p8-builder-20180912-i586.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.p8/alt-p8-builder-20180912-x86_64.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.p8/alt-p8-cinnamon-20180912-i586.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.p8/alt-p8-cinnamon-20180912-x86_64.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.p8/alt-p8-enlightenment-20180912-i586.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.p8/alt-p8-enlightenment-20180912-x86_64.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.p8/alt-p8-gnome3-20180912-i586.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.p8/alt-p8-gnome3-20180912-x86_64.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.p8/alt-p8-gnustep-20180912-i586.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.p8/alt-p8-gnustep-20180912-x86_64.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.p8/alt-p8-icewm-20180912-i586.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.p8/alt-p8-icewm-20180912-x86_64.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.p8/alt-p8-jeos-20180912-i586.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.p8/alt-p8-jeos-20180912-x86_64.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.p8/alt-p8-kde4-20180912-i586.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.p8/alt-p8-kde4-20180912-x86_64.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.p8/alt-p8-kde5-20180912-i586.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.p8/alt-p8-kde5-20180912-x86_64.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.p8/alt-p8-lxde-20180912-i586.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.p8/alt-p8-lxde-20180912-x86_64.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.p8/alt-p8-lxqt-20180912-i586.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.p8/alt-p8-lxqt-20180912-x86_64.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.p8/alt-p8-mate-20180913-i586.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.p8/alt-p8-mate-20180913-x86_64.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.p8/alt-p8-rescue-20180912-i586.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.p8/alt-p8-rescue-20180912-x86_64.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.p8/alt-p8-server-20180913-i586.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.p8/alt-p8-server-20180913-x86_64.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.p8/alt-p8-server-pve-20180912-x86_64.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.p8/alt-p8-sysv-tde-20180912-i586.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.p8/alt-p8-sysv-tde-20180912-x86_64.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.p8/alt-p8-sysv-xfce-20180912-i586.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.p8/alt-p8-sysv-xfce-20180912-x86_64.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.p8/alt-p8-wmaker-20180912-i586.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.p8/alt-p8-wmaker-20180912-x86_64.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.p8/alt-p8-xfce-20180912-i586.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.p8/alt-p8-xfce-20180912-x86_64.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.sisyphus/regular-cinnamon-20181017-i586.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.sisyphus/regular-cinnamon-20181017-x86_64.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.sisyphus/regular-enlightenment-20181017-i586.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.sisyphus/regular-enlightenment-20181017-x86_64.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.sisyphus/regular-gnome3-20181017-i586.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.sisyphus/regular-gnome3-20181017-x86_64.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.sisyphus/regular-gnustep-20181017-i586.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.sisyphus/regular-gnustep-20181017-x86_64.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.sisyphus/regular-icewm-20181017-i586.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.sisyphus/regular-icewm-20181017-x86_64.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.sisyphus/regular-jeos-20181017-i586.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.sisyphus/regular-jeos-20181017-x86_64.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.sisyphus/regular-kde5-20181017-i586.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.sisyphus/regular-kde5-20181017-x86_64.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.sisyphus/regular-lxde-20181017-i586.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.sisyphus/regular-lxde-20181017-x86_64.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.sisyphus/regular-lxqt-20181017-i586.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.sisyphus/regular-lxqt-20181017-x86_64.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.sisyphus/regular-mate-20181017-i586.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.sisyphus/regular-mate-20181017-x86_64.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.sisyphus/regular-rescue-20181017-i586.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.sisyphus/regular-rescue-20181017-x86_64.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.sisyphus/regular-wmaker-20181017-i586.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.sisyphus/regular-wmaker-20181017-x86_64.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.sisyphus/regular-xfce-20181017-i586.iso.txt - delete mode 100644 tests/isodata/altlinux/alt.sisyphus/regular-xfce-20181017-x86_64.iso.txt - delete mode 100644 tests/isodata/altlinux/alt8.0/alt-education-8.0-i586.iso.txt - delete mode 100644 tests/isodata/altlinux/alt8.0/alt-education-8.0-x86_64.iso.txt - delete mode 100644 tests/isodata/altlinux/alt8.1/alt-kworkstation-8.1-install-i586.iso.txt - delete mode 100644 tests/isodata/altlinux/alt8.1/alt-kworkstation-8.1-install-x86_64.iso.txt - delete mode 100644 tests/isodata/altlinux/alt8.1/alt-kworkstation-8.1-live-i586.iso.txt - delete mode 100644 tests/isodata/altlinux/alt8.1/alt-kworkstation-8.1-live-x86_64.iso.txt - delete mode 100644 tests/isodata/altlinux/alt8.1/alt-workstation-8.1-i586.iso.txt - delete mode 100644 tests/isodata/altlinux/alt8.1/alt-workstation-8.1-x86_64.iso.txt - delete mode 100644 tests/isodata/altlinux/alt8.2/alt-kworkstation-8.2-install-i586.iso.txt - delete mode 100644 tests/isodata/altlinux/alt8.2/alt-kworkstation-8.2-install-x86_64.iso.txt - delete mode 100644 tests/isodata/altlinux/alt8.2/alt-kworkstation-8.2-live-i586.iso.txt - delete mode 100644 tests/isodata/altlinux/alt8.2/alt-kworkstation-8.2-live-x86_64.iso.txt - delete mode 100644 tests/isodata/altlinux/alt8.2/alt-server-8.2-i586.iso.txt - delete mode 100644 tests/isodata/altlinux/alt8.2/alt-server-8.2-x86_64.iso.txt - delete mode 100644 tests/isodata/altlinux/alt8.2/alt-simply-8.2.0-i586.iso.txt - delete mode 100644 tests/isodata/altlinux/alt8.2/alt-simply-8.2.0-live-i586.iso.txt - delete mode 100644 tests/isodata/altlinux/alt8.2/alt-simply-8.2.0-live-x86_64.iso.txt - delete mode 100644 tests/isodata/altlinux/alt8.2/alt-simply-8.2.0-x86_64.iso.txt - delete mode 100644 tests/isodata/altlinux/alt8.2/alt-workstation-8.2-i586.iso.txt - delete mode 100644 tests/isodata/altlinux/alt8.2/alt-workstation-8.2-x86_64.iso.txt - delete mode 100644 tests/isodata/altlinux/altlinux2.4/Master-2.4-install-DVD.iso.txt - delete mode 100644 tests/isodata/altlinux/altlinux2.4/Master-2.4-install-cd.iso.txt - delete mode 100644 tests/isodata/altlinux/altlinux3.0/compact-3.0.4.iso.txt - delete mode 100644 tests/isodata/altlinux/altlinux3.0/installer-3.0.4.iso.txt - delete mode 100644 tests/isodata/altlinux/altlinux3.0/travelcd-3.0.4.iso.txt - delete mode 100644 tests/isodata/altlinux/altlinux4.0/altlinux-4.0.0-terminal-i586-en-cd.iso.txt - delete mode 100644 tests/isodata/altlinux/altlinux4.0/altlinux-4.0.0-terminal-i586-ru-dvd.iso.txt - delete mode 100644 tests/isodata/altlinux/altlinux4.0/altlinux-4.0.1-server-i586-install-cd.iso.txt - delete mode 100644 tests/isodata/altlinux/altlinux4.0/altlinux-4.0.1-server-x86_64-install-cd.iso.txt - delete mode 100644 tests/isodata/altlinux/altlinux4.0/altlinux-4.0.3-desktop-i586-install_en-dvd5.iso.txt - delete mode 100644 tests/isodata/altlinux/altlinux4.0/altlinux-4.0.3-desktop-i586-install_ru-dvd5.iso.txt - delete mode 100644 tests/isodata/altlinux/altlinux4.0/altlinux-4.0.3-desktop-i586-install_uk-dvd5.iso.txt - delete mode 100644 tests/isodata/altlinux/altlinux4.0/altlinux-4.0.3-lite-i586-install_en-cd.iso.txt - delete mode 100644 tests/isodata/altlinux/altlinux4.0/altlinux-4.0.3-lite-i586-install_ru-cd.iso.txt - delete mode 100644 tests/isodata/altlinux/altlinux4.0/altlinux-4.0.3-lite-i586-install_uk-cd.iso.txt - delete mode 100644 tests/isodata/altlinux/altlinux4.1/altlinux-4.1.1-desktop-i586-install-cd.iso.txt - delete mode 100644 tests/isodata/altlinux/altlinux4.1/altlinux-4.1.1-desktop-i586-install-dvd5.iso.txt - delete mode 100644 tests/isodata/altlinux/altlinux4.1/altlinux-4.1.1-desktop-i586-install_en-dvd5.iso.txt - delete mode 100644 tests/isodata/altlinux/altlinux4.1/altlinux-4.1.1-desktop-x86_64-install-cd.iso.txt - delete mode 100644 tests/isodata/altlinux/altlinux4.1/altlinux-4.1.1-desktop-x86_64-install-dvd5.iso.txt - delete mode 100644 tests/isodata/altlinux/altlinux5.0/altlinux-5.0.0-ark-desktop-i586-ru-install-dvd5.iso.txt - delete mode 100644 tests/isodata/altlinux/altlinux5.0/altlinux-5.0.0-ark-desktop-x86_64-ru-install-dvd5.iso.txt - delete mode 100644 tests/isodata/altlinux/altlinux5.0/altlinux-5.0.0-ark-server-i586-ru-install-cd.iso.txt - delete mode 100644 tests/isodata/altlinux/altlinux5.0/altlinux-5.0.0-ark-server-x86_64-ru-install-cd.iso.txt - delete mode 100644 tests/isodata/altlinux/altlinux5.0/altlinux-5.0.0-kdesktop-i586-ru-install-dvd5.iso.txt - delete mode 100644 tests/isodata/altlinux/altlinux5.0/altlinux-5.0.0-kdesktop-x86_64-ru-install-dvd5.iso.txt - delete mode 100644 tests/isodata/altlinux/altlinux5.0/altlinux-5.0.2-school-junior-i586-ru-install-dvd5.iso.txt - delete mode 100644 tests/isodata/altlinux/altlinux5.0/altlinux-5.0.2-school-lite-i586-ru-install-cd.iso.txt - delete mode 100644 tests/isodata/altlinux/altlinux5.0/altlinux-5.0.2-school-master-i586-ru-install-dvd5.iso.txt - delete mode 100644 tests/isodata/altlinux/altlinux5.0/altlinux-5.0.2-school-server-i586-ru-install-dvd5.iso.txt - delete mode 100644 tests/isodata/altlinux/altlinux5.0/altlinux-5.0.2-school-server-x86_64-ru-install-dvd5.iso.txt - delete mode 100644 tests/isodata/altlinux/altlinux5.0/altlinux-5.0.2-school-terminal-i586-ru-install-dvd5.iso.txt - delete mode 100644 tests/isodata/altlinux/altlinux6.0/altlinux-6.0.0-centaurus-i586-ru-install-dvd5.iso.txt - delete mode 100644 tests/isodata/altlinux/altlinux6.0/altlinux-6.0.0-centaurus-x86_64-ru-install-dvd5.iso.txt - delete mode 100644 tests/isodata/altlinux/altlinux6.0/altlinux-6.0.0-kdesktop-i586-ru-install-dvd5.iso.txt - delete mode 100644 tests/isodata/altlinux/altlinux6.0/altlinux-6.0.0-kdesktop-x86_64-ru-install-dvd5.iso.txt - delete mode 100644 tests/isodata/altlinux/altlinux6.0/altlinux-6.0.1-simply-i586-ru-install-dvd5.iso.txt - delete mode 100644 tests/isodata/altlinux/altlinux6.0/altlinux-6.0.1-simply-x86_64-ru-install-dvd5.iso.txt - delete mode 100644 tests/isodata/altlinux/altlinux7.0/altlinux-7.0.2-centaurus-i586-ru-install-dvd5.iso.txt - delete mode 100644 tests/isodata/altlinux/altlinux7.0/altlinux-7.0.5-centaurus-x86_64-ru-install-dvd5.iso.txt - delete mode 100644 tests/isodata/android-x86/android-x86-8.1/android-x86-8.1-rc2.iso.txt - delete mode 100644 tests/isodata/android-x86/android-x86-8.1/android-x86_64-8.1-rc2.iso.txt - delete mode 100644 tests/isodata/archlinux/archlinux/archlinux-2019.02.01-x86_64.iso.txt - delete mode 100644 tests/isodata/asianux/asianux4.6/asianux-4.6-i386.iso.txt - delete mode 100644 tests/isodata/asianux/asianux4.6/asianux-4.6-x86_64.iso.txt - delete mode 100644 tests/isodata/asianux/asianux4.7/asianux-4.7-i386.iso.txt - delete mode 100644 tests/isodata/asianux/asianux4.7/asianux-4.7-x86_64.iso.txt - delete mode 100644 tests/isodata/asianux/asianux7.0/asianux-7.0.iso.txt - delete mode 100644 tests/isodata/asianux/asianux7.1/asianux-7.1.iso.txt - delete mode 100644 tests/isodata/asianux/asianux7.2/asianux-7.2.iso.txt - delete mode 100644 tests/isodata/centos/centos6.0/CentOS-6.0-i386-bin-DVD.iso.txt - delete mode 100644 tests/isodata/centos/centos6.0/CentOS-6.0-x86_64-bin-DVD1.iso.txt - delete mode 100644 tests/isodata/centos/centos6.1/CentOS-6.1-i386-bin-DVD1.iso.txt - delete mode 100644 tests/isodata/centos/centos6.1/CentOS-6.1-x86_64-bin-DVD1.iso.txt - delete mode 100644 tests/isodata/centos/centos6.10/CentOS-6.10-i386-LiveDVD.iso.txt - delete mode 100644 tests/isodata/centos/centos6.10/CentOS-6.10-i386-bin-DVD1.iso.txt - delete mode 100644 tests/isodata/centos/centos6.10/CentOS-6.10-i386-minimal.iso.txt - delete mode 100644 tests/isodata/centos/centos6.10/CentOS-6.10-i386-netinstall.iso.txt - delete mode 100644 tests/isodata/centos/centos6.10/CentOS-6.10-x86_64-LiveDVD.iso.txt - delete mode 100644 tests/isodata/centos/centos6.10/CentOS-6.10-x86_64-bin-DVD1.iso.txt - delete mode 100644 tests/isodata/centos/centos6.10/CentOS-6.10-x86_64-minimal.iso.txt - delete mode 100644 tests/isodata/centos/centos6.10/CentOS-6.10-x86_64-netinstall.iso.txt - delete mode 100644 tests/isodata/centos/centos6.2/CentOS-6.2-i386-bin-DVD1.iso.txt - delete mode 100644 tests/isodata/centos/centos6.2/CentOS-6.2-x86_64-bin-DVD1.iso.txt - delete mode 100644 tests/isodata/centos/centos6.3/CentOS-6.3-i386-bin-DVD1.iso.txt - delete mode 100644 tests/isodata/centos/centos6.3/CentOS-6.3-x86_64-LiveDVD.iso.txt - delete mode 100644 tests/isodata/centos/centos6.3/CentOS-6.3-x86_64-bin-DVD1.iso.txt - delete mode 100644 tests/isodata/centos/centos6.4/CentOS-6.4-i386-bin-DVD1.iso.txt - delete mode 100644 tests/isodata/centos/centos6.4/CentOS-6.4-x86_64-bin-DVD1.iso.txt - delete mode 100644 tests/isodata/centos/centos6.5/CentOS-6.5-i386-bin-DVD1.iso.txt - delete mode 100644 tests/isodata/centos/centos6.5/CentOS-6.5-x86_64-bin-DVD1.iso.txt - delete mode 100644 tests/isodata/centos/centos6.6/CentOS-6.6-i386-bin-DVD1.iso - delete mode 100644 tests/isodata/centos/centos6.6/CentOS-6.6-i386-minimal.iso - delete mode 100644 tests/isodata/centos/centos6.6/CentOS-6.6-i386-netinstall.iso - delete mode 100644 tests/isodata/centos/centos6.6/CentOS-6.6-x86_64-bin-DVD1.iso - delete mode 100644 tests/isodata/centos/centos6.6/CentOS-6.6-x86_64-minimal.iso - delete mode 100644 tests/isodata/centos/centos6.6/CentOS-6.6-x86_64-netinstall.iso - delete mode 100644 tests/isodata/centos/centos6.7/CentOS-6.7-i386-LiveCD.iso - delete mode 100644 tests/isodata/centos/centos6.7/CentOS-6.7-i386-LiveDVD.iso - delete mode 100644 tests/isodata/centos/centos6.7/CentOS-6.7-i386-bin-DVD1.iso - delete mode 100644 tests/isodata/centos/centos6.7/CentOS-6.7-i386-minimal.iso - delete mode 100644 tests/isodata/centos/centos6.7/CentOS-6.7-i386-netinstall.iso - delete mode 100644 tests/isodata/centos/centos6.7/CentOS-6.7-x86_64-LiveCD.iso - delete mode 100644 tests/isodata/centos/centos6.7/CentOS-6.7-x86_64-LiveDVD.iso - delete mode 100644 tests/isodata/centos/centos6.7/CentOS-6.7-x86_64-bin-DVD1.iso - delete mode 100644 tests/isodata/centos/centos6.7/CentOS-6.7-x86_64-minimal.iso - delete mode 100644 tests/isodata/centos/centos6.7/CentOS-6.7-x86_64-netinstall.iso - delete mode 100644 tests/isodata/centos/centos6.8/CentOS-6.8-i386-LiveDVD.iso.txt - delete mode 100644 tests/isodata/centos/centos6.8/CentOS-6.8-i386-bin-DVD1.iso.txt - delete mode 100644 tests/isodata/centos/centos6.8/CentOS-6.8-i386-minimal.iso.txt - delete mode 100644 tests/isodata/centos/centos6.8/CentOS-6.8-i386-netinstall.iso.txt - delete mode 100644 tests/isodata/centos/centos6.8/CentOS-6.8-x86_64-LiveDVD.iso.txt - delete mode 100644 tests/isodata/centos/centos6.8/CentOS-6.8-x86_64-bin-DVD1.iso.txt - delete mode 100644 tests/isodata/centos/centos6.8/CentOS-6.8-x86_64-minimal.iso.txt - delete mode 100644 tests/isodata/centos/centos6.8/CentOS-6.8-x86_64-netinstall.iso.txt - delete mode 100644 tests/isodata/centos/centos6.9/CentOS-6.9-i386-LiveDVD.iso.txt - delete mode 100644 tests/isodata/centos/centos6.9/CentOS-6.9-i386-bin-DVD1.iso.txt - delete mode 100644 tests/isodata/centos/centos6.9/CentOS-6.9-i386-minimal.iso.txt - delete mode 100644 tests/isodata/centos/centos6.9/CentOS-6.9-i386-netinstall.iso.txt - delete mode 100644 tests/isodata/centos/centos6.9/CentOS-6.9-x86_64-LiveDVD.iso.txt - delete mode 100644 tests/isodata/centos/centos6.9/CentOS-6.9-x86_64-bin-DVD1.iso.txt - delete mode 100644 tests/isodata/centos/centos6.9/CentOS-6.9-x86_64-minimal.iso.txt - delete mode 100644 tests/isodata/centos/centos6.9/CentOS-6.9-x86_64-netinstall.iso.txt - delete mode 100644 tests/isodata/centos/centos7.0/CentOS-7-x86_64-DVD.iso.txt - delete mode 100644 tests/isodata/centos/centos7.0/CentOS-7-x86_64-Everything.iso.txt - delete mode 100644 tests/isodata/centos/centos7.0/CentOS-7-x86_64-LiveGNOME-1804.iso.txt - delete mode 100644 tests/isodata/centos/centos7.0/CentOS-7-x86_64-LiveGNOME.iso.txt - delete mode 100644 tests/isodata/centos/centos7.0/CentOS-7-x86_64-LiveKDE-1804.iso.txt - delete mode 100644 tests/isodata/centos/centos7.0/CentOS-7-x86_64-LiveKDE.iso.txt - delete mode 100644 tests/isodata/centos/centos7.0/CentOS-7-x86_64-Minimal.iso.txt - delete mode 100644 tests/isodata/centos/centos7.0/CentOS-7-x86_64-NetInstall-1611.iso.txt - delete mode 100644 tests/isodata/centos/centos7.0/CentOS-7.0-1406-x86_64-DVD.iso.txt - delete mode 100644 tests/isodata/centos/centos7.0/CentOS-7.0-1406-x86_64-Everything.iso.txt - delete mode 100644 tests/isodata/debian/debian6/debian-6.0.10-i386-DVD-1.iso.txt - delete mode 100644 tests/isodata/debian/debian6/debian-6.0.4-i386-CD-1.iso.txt - delete mode 100644 tests/isodata/debian/debian6/debian-6.0.8-amd64-CD-1.iso.txt - delete mode 100644 tests/isodata/debian/debian6/debian-6.0.8-i386-CD-1.iso.txt - delete mode 100644 tests/isodata/debian/debian6/debian-live-6.0.3-i386-standard.iso.txt - delete mode 100644 tests/isodata/debian/debian6/debian-live-6.0.8-amd64-standard.iso.txt - delete mode 100644 tests/isodata/debian/debian6/debian-live-6.0.8-i386-standard.iso.txt - delete mode 100644 tests/isodata/debian/debian7/debian-7.0.0-amd64-DVD-1.iso.txt - delete mode 100644 tests/isodata/debian/debian7/debian-7.0.0-i386-DVD-1.iso.txt - delete mode 100644 tests/isodata/debian/debian7/debian-7.2.0-amd64-DVD-1.iso.txt - delete mode 100644 tests/isodata/debian/debian7/debian-7.2.0-i386-DVD-1.iso.txt - delete mode 100644 tests/isodata/debian/debian7/debian-7.3.0-amd64-DVD-1.iso.txt - delete mode 100644 tests/isodata/debian/debian7/debian-7.3.0-i386-DVD-1.iso.txt - delete mode 100644 tests/isodata/debian/debian8/debian-8.0.0-amd64-CD-1.iso.txt - delete mode 100644 tests/isodata/debian/debian8/debian-8.7.1-amd64-CD-1.iso.txt - delete mode 100644 tests/isodata/debian/debian9/debian-9.0-amd64-netinst.iso.txt - delete mode 100644 tests/isodata/debian/debian9/debian-9.0-amd64.iso.txt - delete mode 100644 tests/isodata/debian/debian9/debian-9.0-arm64-netinst.iso.txt - delete mode 100644 tests/isodata/debian/debian9/debian-9.0-arm64.iso.txt - delete mode 100644 tests/isodata/debian/debian9/debian-9.0-armhf-netinst.iso.txt - delete mode 100644 tests/isodata/debian/debian9/debian-9.0-armhf.iso.txt - delete mode 100644 tests/isodata/debian/debian9/debian-9.0-i386-netinst.iso.txt - delete mode 100644 tests/isodata/debian/debian9/debian-9.0-i386.iso.txt - delete mode 100644 tests/isodata/debian/debiantesting/debian-testing-amd64-DVD-1.iso.txt - delete mode 100644 tests/isodata/dragonflybsd/dragonflybsd5.0.0/dfly-x86_64-5.0.0_REL.iso.txt - delete mode 100644 tests/isodata/dragonflybsd/dragonflybsd5.0.1/dfly-x86_64-5.0.1_REL.iso.txt - delete mode 100644 tests/isodata/dragonflybsd/dragonflybsd5.0.2/dfly-x86_64-5.0.2_REL.iso.txt - delete mode 100644 tests/isodata/dragonflybsd/dragonflybsd5.2.0/dfly-x86_64-5.2.0_REL.iso.txt - delete mode 100644 tests/isodata/dragonflybsd/dragonflybsd5.2.1/dfly-x86_64-5.2.1_REL.iso.txt - delete mode 100644 tests/isodata/dragonflybsd/dragonflybsd5.2.2/dfly-x86_64-5.2.2_REL.iso.txt - delete mode 100644 tests/isodata/dragonflybsd/dragonflybsd5.4.0/dfly-x86_64-5.4.0_REL.iso.txt - delete mode 100644 tests/isodata/dragonflybsd/dragonflybsd5.4.1/dfly-x86_64-5.4.1_REL.iso.txt - delete mode 100644 tests/isodata/eos/eos3.4/eos-eos3.4-amd64-amd64.180515-041823.base.iso.txt - delete mode 100644 tests/isodata/eos/eos3.4/eos-eos3.4-amd64-amd64.180515-044004.es.iso.txt - delete mode 100644 tests/isodata/eos/eos3.4/eos-eos3.4-amd64-amd64.180515-044248.bn.iso.txt - delete mode 100644 tests/isodata/eos/eos3.4/eos-eos3.4-amd64-amd64.180515-044927.es_GT.iso.txt - delete mode 100644 tests/isodata/eos/eos3.4/eos-eos3.4-amd64-amd64.180515-050141.en.iso.txt - delete mode 100644 tests/isodata/eos/eos3.4/eos-eos3.4-amd64-amd64.180515-054338.ar.iso.txt - delete mode 100644 tests/isodata/eos/eos3.4/eos-eos3.4-amd64-amd64.180515-055726.fr.iso.txt - delete mode 100644 tests/isodata/eos/eos3.4/eos-eos3.4-amd64-amd64.180515-061343.es_MX.iso.txt - delete mode 100644 tests/isodata/eos/eos3.4/eos-eos3.4-amd64-amd64.180515-062519.id.iso.txt - delete mode 100644 tests/isodata/eos/eos3.4/eos-eos3.4-amd64-amd64.180515-064146.th.iso.txt - delete mode 100644 tests/isodata/eos/eos3.4/eos-eos3.4-amd64-amd64.180515-070619.vi.iso.txt - delete mode 100644 tests/isodata/eos/eos3.4/eos-eos3.4-amd64-amd64.180515-071821.zh_CN.iso.txt - delete mode 100644 tests/isodata/fedora/fedora1/yarrow-i386-disc1.iso.txt - delete mode 100644 tests/isodata/fedora/fedora1/yarrow-i386-disc2.iso.txt - delete mode 100644 tests/isodata/fedora/fedora1/yarrow-i386-disc3.iso.txt - delete mode 100644 tests/isodata/fedora/fedora1/yarrow-i386-dvd.iso.txt - delete mode 100644 tests/isodata/fedora/fedora10/F10-i686-Live-KDE.iso.txt - delete mode 100644 tests/isodata/fedora/fedora10/F10-i686-Live.iso.txt - delete mode 100644 tests/isodata/fedora/fedora10/F10-x86_64-Live-KDE.iso.txt - delete mode 100644 tests/isodata/fedora/fedora10/F10-x86_64-Live.iso.txt - delete mode 100644 tests/isodata/fedora/fedora10/Fedora-10-i386-DVD.iso.txt - delete mode 100644 tests/isodata/fedora/fedora10/Fedora-10-i386-disc1.iso.txt - delete mode 100644 tests/isodata/fedora/fedora10/Fedora-10-i386-disc2.iso.txt - delete mode 100644 tests/isodata/fedora/fedora10/Fedora-10-i386-disc3.iso.txt - delete mode 100644 tests/isodata/fedora/fedora10/Fedora-10-i386-disc4.iso.txt - delete mode 100644 tests/isodata/fedora/fedora10/Fedora-10-i386-disc5.iso.txt - delete mode 100644 tests/isodata/fedora/fedora10/Fedora-10-i386-disc6.iso.txt - delete mode 100644 tests/isodata/fedora/fedora10/Fedora-10-ppc-DVD.iso.txt - delete mode 100644 tests/isodata/fedora/fedora10/Fedora-10-ppc-disc1.iso.txt - delete mode 100644 tests/isodata/fedora/fedora10/Fedora-10-ppc-disc2.iso.txt - delete mode 100644 tests/isodata/fedora/fedora10/Fedora-10-ppc-disc3.iso.txt - delete mode 100644 tests/isodata/fedora/fedora10/Fedora-10-ppc-disc4.iso.txt - delete mode 100644 tests/isodata/fedora/fedora10/Fedora-10-ppc-disc5.iso.txt - delete mode 100644 tests/isodata/fedora/fedora10/Fedora-10-ppc-disc6.iso.txt - delete mode 100644 tests/isodata/fedora/fedora10/Fedora-10-ppc-disc7.iso.txt - delete mode 100644 tests/isodata/fedora/fedora10/Fedora-10-x86_64-DVD.iso.txt - delete mode 100644 tests/isodata/fedora/fedora10/Fedora-10-x86_64-disc1.iso.txt - delete mode 100644 tests/isodata/fedora/fedora10/Fedora-10-x86_64-disc2.iso.txt - delete mode 100644 tests/isodata/fedora/fedora10/Fedora-10-x86_64-disc3.iso.txt - delete mode 100644 tests/isodata/fedora/fedora10/Fedora-10-x86_64-disc4.iso.txt - delete mode 100644 tests/isodata/fedora/fedora10/Fedora-10-x86_64-disc5.iso.txt - delete mode 100644 tests/isodata/fedora/fedora10/Fedora-10-x86_64-disc6.iso.txt - delete mode 100644 tests/isodata/fedora/fedora11/Fedora-11-i386-DVD.iso.txt - delete mode 100644 tests/isodata/fedora/fedora11/Fedora-11-i386-disc1.iso.txt - delete mode 100644 tests/isodata/fedora/fedora11/Fedora-11-i386-disc2.iso.txt - delete mode 100644 tests/isodata/fedora/fedora11/Fedora-11-i386-disc3.iso.txt - delete mode 100644 tests/isodata/fedora/fedora11/Fedora-11-i386-disc4.iso.txt - delete mode 100644 tests/isodata/fedora/fedora11/Fedora-11-i386-disc5.iso.txt - delete mode 100644 tests/isodata/fedora/fedora11/Fedora-11-i386-disc6.iso.txt - delete mode 100644 tests/isodata/fedora/fedora11/Fedora-11-i686-Live-KDE.iso.txt - delete mode 100644 tests/isodata/fedora/fedora11/Fedora-11-i686-Live.iso.txt - delete mode 100644 tests/isodata/fedora/fedora11/Fedora-11-ppc-DVD.iso.txt - delete mode 100644 tests/isodata/fedora/fedora11/Fedora-11-ppc-disc1.iso.txt - delete mode 100644 tests/isodata/fedora/fedora11/Fedora-11-ppc-disc2.iso.txt - delete mode 100644 tests/isodata/fedora/fedora11/Fedora-11-ppc-disc3.iso.txt - delete mode 100644 tests/isodata/fedora/fedora11/Fedora-11-ppc-disc4.iso.txt - delete mode 100644 tests/isodata/fedora/fedora11/Fedora-11-ppc-disc5.iso.txt - delete mode 100644 tests/isodata/fedora/fedora11/Fedora-11-ppc-disc6.iso.txt - delete mode 100644 tests/isodata/fedora/fedora11/Fedora-11-ppc-disc7.iso.txt - delete mode 100644 tests/isodata/fedora/fedora11/Fedora-11-x86_64-DVD.iso.txt - delete mode 100644 tests/isodata/fedora/fedora11/Fedora-11-x86_64-Live-KDE.iso.txt - delete mode 100644 tests/isodata/fedora/fedora11/Fedora-11-x86_64-Live.iso.txt - delete mode 100644 tests/isodata/fedora/fedora11/Fedora-11-x86_64-disc1.iso.txt - delete mode 100644 tests/isodata/fedora/fedora11/Fedora-11-x86_64-disc2.iso.txt - delete mode 100644 tests/isodata/fedora/fedora11/Fedora-11-x86_64-disc3.iso.txt - delete mode 100644 tests/isodata/fedora/fedora11/Fedora-11-x86_64-disc4.iso.txt - delete mode 100644 tests/isodata/fedora/fedora11/Fedora-11-x86_64-disc5.iso.txt - delete mode 100644 tests/isodata/fedora/fedora11/Fedora-11-x86_64-disc6.iso.txt - delete mode 100644 tests/isodata/fedora/fedora12/Fedora-12-i386-DVD.iso.txt - delete mode 100644 tests/isodata/fedora/fedora12/Fedora-12-i386-disc1.iso.txt - delete mode 100644 tests/isodata/fedora/fedora12/Fedora-12-i386-disc2.iso.txt - delete mode 100644 tests/isodata/fedora/fedora12/Fedora-12-i386-disc3.iso.txt - delete mode 100644 tests/isodata/fedora/fedora12/Fedora-12-i386-disc4.iso.txt - delete mode 100644 tests/isodata/fedora/fedora12/Fedora-12-i386-disc5.iso.txt - delete mode 100644 tests/isodata/fedora/fedora12/Fedora-12-i686-Live-KDE.iso.txt - delete mode 100644 tests/isodata/fedora/fedora12/Fedora-12-i686-Live.iso.txt - delete mode 100644 tests/isodata/fedora/fedora12/Fedora-12-ppc-DVD.iso.txt - delete mode 100644 tests/isodata/fedora/fedora12/Fedora-12-ppc-disc1.iso.txt - delete mode 100644 tests/isodata/fedora/fedora12/Fedora-12-ppc-disc2.iso.txt - delete mode 100644 tests/isodata/fedora/fedora12/Fedora-12-ppc-disc3.iso.txt - delete mode 100644 tests/isodata/fedora/fedora12/Fedora-12-ppc-disc4.iso.txt - delete mode 100644 tests/isodata/fedora/fedora12/Fedora-12-ppc-disc5.iso.txt - delete mode 100644 tests/isodata/fedora/fedora12/Fedora-12-ppc-disc6.iso.txt - delete mode 100644 tests/isodata/fedora/fedora12/Fedora-12-x86_64-DVD.iso.txt - delete mode 100644 tests/isodata/fedora/fedora12/Fedora-12-x86_64-Live-KDE.iso.txt - delete mode 100644 tests/isodata/fedora/fedora12/Fedora-12-x86_64-Live.iso.txt - delete mode 100644 tests/isodata/fedora/fedora12/Fedora-12-x86_64-disc1.iso.txt - delete mode 100644 tests/isodata/fedora/fedora12/Fedora-12-x86_64-disc2.iso.txt - delete mode 100644 tests/isodata/fedora/fedora12/Fedora-12-x86_64-disc3.iso.txt - delete mode 100644 tests/isodata/fedora/fedora12/Fedora-12-x86_64-disc4.iso.txt - delete mode 100644 tests/isodata/fedora/fedora12/Fedora-12-x86_64-disc5.iso.txt - delete mode 100644 tests/isodata/fedora/fedora13/Fedora-13-i386-DVD.iso.txt - delete mode 100644 tests/isodata/fedora/fedora13/Fedora-13-i386-disc1.iso.txt - delete mode 100644 tests/isodata/fedora/fedora13/Fedora-13-i386-disc2.iso.txt - delete mode 100644 tests/isodata/fedora/fedora13/Fedora-13-i386-disc3.iso.txt - delete mode 100644 tests/isodata/fedora/fedora13/Fedora-13-i386-disc4.iso.txt - delete mode 100644 tests/isodata/fedora/fedora13/Fedora-13-i386-disc5.iso.txt - delete mode 100644 tests/isodata/fedora/fedora13/Fedora-13-i686-Live-KDE.iso.txt - delete mode 100644 tests/isodata/fedora/fedora13/Fedora-13-i686-Live.iso.txt - delete mode 100644 tests/isodata/fedora/fedora13/Fedora-13-x86_64-DVD.iso.txt - delete mode 100644 tests/isodata/fedora/fedora13/Fedora-13-x86_64-Live-KDE.iso.txt - delete mode 100644 tests/isodata/fedora/fedora13/Fedora-13-x86_64-Live.iso.txt - delete mode 100644 tests/isodata/fedora/fedora13/Fedora-13-x86_64-disc1.iso.txt - delete mode 100644 tests/isodata/fedora/fedora13/Fedora-13-x86_64-disc2.iso.txt - delete mode 100644 tests/isodata/fedora/fedora13/Fedora-13-x86_64-disc3.iso.txt - delete mode 100644 tests/isodata/fedora/fedora13/Fedora-13-x86_64-disc4.iso.txt - delete mode 100644 tests/isodata/fedora/fedora13/Fedora-13-x86_64-disc5.iso.txt - delete mode 100644 tests/isodata/fedora/fedora14/Fedora-14-i386-DVD.iso.txt - delete mode 100644 tests/isodata/fedora/fedora14/Fedora-14-i386-disc1.iso.txt - delete mode 100644 tests/isodata/fedora/fedora14/Fedora-14-i386-disc2.iso.txt - delete mode 100644 tests/isodata/fedora/fedora14/Fedora-14-i386-disc3.iso.txt - delete mode 100644 tests/isodata/fedora/fedora14/Fedora-14-i386-disc4.iso.txt - delete mode 100644 tests/isodata/fedora/fedora14/Fedora-14-i386-disc5.iso.txt - delete mode 100644 tests/isodata/fedora/fedora14/Fedora-14-i686-Live-Desktop.iso.txt - delete mode 100644 tests/isodata/fedora/fedora14/Fedora-14-i686-Live-KDE.iso.txt - delete mode 100644 tests/isodata/fedora/fedora14/Fedora-14-x86_64-DVD.iso.txt - delete mode 100644 tests/isodata/fedora/fedora14/Fedora-14-x86_64-Live-Desktop.iso.txt - delete mode 100644 tests/isodata/fedora/fedora14/Fedora-14-x86_64-Live-KDE.iso.txt - delete mode 100644 tests/isodata/fedora/fedora14/Fedora-14-x86_64-disc1.iso.txt - delete mode 100644 tests/isodata/fedora/fedora14/Fedora-14-x86_64-disc2.iso.txt - delete mode 100644 tests/isodata/fedora/fedora14/Fedora-14-x86_64-disc3.iso.txt - delete mode 100644 tests/isodata/fedora/fedora14/Fedora-14-x86_64-disc4.iso.txt - delete mode 100644 tests/isodata/fedora/fedora14/Fedora-14-x86_64-disc5.iso.txt - delete mode 100644 tests/isodata/fedora/fedora15/Fedora-15-i386-DVD.iso.txt - delete mode 100644 tests/isodata/fedora/fedora15/Fedora-15-i686-Live-Desktop.iso.txt - delete mode 100644 tests/isodata/fedora/fedora15/Fedora-15-i686-Live-KDE.iso.txt - delete mode 100644 tests/isodata/fedora/fedora15/Fedora-15-x86_64-DVD.iso.txt - delete mode 100644 tests/isodata/fedora/fedora15/Fedora-15-x86_64-Live-Desktop.iso.txt - delete mode 100644 tests/isodata/fedora/fedora15/Fedora-15-x86_64-Live-KDE.iso.txt - delete mode 100644 tests/isodata/fedora/fedora16/Fedora-16-i386-DVD.iso.txt - delete mode 100644 tests/isodata/fedora/fedora16/Fedora-16-i686-Live-Desktop.iso.txt - delete mode 100644 tests/isodata/fedora/fedora16/Fedora-16-i686-Live-KDE.iso.txt - delete mode 100644 tests/isodata/fedora/fedora16/Fedora-16-x86_64-DVD.iso.txt - delete mode 100644 tests/isodata/fedora/fedora16/Fedora-16-x86_64-Live-Desktop.iso.txt - delete mode 100644 tests/isodata/fedora/fedora16/Fedora-16-x86_64-Live-KDE.iso.txt - delete mode 100644 tests/isodata/fedora/fedora17/Fedora-17-i386-DVD.iso.txt - delete mode 100644 tests/isodata/fedora/fedora17/Fedora-17-i686-Live-Desktop.iso.txt - delete mode 100644 tests/isodata/fedora/fedora17/Fedora-17-i686-Live-KDE.iso.txt - delete mode 100644 tests/isodata/fedora/fedora17/Fedora-17-x86_64-DVD.iso.txt - delete mode 100644 tests/isodata/fedora/fedora17/Fedora-17-x86_64-Live-Desktop.iso.txt - delete mode 100644 tests/isodata/fedora/fedora17/Fedora-17-x86_64-Live-KDE.iso.txt - delete mode 100644 tests/isodata/fedora/fedora18/Fedora-18-i386-DVD.iso.txt - delete mode 100644 tests/isodata/fedora/fedora18/Fedora-18-i686-Live-Desktop.iso.txt - delete mode 100644 tests/isodata/fedora/fedora18/Fedora-18-i686-Live-KDE.iso.txt - delete mode 100644 tests/isodata/fedora/fedora18/Fedora-18-x86_64-DVD.iso.txt - delete mode 100644 tests/isodata/fedora/fedora18/Fedora-18-x86_64-Live-Desktop.iso.txt - delete mode 100644 tests/isodata/fedora/fedora18/Fedora-18-x86_64-Live-KDE.iso.txt - delete mode 100644 tests/isodata/fedora/fedora19/Fedora-19-i386-netinst.iso.txt - delete mode 100644 tests/isodata/fedora/fedora19/Fedora-19-x86_64-DVD.iso.txt - delete mode 100644 tests/isodata/fedora/fedora19/Fedora-Live-Desktop-i686-19-1.iso.txt - delete mode 100644 tests/isodata/fedora/fedora19/Fedora-Live-Desktop-x86_64-19-1.iso.txt - delete mode 100644 tests/isodata/fedora/fedora19/Fedora-Live-KDE-i686-19-1.iso.txt - delete mode 100644 tests/isodata/fedora/fedora19/Fedora-Live-KDE-x86_64-19-1.iso.txt - delete mode 100644 tests/isodata/fedora/fedora19/Fedora-Live-LXDE-x86_64-19-1.iso.txt - delete mode 100644 tests/isodata/fedora/fedora19/Fedora-Live-XFCE-x86_64-19-1.iso.txt - delete mode 100644 tests/isodata/fedora/fedora2/FC2-i386-DVD.iso.txt - delete mode 100644 tests/isodata/fedora/fedora2/FC2-i386-disc1.iso.txt - delete mode 100644 tests/isodata/fedora/fedora2/FC2-i386-disc2.iso.txt - delete mode 100644 tests/isodata/fedora/fedora2/FC2-i386-disc3.iso.txt - delete mode 100644 tests/isodata/fedora/fedora2/FC2-i386-disc4.iso.txt - delete mode 100644 tests/isodata/fedora/fedora2/FC2-x86_64-DVD.iso.txt - delete mode 100644 tests/isodata/fedora/fedora2/FC2-x86_64-disc1.iso.txt - delete mode 100644 tests/isodata/fedora/fedora2/FC2-x86_64-disc2.iso.txt - delete mode 100644 tests/isodata/fedora/fedora2/FC2-x86_64-disc3.iso.txt - delete mode 100644 tests/isodata/fedora/fedora2/FC2-x86_64-disc4.iso.txt - delete mode 100644 tests/isodata/fedora/fedora20/Fedora-20-i386-DVD.iso.txt - delete mode 100644 tests/isodata/fedora/fedora20/Fedora-20-i386-netinst.iso.txt - delete mode 100644 tests/isodata/fedora/fedora20/Fedora-20-ppc64-netinst.iso.txt - delete mode 100644 tests/isodata/fedora/fedora20/Fedora-20-x86_64-DVD.iso.txt - delete mode 100644 tests/isodata/fedora/fedora20/Fedora-20-x86_64-netinst.iso.txt - delete mode 100644 tests/isodata/fedora/fedora20/Fedora-Live-Desktop-i686-20-1.iso.txt - delete mode 100644 tests/isodata/fedora/fedora20/Fedora-Live-Desktop-x86_64-20-1.iso.txt - delete mode 100644 tests/isodata/fedora/fedora20/Fedora-Live-KDE-i686-20-1.iso.txt - delete mode 100644 tests/isodata/fedora/fedora20/Fedora-Live-KDE-x86_64-20-1.iso.txt - delete mode 100644 tests/isodata/fedora/fedora21/Fedora-Cloud-netinst-i386-21.iso.txt - delete mode 100644 tests/isodata/fedora/fedora21/Fedora-Cloud-netinst-x86_64-21.iso.txt - delete mode 100644 tests/isodata/fedora/fedora21/Fedora-Live-Workstation-i686-21-5.iso.txt - delete mode 100644 tests/isodata/fedora/fedora21/Fedora-Live-Workstation-x86_64-21-5.iso.txt - delete mode 100644 tests/isodata/fedora/fedora21/Fedora-Server-DVD-i386-21.iso.txt - delete mode 100644 tests/isodata/fedora/fedora21/Fedora-Server-DVD-x86_64-21.iso.txt - delete mode 100644 tests/isodata/fedora/fedora21/Fedora-Server-netinst-i386-21.iso.txt - delete mode 100644 tests/isodata/fedora/fedora21/Fedora-Server-netinst-x86_64-21.iso.txt - delete mode 100644 tests/isodata/fedora/fedora22/Fedora-Live-Workstation-i686-22-3.iso.txt - delete mode 100644 tests/isodata/fedora/fedora22/Fedora-Live-Workstation-x86_64-22-3.iso.txt - delete mode 100644 tests/isodata/fedora/fedora22/Fedora-Server-DVD-i386-22.iso.txt - delete mode 100644 tests/isodata/fedora/fedora22/Fedora-Server-DVD-x86_64-22.iso.txt - delete mode 100644 tests/isodata/fedora/fedora22/Fedora-Server-netinst-i386-22.iso.txt - delete mode 100644 tests/isodata/fedora/fedora22/Fedora-Server-netinst-x86_64-22.iso.txt - delete mode 100644 tests/isodata/fedora/fedora22/Fedora-Workstation-netinst-i386-22.iso.txt - delete mode 100644 tests/isodata/fedora/fedora22/Fedora-Workstation-netinst-x86_64-22.iso.txt - delete mode 100644 tests/isodata/fedora/fedora23/Fedora-Live-Workstation-i686-23_Beta-1.iso.txt - delete mode 100644 tests/isodata/fedora/fedora23/Fedora-Live-Workstation-x86_64-23_Beta-1.iso.txt - delete mode 100644 tests/isodata/fedora/fedora23/Fedora-Server-DVD-i386-23.iso.txt - delete mode 100644 tests/isodata/fedora/fedora23/Fedora-Server-DVD-x86_64-23.iso.txt - delete mode 100644 tests/isodata/fedora/fedora23/Fedora-Server-netinst-i386-23.iso.txt - delete mode 100644 tests/isodata/fedora/fedora23/Fedora-Server-netinst-x86_64-23.iso.txt - delete mode 100644 tests/isodata/fedora/fedora23/Fedora-Workstation-netinst-i386-23_Beta.iso.txt - delete mode 100644 tests/isodata/fedora/fedora23/Fedora-Workstation-netinst-x86_64-23_Beta.iso.txt - delete mode 100644 tests/isodata/fedora/fedora24/Fedora-Server-dvd-i386-24-1.2.iso.txt - delete mode 100644 tests/isodata/fedora/fedora24/Fedora-Server-dvd-x86_64-24-1.2.iso.txt - delete mode 100644 tests/isodata/fedora/fedora24/Fedora-Server-netinst-i386-24-1.2.iso.txt - delete mode 100644 tests/isodata/fedora/fedora24/Fedora-Server-netinst-x86_64-24-1.2.iso.txt - delete mode 100644 tests/isodata/fedora/fedora24/Fedora-Workstation-Live-i386-24-1.2.iso.txt - delete mode 100644 tests/isodata/fedora/fedora24/Fedora-Workstation-Live-x86_64-24-1.2.iso.txt - delete mode 100644 tests/isodata/fedora/fedora24/Fedora-Workstation-netinst-i386-24-1.2.iso.txt - delete mode 100644 tests/isodata/fedora/fedora24/Fedora-Workstation-netinst-x86_64-24-1.2.iso.txt - delete mode 100644 tests/isodata/fedora/fedora25/Fedora-Server-dvd-i386-25-1.3.iso.txt - delete mode 100644 tests/isodata/fedora/fedora25/Fedora-Server-dvd-x86_64-25-1.3.iso.txt - delete mode 100644 tests/isodata/fedora/fedora25/Fedora-Server-netinst-i386-25-1.3.iso.txt - delete mode 100644 tests/isodata/fedora/fedora25/Fedora-Server-netinst-x86_64-25-1.3.iso.txt - delete mode 100644 tests/isodata/fedora/fedora25/Fedora-Workstation-Live-i386-25-1.3.iso.txt - delete mode 100644 tests/isodata/fedora/fedora25/Fedora-Workstation-Live-x86_64-25-1.3.iso.txt - delete mode 100644 tests/isodata/fedora/fedora25/Fedora-Workstation-netinst-i386-25-1.3.iso.txt - delete mode 100644 tests/isodata/fedora/fedora25/Fedora-Workstation-netinst-x86_64-25-1.3.iso.txt - delete mode 100644 tests/isodata/fedora/fedora26/Fedora-Server-dvd-x86_64-26-1.5.iso.txt - delete mode 100644 tests/isodata/fedora/fedora26/Fedora-Server-netinst-x86_64-26-1.5.iso.txt - delete mode 100644 tests/isodata/fedora/fedora26/Fedora-Workstation-Live-x86_64-26-1.5.iso.txt - delete mode 100644 tests/isodata/fedora/fedora26/Fedora-Workstation-netinst-x86_64-26-1.5.iso.txt - delete mode 100644 tests/isodata/fedora/fedora27/Fedora-Server-dvd-x86_64-27-1.6.iso.txt - delete mode 100644 tests/isodata/fedora/fedora27/Fedora-Server-netinst-x86_64-27-1.6.iso.txt - delete mode 100644 tests/isodata/fedora/fedora27/Fedora-Workstation-Live-x86_64-27-1.6.iso.txt - delete mode 100644 tests/isodata/fedora/fedora27/Fedora-Workstation-netinst-x86_64-27-1.6.iso.txt - delete mode 100644 tests/isodata/fedora/fedora27/Fedora-WorkstationOstree-ostree-x86_64-27-1.6.iso.txt - delete mode 100644 tests/isodata/fedora/fedora28/Fedora-Server-dvd-x86_64-28-1.1.iso.txt - delete mode 100644 tests/isodata/fedora/fedora28/Fedora-Server-netinst-x86_64-28-1.1.iso.txt - delete mode 100644 tests/isodata/fedora/fedora28/Fedora-Workstation-Live-x86_64-28-1.1.iso.txt - delete mode 100644 tests/isodata/fedora/fedora29/Fedora-Everything-netinst-x86_64-29-1.2.iso.txt - delete mode 100644 tests/isodata/fedora/fedora29/Fedora-Server-dvd-x86_64-29-1.2.iso.txt - delete mode 100644 tests/isodata/fedora/fedora29/Fedora-Server-netinst-x86_64-29-1.2.iso.txt - delete mode 100644 tests/isodata/fedora/fedora29/Fedora-Workstation-netinst-x86_64-29-1.2.iso.txt - delete mode 100644 tests/isodata/fedora/fedora3/FC3-i386-DVD.iso.txt - delete mode 100644 tests/isodata/fedora/fedora3/FC3-i386-disc1.iso.txt - delete mode 100644 tests/isodata/fedora/fedora3/FC3-i386-disc2.iso.txt - delete mode 100644 tests/isodata/fedora/fedora3/FC3-i386-disc3.iso.txt - delete mode 100644 tests/isodata/fedora/fedora3/FC3-i386-disc4.iso.txt - delete mode 100644 tests/isodata/fedora/fedora3/FC3-x86_64-DVD.iso.txt - delete mode 100644 tests/isodata/fedora/fedora3/FC3-x86_64-disc1.iso.txt - delete mode 100644 tests/isodata/fedora/fedora3/FC3-x86_64-disc2.iso.txt - delete mode 100644 tests/isodata/fedora/fedora3/FC3-x86_64-disc3.iso.txt - delete mode 100644 tests/isodata/fedora/fedora3/FC3-x86_64-disc4.iso.txt - delete mode 100644 tests/isodata/fedora/fedora4/FC4-i386-DVD.iso.txt - delete mode 100644 tests/isodata/fedora/fedora4/FC4-i386-disc1.iso.txt - delete mode 100644 tests/isodata/fedora/fedora4/FC4-i386-disc2.iso.txt - delete mode 100644 tests/isodata/fedora/fedora4/FC4-i386-disc3.iso.txt - delete mode 100644 tests/isodata/fedora/fedora4/FC4-i386-disc4.iso.txt - delete mode 100644 tests/isodata/fedora/fedora4/FC4-ppc-DVD.iso.txt - delete mode 100644 tests/isodata/fedora/fedora4/FC4-ppc-disc1.iso.txt - delete mode 100644 tests/isodata/fedora/fedora4/FC4-ppc-disc2.iso.txt - delete mode 100644 tests/isodata/fedora/fedora4/FC4-ppc-disc3.iso.txt - delete mode 100644 tests/isodata/fedora/fedora4/FC4-ppc-disc4.iso.txt - delete mode 100644 tests/isodata/fedora/fedora4/FC4-ppc-disc5.iso.txt - delete mode 100644 tests/isodata/fedora/fedora4/FC4-x86_64-DVD.iso.txt - delete mode 100644 tests/isodata/fedora/fedora4/FC4-x86_64-disc1.iso.txt - delete mode 100644 tests/isodata/fedora/fedora4/FC4-x86_64-disc2.iso.txt - delete mode 100644 tests/isodata/fedora/fedora4/FC4-x86_64-disc3.iso.txt - delete mode 100644 tests/isodata/fedora/fedora4/FC4-x86_64-disc4.iso.txt - delete mode 100644 tests/isodata/fedora/fedora4/FC4-x86_64-disc5.iso.txt - delete mode 100644 tests/isodata/fedora/fedora5/FC-5-i386-DVD.iso.txt - delete mode 100644 tests/isodata/fedora/fedora5/FC-5-i386-disc1.iso.txt - delete mode 100644 tests/isodata/fedora/fedora5/FC-5-i386-disc2.iso.txt - delete mode 100644 tests/isodata/fedora/fedora5/FC-5-i386-disc3.iso.txt - delete mode 100644 tests/isodata/fedora/fedora5/FC-5-i386-disc4.iso.txt - delete mode 100644 tests/isodata/fedora/fedora5/FC-5-i386-disc5.iso.txt - delete mode 100644 tests/isodata/fedora/fedora5/FC-5-ppc-DVD.iso.txt - delete mode 100644 tests/isodata/fedora/fedora5/FC-5-ppc-disc1.iso.txt - delete mode 100644 tests/isodata/fedora/fedora5/FC-5-ppc-disc2.iso.txt - delete mode 100644 tests/isodata/fedora/fedora5/FC-5-ppc-disc3.iso.txt - delete mode 100644 tests/isodata/fedora/fedora5/FC-5-ppc-disc4.iso.txt - delete mode 100644 tests/isodata/fedora/fedora5/FC-5-ppc-disc5.iso.txt - delete mode 100644 tests/isodata/fedora/fedora5/FC-5-x86_64-DVD.iso.txt - delete mode 100644 tests/isodata/fedora/fedora5/FC-5-x86_64-disc1.iso.txt - delete mode 100644 tests/isodata/fedora/fedora5/FC-5-x86_64-disc2.iso.txt - delete mode 100644 tests/isodata/fedora/fedora5/FC-5-x86_64-disc3.iso.txt - delete mode 100644 tests/isodata/fedora/fedora5/FC-5-x86_64-disc4.iso.txt - delete mode 100644 tests/isodata/fedora/fedora5/FC-5-x86_64-disc5.iso.txt - delete mode 100644 tests/isodata/fedora/fedora6/FC-6-i386-DVD.iso.txt - delete mode 100644 tests/isodata/fedora/fedora6/FC-6-i386-disc1.iso.txt - delete mode 100644 tests/isodata/fedora/fedora6/FC-6-i386-disc2.iso.txt - delete mode 100644 tests/isodata/fedora/fedora6/FC-6-i386-disc3.iso.txt - delete mode 100644 tests/isodata/fedora/fedora6/FC-6-i386-disc4.iso.txt - delete mode 100644 tests/isodata/fedora/fedora6/FC-6-i386-disc5.iso.txt - delete mode 100644 tests/isodata/fedora/fedora6/FC-6-ppc-DVD.iso.txt - delete mode 100644 tests/isodata/fedora/fedora6/FC-6-ppc-disc1.iso.txt - delete mode 100644 tests/isodata/fedora/fedora6/FC-6-ppc-disc2.iso.txt - delete mode 100644 tests/isodata/fedora/fedora6/FC-6-ppc-disc3.iso.txt - delete mode 100644 tests/isodata/fedora/fedora6/FC-6-ppc-disc4.iso.txt - delete mode 100644 tests/isodata/fedora/fedora6/FC-6-ppc-disc5.iso.txt - delete mode 100644 tests/isodata/fedora/fedora6/FC-6-ppc-disc6.iso.txt - delete mode 100644 tests/isodata/fedora/fedora6/FC-6-x86_64-DVD.iso.txt - delete mode 100644 tests/isodata/fedora/fedora6/FC-6-x86_64-disc1.iso.txt - delete mode 100644 tests/isodata/fedora/fedora6/FC-6-x86_64-disc2.iso.txt - delete mode 100644 tests/isodata/fedora/fedora6/FC-6-x86_64-disc3.iso.txt - delete mode 100644 tests/isodata/fedora/fedora6/FC-6-x86_64-disc4.iso.txt - delete mode 100644 tests/isodata/fedora/fedora6/FC-6-x86_64-disc5.iso.txt - delete mode 100644 tests/isodata/fedora/fedora6/FC-6-x86_64-disc6.iso.txt - delete mode 100644 tests/isodata/fedora/fedora7/F-7-i386-DVD.iso.txt - delete mode 100644 tests/isodata/fedora/fedora7/F-7-ppc-DVD.iso.txt - delete mode 100644 tests/isodata/fedora/fedora7/F-7-x86_64-DVD.iso.txt - delete mode 100644 tests/isodata/fedora/fedora7/Fedora-7-KDE-Live-i686.iso.txt - delete mode 100644 tests/isodata/fedora/fedora7/Fedora-7-KDE-Live-x86_64.iso.txt - delete mode 100644 tests/isodata/fedora/fedora7/Fedora-7-Live-i686.iso.txt - delete mode 100644 tests/isodata/fedora/fedora7/Fedora-7-Live-x86_64.iso.txt - delete mode 100644 tests/isodata/fedora/fedora8/Fedora-8-Live-KDE-i686.iso.txt - delete mode 100644 tests/isodata/fedora/fedora8/Fedora-8-Live-KDE-x86_64.iso.txt - delete mode 100644 tests/isodata/fedora/fedora8/Fedora-8-Live-i686.iso.txt - delete mode 100644 tests/isodata/fedora/fedora8/Fedora-8-Live-ppc.iso.txt - delete mode 100644 tests/isodata/fedora/fedora8/Fedora-8-Live-x86_64.iso.txt - delete mode 100644 tests/isodata/fedora/fedora8/Fedora-8-i386-DVD.iso.txt - delete mode 100644 tests/isodata/fedora/fedora8/Fedora-8-ppc-DVD.iso.txt - delete mode 100644 tests/isodata/fedora/fedora8/Fedora-8-x86_64-DVD.iso.txt - delete mode 100644 tests/isodata/fedora/fedora9/Fedora-9-i386-DVD.iso.txt - delete mode 100644 tests/isodata/fedora/fedora9/Fedora-9-i386-disc1.iso.txt - delete mode 100644 tests/isodata/fedora/fedora9/Fedora-9-i386-disc2.iso.txt - delete mode 100644 tests/isodata/fedora/fedora9/Fedora-9-i386-disc3.iso.txt - delete mode 100644 tests/isodata/fedora/fedora9/Fedora-9-i386-disc4.iso.txt - delete mode 100644 tests/isodata/fedora/fedora9/Fedora-9-i386-disc5.iso.txt - delete mode 100644 tests/isodata/fedora/fedora9/Fedora-9-i386-disc6.iso.txt - delete mode 100644 tests/isodata/fedora/fedora9/Fedora-9-i686-Live-KDE.iso.txt - delete mode 100644 tests/isodata/fedora/fedora9/Fedora-9-i686-Live.iso.txt - delete mode 100644 tests/isodata/fedora/fedora9/Fedora-9-ppc-DVD.iso.txt - delete mode 100644 tests/isodata/fedora/fedora9/Fedora-9-ppc-disc1.iso.txt - delete mode 100644 tests/isodata/fedora/fedora9/Fedora-9-ppc-disc2.iso.txt - delete mode 100644 tests/isodata/fedora/fedora9/Fedora-9-ppc-disc3.iso.txt - delete mode 100644 tests/isodata/fedora/fedora9/Fedora-9-ppc-disc4.iso.txt - delete mode 100644 tests/isodata/fedora/fedora9/Fedora-9-ppc-disc5.iso.txt - delete mode 100644 tests/isodata/fedora/fedora9/Fedora-9-ppc-disc6.iso.txt - delete mode 100644 tests/isodata/fedora/fedora9/Fedora-9-ppc-disc7.iso.txt - delete mode 100644 tests/isodata/fedora/fedora9/Fedora-9-x86_64-DVD.iso.txt - delete mode 100644 tests/isodata/fedora/fedora9/Fedora-9-x86_64-Live-KDE.iso.txt - delete mode 100644 tests/isodata/fedora/fedora9/Fedora-9-x86_64-Live.iso.txt - delete mode 100644 tests/isodata/fedora/fedora9/Fedora-9-x86_64-disc1.iso.txt - delete mode 100644 tests/isodata/fedora/fedora9/Fedora-9-x86_64-disc2.iso.txt - delete mode 100644 tests/isodata/fedora/fedora9/Fedora-9-x86_64-disc3.iso.txt - delete mode 100644 tests/isodata/fedora/fedora9/Fedora-9-x86_64-disc4.iso.txt - delete mode 100644 tests/isodata/fedora/fedora9/Fedora-9-x86_64-disc5.iso.txt - delete mode 100644 tests/isodata/fedora/fedora9/Fedora-9-x86_64-disc6.iso.txt - delete mode 100644 tests/isodata/fedora/fedora9/Fedora-9-x86_64-disc7.iso.txt - delete mode 100644 tests/isodata/fedora/silverblue28/Fedora-AtomicWorkstation-ostree-x86_64-28-1.1.iso.txt - delete mode 100644 tests/isodata/fedora/silverblue29/Fedora-Silverblue-ostree-x86_64-29-1.2.iso.txt - delete mode 100644 tests/isodata/freebsd/freebsd10.1/FreeBSD-10.1-RELEASE-amd64-dvd1.iso.txt - delete mode 100644 tests/isodata/freebsd/freebsd10.2/FreeBSD-10.2-RELEASE-amd64-dvd1.iso.txt - delete mode 100644 tests/isodata/freebsd/freebsd10.3/FreeBSD-10.3-RELEASE-amd64-dvd1.iso.txt - delete mode 100644 tests/isodata/freebsd/freebsd10.4/FreeBSD-10.4-RELEASE-amd64-disc1.iso.txt - delete mode 100644 tests/isodata/freebsd/freebsd10.4/FreeBSD-10.4-RELEASE-amd64-dvd1.iso.txt - delete mode 100644 tests/isodata/freebsd/freebsd10.4/FreeBSD-10.4-RELEASE-i386-disc1.iso.txt - delete mode 100644 tests/isodata/freebsd/freebsd10.4/FreeBSD-10.4-RELEASE-i386-dvd1.iso.txt - delete mode 100644 tests/isodata/freebsd/freebsd11.0/FreeBSD-11.0-RELEASE-amd64-disc1.iso.txt - delete mode 100644 tests/isodata/freebsd/freebsd11.0/FreeBSD-11.0-RELEASE-amd64-dvd1.iso.txt - delete mode 100644 tests/isodata/freebsd/freebsd11.0/FreeBSD-11.0-RELEASE-i386-disc1.iso.txt - delete mode 100644 tests/isodata/freebsd/freebsd11.0/FreeBSD-11.0-RELEASE-i386-dvd1.iso.txt - delete mode 100644 tests/isodata/freebsd/freebsd11.1/FreeBSD-11.1-RELEASE-amd64-disc1.iso.txt - delete mode 100644 tests/isodata/freebsd/freebsd11.1/FreeBSD-11.1-RELEASE-amd64-dvd1.iso.txt - delete mode 100644 tests/isodata/freebsd/freebsd11.1/FreeBSD-11.1-RELEASE-i386-disc1.iso.txt - delete mode 100644 tests/isodata/freebsd/freebsd11.1/FreeBSD-11.1-RELEASE-i386-dvd1.iso.txt - delete mode 100644 tests/isodata/freebsd/freebsd11.2/FreeBSD-11.2-RELEASE-amd64-disc1.iso.txt - delete mode 100644 tests/isodata/freebsd/freebsd11.2/FreeBSD-11.2-RELEASE-amd64-dvd1.iso.txt - delete mode 100644 tests/isodata/freebsd/freebsd11.2/FreeBSD-11.2-RELEASE-i386-disc1.iso.txt - delete mode 100644 tests/isodata/freebsd/freebsd11.2/FreeBSD-11.2-RELEASE-i386-dvd1.iso.txt - delete mode 100644 tests/isodata/freebsd/freebsd12.0/FreeBSD-12.0-RELEASE-amd64-disc1.iso.txt - delete mode 100644 tests/isodata/freebsd/freebsd12.0/FreeBSD-12.0-RELEASE-amd64-dvd1.iso.txt - delete mode 100644 tests/isodata/freebsd/freebsd12.0/FreeBSD-12.0-RELEASE-i386-disc1.iso.txt - delete mode 100644 tests/isodata/freebsd/freebsd12.0/FreeBSD-12.0-RELEASE-i386-dvd1.iso.txt - delete mode 100644 tests/isodata/freedos/freedos1.2/FD12CD.iso.txt - delete mode 100644 tests/isodata/freedos/freedos1.2/FD12LGCY.iso.txt - delete mode 100644 tests/isodata/gentoo/gentoo/install-amd64-minimal-20190212T214502Z.iso.txt - delete mode 100644 tests/isodata/gentoo/gentoo/install-x86-minimal-20190214T185527Z.iso.txt - delete mode 100644 tests/isodata/gnome/gnome3.8/GNOME-3.7.92.iso.txt - delete mode 100644 tests/isodata/haiku/haikunightly/haiku-nightly-anyboot.iso.txt - delete mode 100644 tests/isodata/haiku/haikur1alpha1/haiku-r1alpha1.iso.txt - delete mode 100644 tests/isodata/haiku/haikur1alpha2/haiku-r1alpha2-sources.iso.txt - delete mode 100644 tests/isodata/haiku/haikur1alpha3/haiku-r1alpha3.iso.txt - delete mode 100644 tests/isodata/haiku/haikur1alpha4.1/haiku-r1alpha4.iso.txt - delete mode 100644 tests/isodata/mageia/mageia1/mageia-dual-1.iso.txt - delete mode 100644 tests/isodata/mageia/mageia1/mageia-dvd-1-i586.iso.txt - delete mode 100644 tests/isodata/mageia/mageia1/mageia-livecd-1-GNOME-europe1-americas-cdrom-i586.iso.txt - delete mode 100644 tests/isodata/mageia/mageia1/mageia-livecd-1-KDE4-europe1-americas-cdrom-i586.iso.txt - delete mode 100644 tests/isodata/mageia/mageia2/Mageia-2-dual-CD.iso.txt - delete mode 100644 tests/isodata/mageia/mageia2/Mageia-2-i586-DVD.iso.txt - delete mode 100644 tests/isodata/mageia/mageia3/Mageia-3-LiveCD-GNOME-en-i586-CD.iso.txt - delete mode 100644 tests/isodata/mageia/mageia3/Mageia-3-LiveCD-KDE4-en-i586-CD.iso.txt - delete mode 100644 tests/isodata/mageia/mageia3/Mageia-3-LiveDVD-GNOME-i586-DVD.iso.txt - delete mode 100644 tests/isodata/mageia/mageia3/Mageia-3-LiveDVD-GNOME-x86_64-DVD.iso.txt - delete mode 100644 tests/isodata/mageia/mageia3/Mageia-3-LiveDVD-KDE4-i586-DVD.iso.txt - delete mode 100644 tests/isodata/mageia/mageia3/Mageia-3-LiveDVD-KDE4-x86_64-DVD.iso.txt - delete mode 100644 tests/isodata/mageia/mageia3/Mageia-3-dual-CD.iso.txt - delete mode 100644 tests/isodata/mageia/mageia3/Mageia-3-i586-DVD.iso.txt - delete mode 100644 tests/isodata/mageia/mageia3/Mageia-3-x86_64-DVD.iso.txt - delete mode 100644 tests/isodata/mageia/mageia4/Mageia-4-LiveCD-GNOME-en-i586-CD.iso.txt - delete mode 100644 tests/isodata/mageia/mageia4/Mageia-4-LiveCD-KDE4-en-i586-CD.iso.txt - delete mode 100644 tests/isodata/mageia/mageia4/Mageia-4-LiveDVD-GNOME-i586-DVD.iso.txt - delete mode 100644 tests/isodata/mageia/mageia4/Mageia-4-LiveDVD-GNOME-x86_64-DVD.iso.txt - delete mode 100644 tests/isodata/mageia/mageia4/Mageia-4-LiveDVD-KDE4-i586-DVD.iso.txt - delete mode 100644 tests/isodata/mageia/mageia4/Mageia-4-LiveDVD-KDE4-x86_64-DVD.iso.txt - delete mode 100644 tests/isodata/mageia/mageia4/Mageia-4-dual-DVD.iso.txt - delete mode 100644 tests/isodata/mageia/mageia4/Mageia-4-i586-DVD.iso.txt - delete mode 100644 tests/isodata/mageia/mageia4/Mageia-4-x86_64-DVD.iso.txt - delete mode 100644 tests/isodata/mageia/mageia4/Mageia-4.1-LiveCD-GNOME-en-i586-CD.iso.txt - delete mode 100644 tests/isodata/mageia/mageia4/Mageia-4.1-LiveCD-KDE4-en-i586-CD.iso.txt - delete mode 100644 tests/isodata/mageia/mageia4/Mageia-4.1-LiveDVD-GNOME-i586-DVD.iso.txt - delete mode 100644 tests/isodata/mageia/mageia4/Mageia-4.1-LiveDVD-GNOME-x86_64-DVD.iso.txt - delete mode 100644 tests/isodata/mageia/mageia4/Mageia-4.1-LiveDVD-KDE4-i586-DVD.iso.txt - delete mode 100644 tests/isodata/mageia/mageia4/Mageia-4.1-LiveDVD-KDE4-x86_64-DVD.iso.txt - delete mode 100644 tests/isodata/mageia/mageia4/Mageia-4.1-dual-DVD.iso.txt - delete mode 100644 tests/isodata/mageia/mageia4/Mageia-4.1-i586-DVD.iso.txt - delete mode 100644 tests/isodata/mageia/mageia4/Mageia-4.1-x86_64-DVD.iso.txt - delete mode 100644 tests/isodata/mageia/mageia5/Mageia-5-LiveCD-GNOME-en-i586-CD.iso.txt - delete mode 100644 tests/isodata/mageia/mageia5/Mageia-5-LiveCD-KDE4-en-i586-CD.iso.txt - delete mode 100644 tests/isodata/mageia/mageia5/Mageia-5-LiveDVD-GNOME-i586-DVD.iso.txt - delete mode 100644 tests/isodata/mageia/mageia5/Mageia-5-LiveDVD-GNOME-x86_64-DVD.iso.txt - delete mode 100644 tests/isodata/mageia/mageia5/Mageia-5-LiveDVD-KDE4-i586-DVD.iso.txt - delete mode 100644 tests/isodata/mageia/mageia5/Mageia-5-LiveDVD-KDE4-x86_64-DVD.iso.txt - delete mode 100644 tests/isodata/mageia/mageia5/Mageia-5-dual-DVD.iso.txt - delete mode 100644 tests/isodata/mageia/mageia5/Mageia-5-i586-DVD.iso.txt - delete mode 100644 tests/isodata/mageia/mageia5/Mageia-5-x86_64-DVD.iso.txt - delete mode 100644 tests/isodata/mageia/mageia6/Mageia-6-LiveDVD-GNOME-x86_64-DVD.iso.txt - delete mode 100644 tests/isodata/mageia/mageia6/Mageia-6-LiveDVD-Plasma-x86_64-DVD.iso.txt - delete mode 100644 tests/isodata/mageia/mageia6/Mageia-6-LiveDVD-Xfce-i586-DVD.iso.txt - delete mode 100644 tests/isodata/mageia/mageia6/Mageia-6-LiveDVD-Xfce-x86_64-DVD.iso.txt - delete mode 100644 tests/isodata/mageia/mageia6/Mageia-6-i586-DVD.iso.txt - delete mode 100644 tests/isodata/mageia/mageia6/Mageia-6-x86_64-DVD.iso.txt - delete mode 100644 tests/isodata/netbsd/netbsd6.0/NetBSD-6.0-amd64-boot-com.iso.txt - delete mode 100644 tests/isodata/netbsd/netbsd6.0/NetBSD-6.0-amd64-boot.iso.txt - delete mode 100644 tests/isodata/netbsd/netbsd6.0/NetBSD-6.0-amd64.iso.txt - delete mode 100644 tests/isodata/netbsd/netbsd6.0/NetBSD-6.0-i386-boot-com.iso.txt - delete mode 100644 tests/isodata/netbsd/netbsd6.0/NetBSD-6.0-i386-boot.iso.txt - delete mode 100644 tests/isodata/netbsd/netbsd6.0/NetBSD-6.0-i386.iso.txt - delete mode 100644 tests/isodata/netbsd/netbsd6.1/NetBSD-6.1-amd64-boot-com.iso.txt - delete mode 100644 tests/isodata/netbsd/netbsd6.1/NetBSD-6.1-amd64-boot.iso.txt - delete mode 100644 tests/isodata/netbsd/netbsd6.1/NetBSD-6.1-amd64.iso.txt - delete mode 100644 tests/isodata/netbsd/netbsd6.1/NetBSD-6.1-i386-boot-com.iso.txt - delete mode 100644 tests/isodata/netbsd/netbsd6.1/NetBSD-6.1-i386-boot.iso.txt - delete mode 100644 tests/isodata/netbsd/netbsd6.1/NetBSD-6.1-i386.iso.txt - delete mode 100644 tests/isodata/netbsd/netbsd7.0/NetBSD-7.0-amd64-boot-com.iso.txt - delete mode 100644 tests/isodata/netbsd/netbsd7.0/NetBSD-7.0-amd64-boot.iso.txt - delete mode 100644 tests/isodata/netbsd/netbsd7.0/NetBSD-7.0-amd64.iso.txt - delete mode 100644 tests/isodata/netbsd/netbsd7.0/NetBSD-7.0-i386-boot-com.iso.txt - delete mode 100644 tests/isodata/netbsd/netbsd7.0/NetBSD-7.0-i386-boot.iso.txt - delete mode 100644 tests/isodata/netbsd/netbsd7.0/NetBSD-7.0-i386.iso.txt - delete mode 100644 tests/isodata/netbsd/netbsd7.1.1/NetBSD-7.1.1-amd64-boot-com.iso.txt - delete mode 100644 tests/isodata/netbsd/netbsd7.1.1/NetBSD-7.1.1-amd64-boot.iso.txt - delete mode 100644 tests/isodata/netbsd/netbsd7.1.1/NetBSD-7.1.1-amd64.iso.txt - delete mode 100644 tests/isodata/netbsd/netbsd7.1.1/NetBSD-7.1.1-i386-boot-com.iso.txt - delete mode 100644 tests/isodata/netbsd/netbsd7.1.1/NetBSD-7.1.1-i386-boot.iso.txt - delete mode 100644 tests/isodata/netbsd/netbsd7.1.1/NetBSD-7.1.1-i386.iso.txt - delete mode 100644 tests/isodata/netbsd/netbsd7.1.2/NetBSD-7.1.2-amd64-boot-com.iso.txt - delete mode 100644 tests/isodata/netbsd/netbsd7.1.2/NetBSD-7.1.2-amd64-boot.iso.txt - delete mode 100644 tests/isodata/netbsd/netbsd7.1.2/NetBSD-7.1.2-amd64.iso.txt - delete mode 100644 tests/isodata/netbsd/netbsd7.1.2/NetBSD-7.1.2-i386-boot-com.iso.txt - delete mode 100644 tests/isodata/netbsd/netbsd7.1.2/NetBSD-7.1.2-i386-boot.iso.txt - delete mode 100644 tests/isodata/netbsd/netbsd7.1.2/NetBSD-7.1.2-i386.iso.txt - delete mode 100644 tests/isodata/netbsd/netbsd7.1/NetBSD-7.1-amd64-boot-com.iso.txt - delete mode 100644 tests/isodata/netbsd/netbsd7.1/NetBSD-7.1-amd64-boot.iso.txt - delete mode 100644 tests/isodata/netbsd/netbsd7.1/NetBSD-7.1-amd64.iso.txt - delete mode 100644 tests/isodata/netbsd/netbsd7.1/NetBSD-7.1-i386-boot-com.iso.txt - delete mode 100644 tests/isodata/netbsd/netbsd7.1/NetBSD-7.1-i386-boot.iso.txt - delete mode 100644 tests/isodata/netbsd/netbsd7.1/NetBSD-7.1-i386.iso.txt - delete mode 100644 tests/isodata/netbsd/netbsd7.2/NetBSD-7.2-amd64-boot-com.iso.txt - delete mode 100644 tests/isodata/netbsd/netbsd7.2/NetBSD-7.2-amd64-boot.iso.txt - delete mode 100644 tests/isodata/netbsd/netbsd7.2/NetBSD-7.2-amd64.iso.txt - delete mode 100644 tests/isodata/netbsd/netbsd7.2/NetBSD-7.2-i386-boot-com.iso.txt - delete mode 100644 tests/isodata/netbsd/netbsd7.2/NetBSD-7.2-i386-boot.iso.txt - delete mode 100644 tests/isodata/netbsd/netbsd7.2/NetBSD-7.2-i386.iso.txt - delete mode 100644 tests/isodata/netbsd/netbsd8.0/NetBSD-8.0-amd64-boot-com.iso.txt - delete mode 100644 tests/isodata/netbsd/netbsd8.0/NetBSD-8.0-amd64-boot.iso.txt - delete mode 100644 tests/isodata/netbsd/netbsd8.0/NetBSD-8.0-amd64.iso.txt - delete mode 100644 tests/isodata/netbsd/netbsd8.0/NetBSD-8.0-i386-boot-com.iso.txt - delete mode 100644 tests/isodata/netbsd/netbsd8.0/NetBSD-8.0-i386-boot.iso.txt - delete mode 100644 tests/isodata/netbsd/netbsd8.0/NetBSD-8.0-i386.iso.txt - delete mode 100644 tests/isodata/openbsd/openbsd4.2/openbsd-4.2-amd64.txt - delete mode 100644 tests/isodata/openbsd/openbsd4.2/openbsd-4.2-i386.txt - delete mode 100644 tests/isodata/openbsd/openbsd4.3/openbsd-4.3-amd64.txt - delete mode 100644 tests/isodata/openbsd/openbsd4.3/openbsd-4.3-i386.txt - delete mode 100644 tests/isodata/openbsd/openbsd4.4/openbsd-4.4-amd64.txt - delete mode 100644 tests/isodata/openbsd/openbsd4.4/openbsd-4.4-i386.txt - delete mode 100644 tests/isodata/openbsd/openbsd4.5/openbsd-4.5-amd64.txt - delete mode 100644 tests/isodata/openbsd/openbsd4.5/openbsd-4.5-i386.txt - delete mode 100644 tests/isodata/openbsd/openbsd4.8/openbsd-4.8-amd64.txt - delete mode 100644 tests/isodata/openbsd/openbsd4.8/openbsd-4.8-i386.txt - delete mode 100644 tests/isodata/openbsd/openbsd4.9/openbsd-4.9-amd64.txt - delete mode 100644 tests/isodata/openbsd/openbsd4.9/openbsd-4.9-i386.txt - delete mode 100644 tests/isodata/openbsd/openbsd5.0/openbsd-5.0-amd64.txt - delete mode 100644 tests/isodata/openbsd/openbsd5.0/openbsd-5.0-i386.txt - delete mode 100644 tests/isodata/openbsd/openbsd5.1/openbsd-5.1-amd64.txt - delete mode 100644 tests/isodata/openbsd/openbsd5.1/openbsd-5.1-i386.txt - delete mode 100644 tests/isodata/openbsd/openbsd5.2/openbsd-5.2-amd64.txt - delete mode 100644 tests/isodata/openbsd/openbsd5.2/openbsd-5.2-i386.txt - delete mode 100644 tests/isodata/openbsd/openbsd5.3/openbsd-5.3-amd64.txt - delete mode 100644 tests/isodata/openbsd/openbsd5.3/openbsd-5.3-i386.txt - delete mode 100644 tests/isodata/openbsd/openbsd5.4/openbsd-5.4-amd64.txt - delete mode 100644 tests/isodata/openbsd/openbsd5.4/openbsd-5.4-i386.txt - delete mode 100644 tests/isodata/openbsd/openbsd5.5/openbsd-5.5-amd64.txt - delete mode 100644 tests/isodata/openbsd/openbsd5.5/openbsd-5.5-i386.txt - delete mode 100644 tests/isodata/openbsd/openbsd5.6/openbsd-5.6-amd64.txt - delete mode 100644 tests/isodata/openbsd/openbsd5.6/openbsd-5.6-i386.txt - delete mode 100644 tests/isodata/openbsd/openbsd5.7/openbsd-5.7-amd64.txt - delete mode 100644 tests/isodata/openbsd/openbsd5.7/openbsd-5.7-i386.txt - delete mode 100644 tests/isodata/openbsd/openbsd5.8/openbsd-5.8-amd64.txt - delete mode 100644 tests/isodata/openbsd/openbsd5.8/openbsd-5.8-i386.txt - delete mode 100644 tests/isodata/openbsd/openbsd5.9/openbsd-5.9-amd64.txt - delete mode 100644 tests/isodata/openbsd/openbsd5.9/openbsd-5.9-i386.txt - delete mode 100644 tests/isodata/openbsd/openbsd6.0/openbsd-6.0-amd64.txt - delete mode 100644 tests/isodata/openbsd/openbsd6.0/openbsd-6.0-i386.txt - delete mode 100644 tests/isodata/openbsd/openbsd6.1/openbsd-6.1-amd64.txt - delete mode 100644 tests/isodata/openbsd/openbsd6.1/openbsd-6.1-i386.txt - delete mode 100644 tests/isodata/openbsd/openbsd6.2/openbsd-6.2-amd64.txt - delete mode 100644 tests/isodata/openbsd/openbsd6.2/openbsd-6.2-i386.txt - delete mode 100644 tests/isodata/openbsd/openbsd6.3/openbsd-6.3-amd64.txt - delete mode 100644 tests/isodata/openbsd/openbsd6.3/openbsd-6.3-i386.txt - delete mode 100644 tests/isodata/opensuse/opensuse12.2/openSUSE-12.2-DVD-i586.iso.txt - delete mode 100644 tests/isodata/opensuse/opensuse12.2/openSUSE-12.2-DVD-x86_64.iso.txt - delete mode 100644 tests/isodata/opensuse/opensuse12.3/openSUSE-12.3-DVD-i586.iso.txt - delete mode 100644 tests/isodata/opensuse/opensuse12.3/openSUSE-12.3-DVD-x86_64.iso.txt - delete mode 100644 tests/isodata/opensuse/opensuse13.1/openSUSE-13.1-GNOME-Live-i686.iso.txt - delete mode 100644 tests/isodata/opensuse/opensuse13.1/openSUSE-13.1-GNOME-Live-x86_64.iso.txt - delete mode 100644 tests/isodata/opensuse/opensuse13.1/openSUSE-13.1-KDE-Live-i686.iso.txt - delete mode 100644 tests/isodata/opensuse/opensuse13.1/openSUSE-13.1-KDE-Live-x86_64.iso.txt - delete mode 100644 tests/isodata/opensuse/opensuse13.2/openSUSE-13.2-DVD-i586.iso.txt - delete mode 100644 tests/isodata/opensuse/opensuse13.2/openSUSE-13.2-DVD-x86_64.iso.txt - delete mode 100644 tests/isodata/opensuse/opensuse15.0/openSUSE-Leap-15.0-DVD-x86_64.iso.txt - delete mode 100644 tests/isodata/opensuse/opensuse15.0/openSUSE-Leap-15.0-NET-x86_64.iso.txt - delete mode 100644 tests/isodata/opensuse/opensuse42.1/openSUSE-42.1-DVD-x86_64.iso.txt - delete mode 100644 tests/isodata/opensuse/opensuse42.2/openSUSE-Leap-42.2-DVD-x86_64.iso.txt - delete mode 100644 tests/isodata/opensuse/opensuse42.3/openSUSE-Leap-42.3-DVD-x86_64.iso.txt - delete mode 100644 tests/isodata/opensuse/opensuse42.3/openSUSE-Leap-42.3-NET-x86_64.iso.txt - delete mode 100644 tests/isodata/opensuse/opensusetumbleweed/openSUSE-Tumbleweed-DVD-i586-Current.iso.txt - delete mode 100644 tests/isodata/opensuse/opensusetumbleweed/openSUSE-Tumbleweed-DVD-x86_64-Current.iso.txt - delete mode 100644 tests/isodata/opensuse/opensusetumbleweed/openSUSE-Tumbleweed-Kubic-DVD-x86_64-Snapshot20180420-Media.iso.txt - delete mode 100644 tests/isodata/opensuse/opensusetumbleweed/openSUSE-Tumbleweed-NET-i586-Snapshot20180420-Media.iso.txt - delete mode 100644 tests/isodata/opensuse/opensusetumbleweed/openSUSE-Tumbleweed-NET-x86_64-Snapshot20180420-Media.iso - delete mode 100644 tests/isodata/popos/popos17.10/pop-os_amd64_intel_57.iso.txt - delete mode 100644 tests/isodata/popos/popos17.10/pop-os_amd64_nvidia_46.iso.txt - delete mode 100644 tests/isodata/popos/popos18.04/pop-os_18.04_amd64_intel_32.iso.txt - delete mode 100644 tests/isodata/popos/popos18.04/pop-os_18.04_amd64_nvidia_32.iso.txt - delete mode 100644 tests/isodata/popos/popos18.10/pop-os_18.10_amd64_intel_3.iso.txt - delete mode 100644 tests/isodata/popos/popos18.10/pop-os_18.10_amd64_nvidia_3.iso.txt - delete mode 100644 tests/isodata/pureos/pureos8/pureos-8.0-gnome-live_20180904-amd64.hybrid.iso.txt - delete mode 100644 tests/isodata/pureos/pureos8/pureos-8.0-gnome-live_20181210-amd64.hybrid.iso.txt - delete mode 100644 tests/isodata/pureos/pureos8/pureos-8.0-gnome-live_20190128-amd64.hybrid.iso.txt - delete mode 100644 tests/isodata/pureos/pureos8/pureos-8.0-gnome-live_20190210-amd64.hybrid.iso.txt - delete mode 100644 tests/isodata/rhel/rhel-atomic-7.0/RHEL-Atomic-Host-Installer-7.0.0-Beta.iso.txt - delete mode 100644 tests/isodata/rhel/rhel-atomic-7.1/rhel-atomic-installer-7.1-0.x86_64.iso.txt - delete mode 100644 tests/isodata/rhel/rhel-atomic-7.1/rhel-atomic-installer-7.1-1.x86_64.iso.txt - delete mode 100644 tests/isodata/rhel/rhel-atomic-7.2/rhel-atomic-installer-7.2-10.x86_64.iso.txt - delete mode 100644 tests/isodata/rhel/rhel-atomic-7.2/rhel-atomic-installer-7.2-11.x86_64.iso.txt - delete mode 100644 tests/isodata/rhel/rhel-atomic-7.2/rhel-atomic-installer-7.2-12.x86_64.iso.txt - delete mode 100644 tests/isodata/rhel/rhel-atomic-7.2/rhel-atomic-installer-7.2-13.x86_64.iso.txt - delete mode 100644 tests/isodata/rhel/rhel-atomic-7.3/rhel-atomic-installer-7.3.0-3.x86_64.iso.txt - delete mode 100644 tests/isodata/rhel/rhel-atomic-7.3/rhel-atomic-installer-7.3.1-1.x86_64.iso.txt - delete mode 100644 tests/isodata/rhel/rhel-atomic-7.3/rhel-atomic-installer-7.3.2-1.x86_64.iso.txt - delete mode 100644 tests/isodata/rhel/rhel-atomic-7.3/rhel-atomic-installer-7.3.3-1.x86_64.iso.txt - delete mode 100644 tests/isodata/rhel/rhel-atomic-7.4/rhel-atomic-installer-7.4.0-1.x86_64.iso.txt - delete mode 100644 tests/isodata/rhel/rhel5.10/rhel-server-5.10-i386-dvd.iso.txt - delete mode 100644 tests/isodata/rhel/rhel5.10/rhel-server-5.10-x86_64-dvd.iso.txt - delete mode 100644 tests/isodata/rhel/rhel5.11/rhel-server-5.11-x86_64-dvd.iso.txt - delete mode 100644 tests/isodata/rhel/rhel5.5/rhel-server-5.5-x86_64-dvd.iso.txt - delete mode 100644 tests/isodata/rhel/rhel5.6/rhel-client-5.6-i386-dvd.iso.txt - delete mode 100644 tests/isodata/rhel/rhel5.6/rhel-client-5.6-x86_64-dvd1.iso.txt - delete mode 100644 tests/isodata/rhel/rhel5.6/rhel-client-5.6-x86_64-dvd2.iso.txt - delete mode 100644 tests/isodata/rhel/rhel5.6/rhel-server-5.6-i386-dvd.iso.txt - delete mode 100644 tests/isodata/rhel/rhel5.6/rhel-server-5.6-x86_64-dvd.iso.txt - delete mode 100644 tests/isodata/rhel/rhel5.7/rhel-client-5.7-i386-dvd.iso.txt - delete mode 100644 tests/isodata/rhel/rhel5.7/rhel-client-5.7-x86_64-dvd1.iso.txt - delete mode 100644 tests/isodata/rhel/rhel5.7/rhel-client-5.7-x86_64-dvd2.iso.txt - delete mode 100644 tests/isodata/rhel/rhel5.7/rhel-server-5.7-i386-dvd.iso.txt - delete mode 100644 tests/isodata/rhel/rhel5.7/rhel-server-5.7-x86_64-dvd.iso.txt - delete mode 100644 tests/isodata/rhel/rhel5.8/rhel-5.8-i386.iso.txt - delete mode 100644 tests/isodata/rhel/rhel5.8/rhel-5.8-x86_64.iso.txt - delete mode 100644 tests/isodata/rhel/rhel5.9/rhel-server-5.9-i386-dvd.iso.txt - delete mode 100644 tests/isodata/rhel/rhel5.9/rhel-server-5.9-x86_64-dvd.iso.txt - delete mode 100644 tests/isodata/rhel/rhel6.0/rhel-server-6.0-i386-dvd.iso.txt - delete mode 100644 tests/isodata/rhel/rhel6.0/rhel-server-6.0-x86_64-boot.iso.txt - delete mode 100644 tests/isodata/rhel/rhel6.0/rhel-server-6.0-x86_64-dvd.iso.txt - delete mode 100644 tests/isodata/rhel/rhel6.0/rhel-workstation-6.0-i386-dvd.iso.txt - delete mode 100644 tests/isodata/rhel/rhel6.0/rhel-workstation-6.0-x86_64-dvd.iso.txt - delete mode 100644 tests/isodata/rhel/rhel6.1/rhel-client-6.1-i386-dvd.iso.txt - delete mode 100644 tests/isodata/rhel/rhel6.1/rhel-client-6.1-x86_64-dvd.iso.txt - delete mode 100644 tests/isodata/rhel/rhel6.1/rhel-server-6.1-i386-dvd.iso.txt - delete mode 100644 tests/isodata/rhel/rhel6.1/rhel-server-6.1-x86_64-dvd.iso.txt - delete mode 100644 tests/isodata/rhel/rhel6.1/rhel-workstation-6.1-i386-dvd.iso.txt - delete mode 100644 tests/isodata/rhel/rhel6.1/rhel-workstation-6.1-x86_64-dvd.iso.txt - delete mode 100644 tests/isodata/rhel/rhel6.10/RHEL-6.10-20180525.0-Server-i386-dvd1.iso.txt - delete mode 100644 tests/isodata/rhel/rhel6.10/RHEL-6.10-20180525.0-Server-ppc64-dvd1.iso.txt - delete mode 100644 tests/isodata/rhel/rhel6.10/RHEL-6.10-20180525.0-Server-s390x-dvd1.iso.txt - delete mode 100644 tests/isodata/rhel/rhel6.10/RHEL-6.10-20180525.0-Server-x86_64-dvd1.iso.txt - delete mode 100644 tests/isodata/rhel/rhel6.2/rhel-client-6.2-i386-dvd.iso.txt - delete mode 100644 tests/isodata/rhel/rhel6.2/rhel-client-6.2-x86_64-dvd.iso.txt - delete mode 100644 tests/isodata/rhel/rhel6.2/rhel-server-6.2-i386-dvd.iso.txt - delete mode 100644 tests/isodata/rhel/rhel6.2/rhel-server-6.2-x86_64-dvd.iso.txt - delete mode 100644 tests/isodata/rhel/rhel6.2/rhel-workstation-6.2-i386-dvd.iso.txt - delete mode 100644 tests/isodata/rhel/rhel6.2/rhel-workstation-6.2-x86_64-dvd.iso.txt - delete mode 100644 tests/isodata/rhel/rhel6.3/rhel-server-6.3-i386-dvd.iso.txt - delete mode 100644 tests/isodata/rhel/rhel6.3/rhel-server-6.3-x86_64-dvd.iso.txt - delete mode 100644 tests/isodata/rhel/rhel6.3/rhel-workstation-6.3-i386-dvd.iso.txt - delete mode 100644 tests/isodata/rhel/rhel6.3/rhel-workstation-6.3-x86_64-dvd.iso.txt - delete mode 100644 tests/isodata/rhel/rhel6.4/rhel-server-6.4-i386-dvd.iso.txt - delete mode 100644 tests/isodata/rhel/rhel6.4/rhel-server-6.4-x86_64-dvd.iso.txt - delete mode 100644 tests/isodata/rhel/rhel6.4/rhel-workstation-6.4-i386-dvd.iso.txt - delete mode 100644 tests/isodata/rhel/rhel6.4/rhel-workstation-6.4-x86_64-dvd.iso.txt - delete mode 100644 tests/isodata/rhel/rhel6.5/RHEL6.5-20131213.0-Workstation-x86_64-DVD1.iso.txt - delete mode 100644 tests/isodata/rhel/rhel6.6/rhel-server-6.6-x86_64-dvd.iso.txt - delete mode 100644 tests/isodata/rhel/rhel6.7/rhel-server-6.7-i386-dvd.iso.txt - delete mode 100644 tests/isodata/rhel/rhel6.7/rhel-server-6.7-x86_64-dvd.iso.txt - delete mode 100644 tests/isodata/rhel/rhel6.8/rhel-server-6.8-x86_64-dvd.iso.txt - delete mode 100644 tests/isodata/rhel/rhel6.9/RHEL-6.9-20170309.0-Server-i386-dvd1.iso.txt - delete mode 100644 tests/isodata/rhel/rhel6.9/RHEL-6.9-20170309.0-Server-x86_64-dvd1.iso.txt - delete mode 100644 tests/isodata/rhel/rhel7.0/RHEL-7.0-20140507.0-Client-x86_64-dvd1.iso.txt - delete mode 100644 tests/isodata/rhel/rhel7.0/RHEL-7.0-20140507.0-ComputeNode-x86_64-dvd1.iso.txt - delete mode 100644 tests/isodata/rhel/rhel7.0/RHEL-7.0-20140507.0-Server-x86_64-dvd1.iso.txt - delete mode 100644 tests/isodata/rhel/rhel7.0/RHEL-7.0-20140507.0-Workstation-x86_64-dvd1.iso.txt - delete mode 100644 tests/isodata/rhel/rhel7.0/RHELSA-1.5-20141017.1-Server-aarch64-dvd1.iso.txt - delete mode 100644 tests/isodata/rhel/rhel7.1/RHEL-7.1-20150219.1-Client-x86_64-dvd1.iso.txt - delete mode 100644 tests/isodata/rhel/rhel7.1/RHEL-7.1-20150219.1-Server-x86_64-dvd1.iso.txt - delete mode 100644 tests/isodata/rhel/rhel7.1/RHEL-7.1-20150219.1-Workstation-x86_64-dvd1.iso.txt - delete mode 100644 tests/isodata/rhel/rhel7.1/RHELSA-7.1-20150616.0-Server-aarch64-dvd1.iso.txt - delete mode 100644 tests/isodata/rhel/rhel7.2/rhel-computenode-7.2-x86_64-dvd.iso.txt - delete mode 100644 tests/isodata/rhel/rhel7.2/rhel-server-7.2-aarch64-dvd.iso.txt - delete mode 100644 tests/isodata/rhel/rhel7.2/rhel-server-7.2-ppc64-dvd.iso.txt - delete mode 100644 tests/isodata/rhel/rhel7.2/rhel-server-7.2-ppc64le-dvd.iso.txt - delete mode 100644 tests/isodata/rhel/rhel7.2/rhel-server-7.2-s390x-dvd.iso.txt - delete mode 100644 tests/isodata/rhel/rhel7.2/rhel-server-7.2-x86_64-dvd.iso.txt - delete mode 100644 tests/isodata/rhel/rhel7.3/RHEL-7.3-20161019.0-Server-aarch64-dvd1.iso.txt - delete mode 100644 tests/isodata/rhel/rhel7.3/RHEL-7.3-20161019.0-Server-ppc64-dvd1.iso.txt - delete mode 100644 tests/isodata/rhel/rhel7.3/RHEL-7.3-20161019.0-Server-ppc64le-dvd1.iso.txt - delete mode 100644 tests/isodata/rhel/rhel7.3/RHEL-7.3-20161019.0-Server-s390x-dvd1.iso.txt - delete mode 100644 tests/isodata/rhel/rhel7.3/RHEL-7.3-20161019.0-Server-x86_64-dvd1.iso.txt - delete mode 100644 tests/isodata/rhel/rhel7.4/RHEL-7.4-20170711.0-Server-aarch64-dvd1.iso.txt - delete mode 100644 tests/isodata/rhel/rhel7.4/RHEL-7.4-20170711.0-Server-ppc64-dvd1.iso.txt - delete mode 100644 tests/isodata/rhel/rhel7.4/RHEL-7.4-20170711.0-Server-ppc64le-dvd1.iso.txt - delete mode 100644 tests/isodata/rhel/rhel7.4/RHEL-7.4-20170711.0-Server-s390x-dvd1.iso.txt - delete mode 100644 tests/isodata/rhel/rhel7.4/RHEL-7.4-20170711.0-Server-x86_64-dvd1.iso.txt - delete mode 100644 tests/isodata/rhel/rhel7.5/RHEL-7.5-20180322.0-Server-ppc64-dvd1.iso.txt - delete mode 100644 tests/isodata/rhel/rhel7.5/RHEL-7.5-20180322.0-Server-ppc64le-dvd1.iso.txt - delete mode 100644 tests/isodata/rhel/rhel7.5/RHEL-7.5-20180322.0-Server-s390x-dvd1.iso.txt - delete mode 100644 tests/isodata/rhel/rhel7.5/RHEL-7.5-20180322.0-Server-x86_64-dvd1.iso.txt - delete mode 100644 tests/isodata/rhel/rhel7.6/RHEL-7.6-20181010.0-Server-ppc64-boot.iso.txt - delete mode 100644 tests/isodata/rhel/rhel7.6/RHEL-7.6-20181010.0-Server-ppc64-dvd1.iso.txt - delete mode 100644 tests/isodata/rhel/rhel7.6/RHEL-7.6-20181010.0-Server-ppc64le-boot.iso.txt - delete mode 100644 tests/isodata/rhel/rhel7.6/RHEL-7.6-20181010.0-Server-ppc64le-dvd1.iso.txt - delete mode 100644 tests/isodata/rhel/rhel7.6/RHEL-7.6-20181010.0-Server-s390x-boot.iso.txt - delete mode 100644 tests/isodata/rhel/rhel7.6/RHEL-7.6-20181010.0-Server-s390x-dvd1.iso.txt - delete mode 100644 tests/isodata/rhel/rhel7.6/RHEL-7.6-20181010.0-Server-x86_64-boot.iso.txt - delete mode 100644 tests/isodata/rhel/rhel7.6/RHEL-7.6-20181010.0-Server-x86_64-dvd1.iso.txt - delete mode 100644 tests/isodata/rhel/rhel7.6/RHEL-7.6-20181010.0-Workstation-x86_64-boot.iso.txt - delete mode 100644 tests/isodata/rhel/rhel7.6/RHEL-7.6-20181010.0-Workstation-x86_64-dvd1.iso.txt - delete mode 100644 tests/isodata/rhel/rhel8.0/RHEL-8.0-20181113.1-aarch64-boot.iso.txt - delete mode 100644 tests/isodata/rhel/rhel8.0/RHEL-8.0-20181113.1-aarch64-dvd1.iso.txt - delete mode 100644 tests/isodata/rhel/rhel8.0/RHEL-8.0-20181113.1-ppc64le-boot.iso.txt - delete mode 100644 tests/isodata/rhel/rhel8.0/RHEL-8.0-20181113.1-ppc64le-dvd1.iso.txt - delete mode 100644 tests/isodata/rhel/rhel8.0/RHEL-8.0-20181113.1-s390x-boot.iso.txt - delete mode 100644 tests/isodata/rhel/rhel8.0/RHEL-8.0-20181113.1-s390x-dvd1.iso.txt - delete mode 100644 tests/isodata/rhel/rhel8.0/RHEL-8.0-20181113.1-x86_64-boot.iso.txt - delete mode 100644 tests/isodata/rhel/rhel8.0/RHEL-8.0-20181113.1-x86_64-dvd1.iso.txt - delete mode 100644 tests/isodata/sled/sled11sp1/SLED-11-SP1-DVD-i586-GM-DVD1.iso.txt - delete mode 100644 tests/isodata/sled/sled11sp1/SLED-11-SP1-DVD-x86_64-GM-DVD1.iso.txt - delete mode 100644 tests/isodata/sled/sled11sp2/SLED-11-SP2-DVD-i586-GM-DVD1.iso.txt - delete mode 100644 tests/isodata/sled/sled11sp2/SLED-11-SP2-DVD-x86_64-GM-DVD1.iso.txt - delete mode 100644 tests/isodata/sled/sled11sp3/SLED-11-SP3-DVD-i586-GM-DVD1.iso.txt - delete mode 100644 tests/isodata/sled/sled11sp3/SLED-11-SP3-DVD-x86_64-GM-DVD1.iso.txt - delete mode 100644 tests/isodata/sled/sled11sp4/SLED-11-SP4-DVD-i586-GM-DVD1.iso.txt - delete mode 100644 tests/isodata/sled/sled11sp4/SLED-11-SP4-DVD-x86_64-GM-DVD1.iso.txt - delete mode 100644 tests/isodata/sled/sled12/SLE-12-Desktop-DVD-x86_64-GM-DVD1.iso.txt - delete mode 100644 tests/isodata/sled/sled12sp1/SLE-12-SP1-Desktop-DVD-x86_64-GM-DVD1.iso.txt - delete mode 100644 tests/isodata/sled/sled12sp2/SLE-12-SP2-Desktop-DVD-x86_64-GM-DVD1.iso.txt - delete mode 100644 tests/isodata/sled/sled12sp3/SLE-12-SP3-Desktop-DVD-x86_64-GM-DVD1.iso.txt - delete mode 100644 tests/isodata/sles/caasp1.0/SUSE-CaaS-Platform-1.0-DVD-x86_64-GM-DVD1.iso.txt - delete mode 100644 tests/isodata/sles/caasp2.0/SUSE-CaaS-Platform-2.0-DVD-x86_64-GM-DVD1.iso.txt - delete mode 100644 tests/isodata/sles/caasp3.0/SUSE-CaaS-Platform-3.0-DVD-x86_64-GM-DVD1.iso.txt - delete mode 100644 tests/isodata/sles/sle15/SLE-15-Installer-DVD-aarch64-GM-DVD1.iso.txt - delete mode 100644 tests/isodata/sles/sle15/SLE-15-Installer-DVD-ppc64le-GM-DVD1.iso.txt - delete mode 100644 tests/isodata/sles/sle15/SLE-15-Installer-DVD-s390x-GM-DVD1.iso.txt - delete mode 100644 tests/isodata/sles/sle15/SLE-15-Installer-DVD-x86_64-GM-DVD1.iso.txt - delete mode 100644 tests/isodata/sles/sles11sp1/SLES-11-SP1-DVD-i586-GM-DVD1.iso.txt - delete mode 100644 tests/isodata/sles/sles11sp1/SLES-11-SP1-DVD-x86_64-GM-DVD1.iso.txt - delete mode 100644 tests/isodata/sles/sles11sp2/SLES-11-SP2-DVD-i586-GM-DVD1.iso.txt - delete mode 100644 tests/isodata/sles/sles11sp2/SLES-11-SP2-DVD-x86_64-GM-DVD1.iso.txt - delete mode 100644 tests/isodata/sles/sles11sp3/SLES-11-SP3-DVD-i586-GM-DVD1.iso.txt - delete mode 100644 tests/isodata/sles/sles11sp3/SLES-11-SP3-DVD-x86_64-GM-DVD1.iso.txt - delete mode 100644 tests/isodata/sles/sles11sp4/SLES-11-SP4-DVD-i586-GM-DVD1.iso.txt - delete mode 100644 tests/isodata/sles/sles11sp4/SLES-11-SP4-DVD-x86_64-GM-DVD1.iso.txt - delete mode 100644 tests/isodata/sles/sles12/SLE-12-Server-DVD-x86_64-GM-DVD1.iso.txt - delete mode 100644 tests/isodata/sles/sles12sp1/SLE-12-SP1-Server-DVD-x86_64-GM-DVD1.iso.txt - delete mode 100644 tests/isodata/sles/sles12sp2/SLE-12-SP2-Server-DVD-aarch64-GM-DVD1.iso.txt - delete mode 100644 tests/isodata/sles/sles12sp2/SLE-12-SP2-Server-DVD-ppc64le-GM-DVD1.iso.txt - delete mode 100644 tests/isodata/sles/sles12sp2/SLE-12-SP2-Server-DVD-s390x-GM-DVD1.iso.txt - delete mode 100644 tests/isodata/sles/sles12sp2/SLE-12-SP2-Server-DVD-x86_64-GM-DVD1.iso.txt - delete mode 100644 tests/isodata/sles/sles12sp3/SLE-12-SP3-Server-DVD-aarch64-GM-DVD1.iso.txt - delete mode 100644 tests/isodata/sles/sles12sp3/SLE-12-SP3-Server-DVD-ppc64le-GM-DVD1.iso.txt - delete mode 100644 tests/isodata/sles/sles12sp3/SLE-12-SP3-Server-DVD-s390x-GM-DVD1.iso.txt - delete mode 100644 tests/isodata/sles/sles12sp3/SLE-12-SP3-Server-DVD-x86_64-GM-DVD1.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu10.04/ubuntu-10.04.4-desktop-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu11.04/ubuntu-11.04-desktop-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu11.10/ubuntu-11.10-desktop-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu11.10/ubuntu-11.10-desktop-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu11.10/ubuntu-11.10-server-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu11.10/ubuntu-11.10-server-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu12.04/ubuntu-12.04-alternate-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu12.04/ubuntu-12.04-alternate-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu12.04/ubuntu-12.04-desktop-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu12.04/ubuntu-12.04-desktop-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu12.04/ubuntu-12.04-server-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu12.04/ubuntu-12.04-server-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu12.10/ubuntu-12.10-desktop-amd64+mac.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu12.10/ubuntu-12.10-desktop-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu12.10/ubuntu-12.10-desktop-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu12.10/ubuntu-12.10-server-amd64+mac.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu12.10/ubuntu-12.10-server-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu12.10/ubuntu-12.10-server-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu13.04/ubuntu-13.04-beta2-desktop-amd64+mac.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu13.04/ubuntu-13.04-beta2-desktop-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu13.04/ubuntu-13.04-beta2-desktop-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu13.04/ubuntu-13.04-beta2-server-amd64+mac.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu13.04/ubuntu-13.04-beta2-server-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu13.04/ubuntu-13.04-beta2-server-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu13.10/ubuntu-13.10-desktop-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu13.10/ubuntu-13.10-desktop-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu13.10/ubuntu-13.10-server-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu13.10/ubuntu-13.10-server-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu14.04/ubuntu-14.04.1-desktop-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu14.04/ubuntu-14.04.1-desktop-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu14.04/ubuntu-14.04.1-server-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu14.04/ubuntu-14.04.1-server-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu14.10/ubuntu-14.10-desktop-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu14.10/ubuntu-14.10-desktop-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu14.10/ubuntu-14.10-server-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu14.10/ubuntu-14.10-server-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu15.04/ubuntu-15.04-desktop-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu15.04/ubuntu-15.04-desktop-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu15.04/ubuntu-15.04-server-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu15.04/ubuntu-15.04-server-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu15.10/ubuntu-15.10-desktop-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu15.10/ubuntu-15.10-desktop-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu15.10/ubuntu-15.10-server-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu15.10/ubuntu-15.10-server-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu16.04/ubuntu-16.04-desktop-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu16.04/ubuntu-16.04-desktop-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu16.04/ubuntu-16.04-server-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu16.04/ubuntu-16.04-server-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu16.04/ubuntu-16.04-server-powerpc.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu16.04/ubuntu-16.04-server-ppc64el.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu16.04/ubuntu-16.04-server-s390x.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu16.10/ubuntu-16.10-desktop-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu16.10/ubuntu-16.10-desktop-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu16.10/ubuntu-16.10-server-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu16.10/ubuntu-16.10-server-arm64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu16.10/ubuntu-16.10-server-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu16.10/ubuntu-16.10-server-powerpc.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu16.10/ubuntu-16.10-server-ppc64el.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu16.10/ubuntu-16.10-server-s390x.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu17.04/ubuntu-17.04-desktop-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu17.04/ubuntu-17.04-desktop-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu17.04/ubuntu-17.04-server-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu17.04/ubuntu-17.04-server-arm64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu17.04/ubuntu-17.04-server-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu17.04/ubuntu-17.04-server-ppc64el.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu17.04/ubuntu-17.04-server-s390x.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu17.10/ubuntu-17.10-desktop-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu17.10/ubuntu-17.10-server-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu17.10/ubuntu-17.10-server-arm64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu17.10/ubuntu-17.10-server-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu17.10/ubuntu-17.10-server-ppc64el.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu17.10/ubuntu-17.10-server-s390x.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu18.04/ubuntu-18.04-desktop-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu18.04/ubuntu-18.04-server-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu18.04/ubuntu-18.04-server-arm64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu18.04/ubuntu-18.04-server-ppc64el.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu18.04/ubuntu-18.04-server-s390x.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu18.04/ubuntu-18.04.1-desktop-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu18.04/ubuntu-18.04.1.0-live-server-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu18.10/cosmic-desktop-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu18.10/cosmic-live-server-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu18.10/cosmic-server-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu18.10/cosmic-server-arm64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu18.10/cosmic-server-ppc64el.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu18.10/cosmic-server-s390x.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu19.04/disco-desktop-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu19.04/disco-server-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu19.04/disco-server-arm64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu19.04/disco-server-ppc64el.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu19.04/disco-server-s390x.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu5.04/ubuntu-5.04-install-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu5.04/ubuntu-5.04-install-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu5.04/ubuntu-5.04-install-powerpc.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu5.04/ubuntu-5.04-live-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu5.04/ubuntu-5.04-live-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu5.04/ubuntu-5.04-live-powerpc.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu5.10/ubuntu-5.10-dvd-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu5.10/ubuntu-5.10-dvd-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu5.10/ubuntu-5.10-dvd-powerpc.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu5.10/ubuntu-5.10-install-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu5.10/ubuntu-5.10-install-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu5.10/ubuntu-5.10-install-powerpc.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu5.10/ubuntu-5.10-live-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu5.10/ubuntu-5.10-live-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu5.10/ubuntu-5.10-live-powerpc.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-alternate-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-alternate-hppa.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-alternate-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-alternate-ia64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-alternate-powerpc.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-desktop-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-desktop-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-desktop-powerpc.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-dvd-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-dvd-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-dvd-powerpc.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-server-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-server-hppa.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-server-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-server-ia64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-server-powerpc.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-server-sparc.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-alternate-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-alternate-hppa.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-alternate-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-alternate-ia64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-alternate-powerpc.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-desktop-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-desktop-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-desktop-powerpc.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-dvd-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-dvd-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-dvd-powerpc.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-server-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-server-hppa.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-server-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-server-ia64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-server-powerpc.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-server-sparc.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.2-server-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.2-server-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.2-server-powerpc.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.2-server-sparc.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu6.10/ubuntu-6.10-alternate-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu6.10/ubuntu-6.10-alternate-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu6.10/ubuntu-6.10-alternate-powerpc.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu6.10/ubuntu-6.10-desktop-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu6.10/ubuntu-6.10-desktop-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu6.10/ubuntu-6.10-desktop-powerpc.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu6.10/ubuntu-6.10-server-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu6.10/ubuntu-6.10-server-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu6.10/ubuntu-6.10-server-powerpc.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu6.10/ubuntu-6.10-server-sparc.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu7.04/ubuntu-7.04-alternate-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu7.04/ubuntu-7.04-alternate-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu7.04/ubuntu-7.04-desktop-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu7.04/ubuntu-7.04-desktop-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu7.04/ubuntu-7.04-server-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu7.04/ubuntu-7.04-server-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu7.04/ubuntu-7.04-server-sparc.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu7.10/ubuntu-7.10-alternate-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu7.10/ubuntu-7.10-alternate-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu7.10/ubuntu-7.10-desktop-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu7.10/ubuntu-7.10-desktop-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu7.10/ubuntu-7.10-server-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu7.10/ubuntu-7.10-server-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu7.10/ubuntu-7.10-server-sparc.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04-alternate-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04-alternate-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04-desktop-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04-desktop-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04-dvd-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04-dvd-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04-server-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04-server-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.1-alternate-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.1-alternate-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.1-desktop-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.1-desktop-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.1-server-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.1-server-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.2-alternate-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.2-alternate-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.2-desktop-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.2-desktop-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.2-server-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.2-server-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.3-alternate-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.3-alternate-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.3-desktop-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.3-desktop-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.3-server-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.3-server-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.4-alternate-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.4-alternate-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.4-desktop-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.4-desktop-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.4-server-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.4-server-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu8.10/ubuntu-8.10-alternate-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu8.10/ubuntu-8.10-alternate-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu8.10/ubuntu-8.10-desktop-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu8.10/ubuntu-8.10-desktop-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu8.10/ubuntu-8.10-server-amd64.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu9.04/ubuntu-9.04-desktop-i386.iso.txt - delete mode 100644 tests/isodata/ubuntu/ubuntu9.04/ubuntu-9.04-server-i386.iso.txt - delete mode 100644 tests/isodata/voidlinux/voidlinux/void-live-i686-20181111.iso.txt - delete mode 100644 tests/isodata/voidlinux/voidlinux/void-live-x86_64-20181111.iso.txt - delete mode 100644 tests/isodata/windows/win10/14393.0.160715-1616.RS1_RELEASE_CLIENTENTERPRISE_S_EVAL_X64FRE_EN-US.ISO.txt - delete mode 100644 tests/isodata/windows/win10/14393.0.160715-1616.RS1_RELEASE_CLIENTENTERPRISE_S_EVAL_X86FRE_EN-GB.ISO.txt - delete mode 100644 tests/isodata/windows/win10/en_windows_10_education_n_version_1511_updated_apr_2016_x64_dvd_8705540.iso.txt - delete mode 100644 tests/isodata/windows/win10/en_windows_10_education_n_version_1607_updated_jul_2016_x86_dvd_9055560.iso.txt - delete mode 100644 tests/isodata/windows/win10/en_windows_10_education_n_x64_dvd_6847236.iso.txt - delete mode 100644 tests/isodata/windows/win10/en_windows_10_education_x86_dvd_6848121.iso.txt - delete mode 100644 tests/isodata/windows/win10/en_windows_10_enterprise_2015_ltsb_n_x64_dvd_6848316.iso.txt - delete mode 100644 tests/isodata/windows/win10/en_windows_10_enterprise_2015_ltsb_x64_dvd_6848446.iso.txt - delete mode 100644 tests/isodata/windows/win10/en_windows_10_enterprise_n_x64_dvd_6852541.iso.txt - delete mode 100644 tests/isodata/windows/win10/en_windows_10_enterprise_x64_dvd_6851151.iso.txt - delete mode 100644 tests/isodata/windows/win10/en_windows_10_enterprise_x86_dvd_6851156.iso.txt - delete mode 100644 tests/isodata/windows/win10/en_windows_10_multi-edition_version_1709_updated_sept_2017_x64_dvd_100090817.iso.txt - delete mode 100644 tests/isodata/windows/win10/en_windows_10_multiple_editions_x64_dvd_6846432.iso.txt - delete mode 100644 tests/isodata/windows/win10/en_windows_10_n_multiple_editions_version_1607_updated_jul_2016_x64_dvd_9053861.iso.txt - delete mode 100644 tests/isodata/windows/win10/en_windows_10_n_multiple_editions_x64_dvd_6846434.iso.txt - delete mode 100644 tests/isodata/windows/win10/fr_windows_10_enterprise_version_1607_updated_jul_2016_x86_dvd_9057460.iso.txt - delete mode 100644 tests/isodata/windows/win2k/Win2000S-disk.iso.txt - delete mode 100644 tests/isodata/windows/win2k12/en_microsoft_hyper-v_server_2012_debug_checked_build_x64_dvd_917521.iso.txt - delete mode 100644 tests/isodata/windows/win2k12/en_microsoft_hyper-v_server_2012_x64_dvd_915600.iso.txt - delete mode 100644 tests/isodata/windows/win2k12/en_server_install_disc_windows_server_2012_essentials_x64_dvd_1022281.iso.txt - delete mode 100644 tests/isodata/windows/win2k12/en_windows_server_2012_debug_checked_build_x64_dvd_917505.iso.txt - delete mode 100644 tests/isodata/windows/win2k12/en_windows_server_2012_storage_server_and_foundation_x64_dvd_915793.iso.txt - delete mode 100644 tests/isodata/windows/win2k12/en_windows_server_2012_vl_x64_dvd_917758.iso.txt - delete mode 100644 tests/isodata/windows/win2k12/en_windows_server_2012_x64_dvd_915478.iso.txt - delete mode 100644 tests/isodata/windows/win2k12r2/en_microsoft_hyper-v_server_2012_r2_debug_checked_x64_dvd_2708216.iso.txt - delete mode 100644 tests/isodata/windows/win2k12r2/en_microsoft_hyper-v_server_2012_r2_x64_dvd_2708236.iso.txt - delete mode 100644 tests/isodata/windows/win2k12r2/en_windows_server_2012_r2_debug_checked_x64_dvd_2707937.iso.txt - delete mode 100644 tests/isodata/windows/win2k12r2/en_windows_server_2012_r2_essentials_debug_checked_x64_dvd_2707170.iso.txt - delete mode 100644 tests/isodata/windows/win2k12r2/en_windows_server_2012_r2_essentials_with_update_x64_dvd_6052824.iso.txt - delete mode 100644 tests/isodata/windows/win2k12r2/en_windows_server_2012_r2_essentials_x64_dvd_2707177.iso.txt - delete mode 100644 tests/isodata/windows/win2k12r2/en_windows_server_2012_r2_vl_with_update_x64_dvd_6052766.iso.txt - delete mode 100644 tests/isodata/windows/win2k12r2/en_windows_server_2012_r2_vl_x64_dvd_3319595.iso.txt - delete mode 100644 tests/isodata/windows/win2k12r2/en_windows_server_2012_r2_with_update_x64_dvd_4065220.iso.txt - delete mode 100644 tests/isodata/windows/win2k12r2/en_windows_server_2012_r2_with_update_x64_dvd_6052708.iso.txt - delete mode 100644 tests/isodata/windows/win2k12r2/en_windows_server_2012_r2_x64_dvd_2707946.iso.txt - delete mode 100644 tests/isodata/windows/win2k12r2/en_windows_storage_server_2012_r2_and_windows_server_2012_r2_foundation_x64_dvd_2708426.iso.txt - delete mode 100644 tests/isodata/windows/win2k16/14393.0.161119-1705.RS1_REFRESH_SERVERHYPERCORE_OEM_X64FRE_EN-US.ISO.txt - delete mode 100644 tests/isodata/windows/win2k16/en_windows_server_2016_x64_dvd_9718492.iso.txt - delete mode 100644 tests/isodata/windows/win2k3/en_windows_server_2003_enterprise_x64.iso.txt - delete mode 100644 tests/isodata/windows/win2k3/en_windows_server_2003_sp2_ia64_cd.iso.txt - delete mode 100644 tests/isodata/windows/win2k3/en_windows_server_2003_sp2_x64_cd.iso.txt - delete mode 100644 tests/isodata/windows/win2k3/en_windows_server_2003_sp2_x86_cd.iso.txt - delete mode 100644 tests/isodata/windows/win2k3/en_windows_server_2003_standard.iso.txt - delete mode 100644 tests/isodata/windows/win2k3/en_windows_server_2003_standard_x64.iso.txt - delete mode 100644 tests/isodata/windows/win2k3/en_windows_server_2003_with_sp1_enterprise.iso.txt - delete mode 100644 tests/isodata/windows/win2k3/en_windows_server_2003_with_sp1_standard.iso.txt - delete mode 100644 tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_enterprise_cd1.iso.txt - delete mode 100644 tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_enterprise_cd2.iso.txt - delete mode 100644 tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_enterprise_with_sp2_cd1_X13-05460.iso.txt - delete mode 100644 tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_enterprise_with_sp2_cd2_X13-68584.iso.txt - delete mode 100644 tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_enterprise_x64_cd1.iso.txt - delete mode 100644 tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_enterprise_x64_cd2.iso.txt - delete mode 100644 tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_enterprise_x64_with_sp2_cd1_X13-06188.iso.txt - delete mode 100644 tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_enterprise_x64_with_sp2_cd2_X13-68588.iso.txt - delete mode 100644 tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_standard_cd1.iso.txt - delete mode 100644 tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_standard_cd2.iso.txt - delete mode 100644 tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_standard_with_sp2_cd1_x13-04790.iso.txt - delete mode 100644 tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_standard_with_sp2_cd2_x13-68583.iso.txt - delete mode 100644 tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_standard_x64_cd1.iso.txt - delete mode 100644 tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_standard_x64_cd2.iso.txt - delete mode 100644 tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_standard_x64_with_sp2_cd1_x13-05757.iso.txt - delete mode 100644 tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_standard_x64_with_sp2_cd2_x13-68587.iso.txt - delete mode 100644 tests/isodata/windows/win2k8/en_windows_server_2008_datacenter_enterprise_standard_sp2_checked_build_x64_dvd_342435.iso.txt - delete mode 100644 tests/isodata/windows/win2k8/en_windows_server_2008_datacenter_enterprise_standard_sp2_x64_dvd_342336.iso.txt - delete mode 100644 tests/isodata/windows/win2k8/en_windows_server_2008_datacenter_enterprise_standard_sp2_x86_dvd_342333.iso.txt - delete mode 100644 tests/isodata/windows/win2k8/en_windows_server_2008_datacenter_enterprise_standard_x64_dvd_X14-26714.iso.txt - delete mode 100644 tests/isodata/windows/win2k8/en_windows_server_2008_datacenter_enterprise_standard_x86_dvd_X14-26710.iso.txt - delete mode 100644 tests/isodata/windows/win2k8/en_windows_server_2008_with_sp2_x64_dvd_342336.iso.txt - delete mode 100644 tests/isodata/windows/win2k8/en_windows_server_2008_with_sp2_x86_dvd_342333.iso.txt - delete mode 100644 tests/isodata/windows/win2k8/en_windows_web_server_2008_x64_dvd_X14-26683.iso.txt - delete mode 100644 tests/isodata/windows/win2k8/en_windows_web_server_2008_x86_dvd_X14-26678.iso.txt - delete mode 100644 tests/isodata/windows/win2k8r2/cz_windows_server_2008_r2_st_ent_dc_web_retail_x64_X15-50363.img.txt - delete mode 100644 tests/isodata/windows/win2k8r2/en_windows_server_2008_r2_hpc_edition_with_service_pack_1_x64_dvd_700562.iso.txt - delete mode 100644 tests/isodata/windows/win2k8r2/en_windows_server_2008_r2_hpc_x64_dvd_552761.iso.txt - delete mode 100644 tests/isodata/windows/win2k8r2/en_windows_server_2008_r2_standard_enterprise_datacenter_and_web_with_sp1_x64_dvd_617601.iso.txt - delete mode 100644 tests/isodata/windows/win2k8r2/en_windows_server_2008_r2_standard_enterprise_datacenter_and_web_x64_dvd_x15-59754.iso.txt - delete mode 100644 tests/isodata/windows/win2k8r2/en_windows_server_2008_r2_standard_enterprise_datacenter_web_retail_build_x64_dvd_x15-50365.iso.txt - delete mode 100644 tests/isodata/windows/win2k8r2/en_windows_server_2008_r2_with_sp1_for_itanium_based_systems_ia64_dvd_617558.iso.txt - delete mode 100644 tests/isodata/windows/win2k8r2/en_windows_server_2008_r2_with_sp1_x64_dvd_617601.iso.txt - delete mode 100644 tests/isodata/windows/win2k8r2/en_windows_server_2008_r2_x64_dvd_x15-50365.iso.txt - delete mode 100644 tests/isodata/windows/win2k8r2/eng_windows_server_2008_r2_st_ent_dc_web_retail_x64_X15-50365.img.txt - delete mode 100644 tests/isodata/windows/win7/Win7ProX86.iso.txt - delete mode 100644 tests/isodata/windows/win7/cs_windows_7_professional_with_sp1_x64_dvd_u_676956.iso.lng - delete mode 100644 tests/isodata/windows/win7/cs_windows_7_professional_with_sp1_x64_dvd_u_676956.iso.txt - delete mode 100644 tests/isodata/windows/win7/cs_windows_7_professional_with_sp1_x86_dvd_u_677077.iso.lng - delete mode 100644 tests/isodata/windows/win7/cs_windows_7_professional_with_sp1_x86_dvd_u_677077.iso.txt - delete mode 100644 tests/isodata/windows/win7/en_windows_7_debug_checked_build_dvd_x64_398741.iso.txt - delete mode 100644 tests/isodata/windows/win7/en_windows_7_debug_checked_build_dvd_x86_398742.iso.txt - delete mode 100644 tests/isodata/windows/win7/en_windows_7_enterprise_n_with_sp1_x64_dvd_u_677704.iso.lng - delete mode 100644 tests/isodata/windows/win7/en_windows_7_enterprise_n_with_sp1_x64_dvd_u_677704.iso.txt - delete mode 100644 tests/isodata/windows/win7/en_windows_7_enterprise_n_with_sp1_x86_dvd_u_677703.iso.txt - delete mode 100644 tests/isodata/windows/win7/en_windows_7_enterprise_n_x64_dvd_x16-11943.iso.lng - delete mode 100644 tests/isodata/windows/win7/en_windows_7_enterprise_n_x64_dvd_x16-11943.iso.txt - delete mode 100644 tests/isodata/windows/win7/en_windows_7_enterprise_n_x86_dvd_x16-11935.iso.lng - delete mode 100644 tests/isodata/windows/win7/en_windows_7_enterprise_n_x86_dvd_x16-11935.iso.txt - delete mode 100644 tests/isodata/windows/win7/en_windows_7_enterprise_with_sp1_x64_dvd_u_677651.iso.txt - delete mode 100644 tests/isodata/windows/win7/en_windows_7_enterprise_with_sp1_x86_dvd_u_677710.iso.txt - delete mode 100644 tests/isodata/windows/win7/en_windows_7_enterprise_x64_dvd_x15-70749.iso.lng - delete mode 100644 tests/isodata/windows/win7/en_windows_7_enterprise_x64_dvd_x15-70749.iso.txt - delete mode 100644 tests/isodata/windows/win7/en_windows_7_enterprise_x86_dvd_x15-70745.iso.lng - delete mode 100644 tests/isodata/windows/win7/en_windows_7_enterprise_x86_dvd_x15-70745.iso.txt - delete mode 100644 tests/isodata/windows/win7/en_windows_7_home_basic_with_sp1_x86_dvd_u_676470.iso.txt - delete mode 100644 tests/isodata/windows/win7/en_windows_7_home_basic_x86_dvd_x15-65654.iso.txt - delete mode 100644 tests/isodata/windows/win7/en_windows_7_home_premium_n_with_sp1_x64_dvd_u_676825.iso.txt - delete mode 100644 tests/isodata/windows/win7/en_windows_7_home_premium_n_with_sp1_x86_dvd_u_676913.iso.txt - delete mode 100644 tests/isodata/windows/win7/en_windows_7_home_premium_n_x64_dvd_x16-13459.iso.txt - delete mode 100644 tests/isodata/windows/win7/en_windows_7_home_premium_n_x86_dvd_x16-13457.iso.txt - delete mode 100644 tests/isodata/windows/win7/en_windows_7_home_premium_with_sp1_x64_dvd_u_676549.iso.txt - delete mode 100644 tests/isodata/windows/win7/en_windows_7_home_premium_with_sp1_x86_dvd_u_676701.iso.txt - delete mode 100644 tests/isodata/windows/win7/en_windows_7_home_premium_x64_dvd_x15-65733.iso.txt - delete mode 100644 tests/isodata/windows/win7/en_windows_7_home_premium_x86_dvd_x15-65732.iso.txt - delete mode 100644 tests/isodata/windows/win7/en_windows_7_professional_n_with_sp1_x64_dvd_u_677207.iso.txt - delete mode 100644 tests/isodata/windows/win7/en_windows_7_professional_n_with_sp1_x86_dvd_u_677328.iso.lng - delete mode 100644 tests/isodata/windows/win7/en_windows_7_professional_n_with_sp1_x86_dvd_u_677328.iso.txt - delete mode 100644 tests/isodata/windows/win7/en_windows_7_professional_n_x64_dvd_x16-13550.iso.txt - delete mode 100644 tests/isodata/windows/win7/en_windows_7_professional_n_x86_dvd_x16-13548.iso.txt - delete mode 100644 tests/isodata/windows/win7/en_windows_7_professional_vl_build_x64_dvd_x15-71037.iso.txt - delete mode 100644 tests/isodata/windows/win7/en_windows_7_professional_vl_build_x86_dvd_x15-71033.iso.txt - delete mode 100644 tests/isodata/windows/win7/en_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677791.iso.txt - delete mode 100644 tests/isodata/windows/win7/en_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677896.iso.txt - delete mode 100644 tests/isodata/windows/win7/en_windows_7_professional_with_sp1_x64_dvd_u_676939.iso.lng - delete mode 100644 tests/isodata/windows/win7/en_windows_7_professional_with_sp1_x64_dvd_u_676939.iso.txt - delete mode 100644 tests/isodata/windows/win7/en_windows_7_professional_with_sp1_x86_dvd_u_677056.iso.lng - delete mode 100644 tests/isodata/windows/win7/en_windows_7_professional_with_sp1_x86_dvd_u_677056.iso.txt - delete mode 100644 tests/isodata/windows/win7/en_windows_7_professional_x86_dvd_x15-65804.iso.txt - delete mode 100644 tests/isodata/windows/win7/en_windows_7_starter_n_with_sp1_x86_dvd_u_678339.iso.txt - delete mode 100644 tests/isodata/windows/win7/en_windows_7_starter_n_x86_dvd_x16-15928.iso.txt - delete mode 100644 tests/isodata/windows/win7/en_windows_7_starter_with_sp1_x86_dvd_u_678562.iso.txt - delete mode 100644 tests/isodata/windows/win7/en_windows_7_starter_x86_dvd_x15-68956.iso.txt - delete mode 100644 tests/isodata/windows/win7/en_windows_7_ultimate_n_with_sp1_x64_dvd_u_677543.iso.txt - delete mode 100644 tests/isodata/windows/win7/en_windows_7_ultimate_n_with_sp1_x86_dvd_u_677597.iso.lng - delete mode 100644 tests/isodata/windows/win7/en_windows_7_ultimate_n_with_sp1_x86_dvd_u_677597.iso.txt - delete mode 100644 tests/isodata/windows/win7/en_windows_7_ultimate_n_x64_dvd_x16-13641.iso.txt - delete mode 100644 tests/isodata/windows/win7/en_windows_7_ultimate_n_x86_dvd_x16-13640.iso.txt - delete mode 100644 tests/isodata/windows/win7/en_windows_7_ultimate_with_sp1_x64_dvd_u_677332.iso.txt - delete mode 100644 tests/isodata/windows/win7/en_windows_7_ultimate_with_sp1_x86_dvd_u_677460.iso.txt - delete mode 100644 tests/isodata/windows/win7/en_windows_7_ultimate_x64_dvd_unknown.iso.txt - delete mode 100644 tests/isodata/windows/win7/en_windows_7_ultimate_x64_dvd_unknown.lng - delete mode 100644 tests/isodata/windows/win7/en_windows_7_ultimate_x64_dvd_x15-65922.iso.lng - delete mode 100644 tests/isodata/windows/win7/en_windows_7_ultimate_x64_dvd_x15-65922.iso.txt - delete mode 100644 tests/isodata/windows/win7/en_windows_7_ultimate_x86_dvd_unknown.iso.txt - delete mode 100644 tests/isodata/windows/win7/en_windows_7_ultimate_x86_dvd_unknown.lng - delete mode 100644 tests/isodata/windows/win7/en_windows_7_ultimate_x86_dvd_x15-65921.iso.lng - delete mode 100644 tests/isodata/windows/win7/en_windows_7_ultimate_x86_dvd_x15-65921.iso.txt - delete mode 100644 tests/isodata/windows/win7/en_windows_7_with_sp1_debug_checked_build_x64_dvd_619601.iso.txt - delete mode 100644 tests/isodata/windows/win7/en_windows_7_with_sp1_debug_checked_build_x86_dvd_619602.iso.txt - delete mode 100644 tests/isodata/windows/win7/fi_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677808.iso.lng - delete mode 100644 tests/isodata/windows/win7/fi_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677808.iso.txt - delete mode 100644 tests/isodata/windows/win7/fi_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677759.iso.lng - delete mode 100644 tests/isodata/windows/win7/fi_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677759.iso.txt - delete mode 100644 tests/isodata/windows/win7/fr_windows_7_home_premium_n_with_sp1_x64_dvd_u_676833.iso.lng - delete mode 100644 tests/isodata/windows/win7/fr_windows_7_home_premium_n_with_sp1_x64_dvd_u_676833.iso.txt - delete mode 100644 tests/isodata/windows/win7/ru_windows_7_enterprise_with_sp1_x64_dvd_u_677671.iso.lng - delete mode 100644 tests/isodata/windows/win7/ru_windows_7_enterprise_with_sp1_x64_dvd_u_677671.iso.txt - delete mode 100644 tests/isodata/windows/win7/ru_windows_7_ultimate_with_sp1_x86_dvd_u_677463.iso.lng - delete mode 100644 tests/isodata/windows/win7/ru_windows_7_ultimate_with_sp1_x86_dvd_u_677463.iso.txt - delete mode 100644 tests/isodata/windows/win8.1/en-gb_windows_8.1_enterprise_with_update_x86_dvd_4050369.iso.txt - delete mode 100644 tests/isodata/windows/win8.1/en-gb_windows_8_1_enterprise_n_x64_dvd_2971847.iso.txt - delete mode 100644 tests/isodata/windows/win8.1/en-gb_windows_8_1_enterprise_n_x86_dvd_2971852.iso.txt - delete mode 100644 tests/isodata/windows/win8.1/en-gb_windows_8_1_enterprise_x64_dvd_2971910.iso.txt - delete mode 100644 tests/isodata/windows/win8.1/en-gb_windows_8_1_enterprise_x86_dvd_2972291.iso.txt - delete mode 100644 tests/isodata/windows/win8.1/en-gb_windows_8_1_n_x64_dvd_2707898.iso.txt - delete mode 100644 tests/isodata/windows/win8.1/en-gb_windows_8_1_n_x86_dvd_2707897.iso.txt - delete mode 100644 tests/isodata/windows/win8.1/en-gb_windows_8_1_pro_n_vl_x64_dvd_2971976.iso.txt - delete mode 100644 tests/isodata/windows/win8.1/en-gb_windows_8_1_pro_n_vl_x86_dvd_2972710.iso.txt - delete mode 100644 tests/isodata/windows/win8.1/en-gb_windows_8_1_pro_vl_x64_dvd_2971955.iso.txt - delete mode 100644 tests/isodata/windows/win8.1/en-gb_windows_8_1_pro_vl_x86_dvd_2972634.iso.txt - delete mode 100644 tests/isodata/windows/win8.1/en-gb_windows_8_1_x64_dvd_2707421.iso.txt - delete mode 100644 tests/isodata/windows/win8.1/en-gb_windows_8_1_x86_dvd_2707543.iso.txt - delete mode 100644 tests/isodata/windows/win8.1/en_windows_8.1_enterprise_n_with_update_x64_dvd_4065163.iso.txt - delete mode 100644 tests/isodata/windows/win8.1/en_windows_8.1_enterprise_n_with_update_x64_dvd_6050225.iso.txt - delete mode 100644 tests/isodata/windows/win8.1/en_windows_8.1_enterprise_with_update_x64_dvd_6054382.iso.txt - delete mode 100644 tests/isodata/windows/win8.1/en_windows_8.1_n_with_update_x64_dvd_6051677.iso.txt - delete mode 100644 tests/isodata/windows/win8.1/en_windows_8.1_n_with_update_x86_dvd_6051704.iso.txt - delete mode 100644 tests/isodata/windows/win8.1/en_windows_8.1_pro_n_vl_with_update_x64_dvd_6050969.iso.txt - delete mode 100644 tests/isodata/windows/win8.1/en_windows_8.1_pro_n_vl_with_update_x86_dvd_6051127.iso.txt - delete mode 100644 tests/isodata/windows/win8.1/en_windows_8.1_pro_vl_with_update_x64_dvd_6050880.iso.txt - delete mode 100644 tests/isodata/windows/win8.1/en_windows_8.1_pro_vl_with_update_x86_dvd_6050918.iso.txt - delete mode 100644 tests/isodata/windows/win8.1/en_windows_8.1_with_update_x64_dvd_6051480.iso.txt - delete mode 100644 tests/isodata/windows/win8.1/en_windows_8_1_debug_checked_x64_dvd_2707208.iso.txt - delete mode 100644 tests/isodata/windows/win8.1/en_windows_8_1_debug_checked_x86_dvd_2707387.iso.txt - delete mode 100644 tests/isodata/windows/win8.1/en_windows_8_1_enterprise_debug_checked_x64_dvd_2756358.iso.txt - delete mode 100644 tests/isodata/windows/win8.1/en_windows_8_1_enterprise_debug_checked_x86_dvd_2756359.iso.txt - delete mode 100644 tests/isodata/windows/win8.1/en_windows_8_1_enterprise_n_debug_checked_x64_dvd_2942525.iso.txt - delete mode 100644 tests/isodata/windows/win8.1/en_windows_8_1_enterprise_n_debug_checked_x86_dvd_2942527.iso.txt - delete mode 100644 tests/isodata/windows/win8.1/en_windows_8_1_enterprise_n_x64_dvd_2791038.iso.txt - delete mode 100644 tests/isodata/windows/win8.1/en_windows_8_1_enterprise_n_x64_dvd_2971845.iso.txt - delete mode 100644 tests/isodata/windows/win8.1/en_windows_8_1_enterprise_n_x86_dvd_2791297.iso.txt - delete mode 100644 tests/isodata/windows/win8.1/en_windows_8_1_enterprise_n_x86_dvd_2971850.iso.txt - delete mode 100644 tests/isodata/windows/win8.1/en_windows_8_1_enterprise_x64_dvd_2791088.iso.txt - delete mode 100644 tests/isodata/windows/win8.1/en_windows_8_1_enterprise_x64_dvd_2971902.iso.txt - delete mode 100644 tests/isodata/windows/win8.1/en_windows_8_1_enterprise_x86_dvd_2791510.iso.txt - delete mode 100644 tests/isodata/windows/win8.1/en_windows_8_1_enterprise_x86_dvd_2972289.iso.txt - delete mode 100644 tests/isodata/windows/win8.1/en_windows_8_1_n_debug_checked_x64_dvd_2707894.iso.txt - delete mode 100644 tests/isodata/windows/win8.1/en_windows_8_1_n_debug_checked_x86_dvd_2707893.iso.txt - delete mode 100644 tests/isodata/windows/win8.1/en_windows_8_1_n_with_update_x64_dvd_4065114.iso.txt - delete mode 100644 tests/isodata/windows/win8.1/en_windows_8_1_n_x64_dvd_2707896.iso.txt - delete mode 100644 tests/isodata/windows/win8.1/en_windows_8_1_n_x86_dvd_2707895.iso.txt - delete mode 100644 tests/isodata/windows/win8.1/en_windows_8_1_pro_n_vl_x64_dvd_2791264.iso.txt - delete mode 100644 tests/isodata/windows/win8.1/en_windows_8_1_pro_n_vl_x64_dvd_2971969.iso.txt - delete mode 100644 tests/isodata/windows/win8.1/en_windows_8_1_pro_n_vl_x86_dvd_2791509.iso.txt - delete mode 100644 tests/isodata/windows/win8.1/en_windows_8_1_pro_n_vl_x86_dvd_2972709.iso.txt - delete mode 100644 tests/isodata/windows/win8.1/en_windows_8_1_pro_vl_x64_dvd_2791292.iso.txt - delete mode 100644 tests/isodata/windows/win8.1/en_windows_8_1_pro_vl_x64_dvd_2971948.iso.txt - delete mode 100644 tests/isodata/windows/win8.1/en_windows_8_1_pro_vl_x86_dvd_2791634.iso.txt - delete mode 100644 tests/isodata/windows/win8.1/en_windows_8_1_pro_vl_x86_dvd_2972633.iso.txt - delete mode 100644 tests/isodata/windows/win8.1/en_windows_8_1_x64_dvd_2707217.iso.txt - delete mode 100644 tests/isodata/windows/win8.1/en_windows_8_1_x86_dvd_2707392.iso.txt - delete mode 100644 tests/isodata/windows/win8/Windows8-ConsumerPreview-32bit-English.iso.lng - delete mode 100644 tests/isodata/windows/win8/Windows8-ConsumerPreview-32bit-English.iso.txt - delete mode 100644 tests/isodata/windows/win8/Windows8-ConsumerPreview-64bit-English.iso.lng - delete mode 100644 tests/isodata/windows/win8/Windows8-ConsumerPreview-64bit-English.iso.txt - delete mode 100644 tests/isodata/windows/win8/de_windows_8_enterprise_n_x64_dvd_917975.iso.lng - delete mode 100644 tests/isodata/windows/win8/de_windows_8_enterprise_n_x64_dvd_917975.iso.txt - delete mode 100644 tests/isodata/windows/win8/en-gb_windows_8_enterprise_n_x64_dvd_918053.iso.txt - delete mode 100644 tests/isodata/windows/win8/en-gb_windows_8_enterprise_n_x86_dvd_918708.iso.txt - delete mode 100644 tests/isodata/windows/win8/en-gb_windows_8_enterprise_x64_dvd_922086.iso.txt - delete mode 100644 tests/isodata/windows/win8/en-gb_windows_8_enterprise_x86_dvd_917588.iso.txt - delete mode 100644 tests/isodata/windows/win8/en-gb_windows_8_n_x64_dvd_915799.iso.txt - delete mode 100644 tests/isodata/windows/win8/en-gb_windows_8_n_x86_dvd_916086.iso.txt - delete mode 100644 tests/isodata/windows/win8/en-gb_windows_8_pro_n_vl_x64_dvd_918679.iso.txt - delete mode 100644 tests/isodata/windows/win8/en-gb_windows_8_pro_n_vl_x86_dvd_918878.iso.txt - delete mode 100644 tests/isodata/windows/win8/en-gb_windows_8_pro_vl_x64_dvd_917700.iso.txt - delete mode 100644 tests/isodata/windows/win8/en-gb_windows_8_pro_vl_x86_dvd_917831.iso.txt - delete mode 100644 tests/isodata/windows/win8/en-gb_windows_8_x64_dvd_915412.iso.txt - delete mode 100644 tests/isodata/windows/win8/en-gb_windows_8_x86_dvd_915479.iso.lng - delete mode 100644 tests/isodata/windows/win8/en-gb_windows_8_x86_dvd_915479.iso.txt - delete mode 100644 tests/isodata/windows/win8/en_windows_8_debug_checked_build_x64_dvd_917558.iso.lng - delete mode 100644 tests/isodata/windows/win8/en_windows_8_debug_checked_build_x64_dvd_917558.iso.txt - delete mode 100644 tests/isodata/windows/win8/en_windows_8_debug_checked_build_x86_dvd_917560.iso.lng - delete mode 100644 tests/isodata/windows/win8/en_windows_8_debug_checked_build_x86_dvd_917560.iso.txt - delete mode 100644 tests/isodata/windows/win8/en_windows_8_enterprise_debug_checked_build_x64_dvd_917527.iso.lng - delete mode 100644 tests/isodata/windows/win8/en_windows_8_enterprise_debug_checked_build_x64_dvd_917527.iso.txt - delete mode 100644 tests/isodata/windows/win8/en_windows_8_enterprise_debug_checked_build_x86_dvd_917529.iso.lng - delete mode 100644 tests/isodata/windows/win8/en_windows_8_enterprise_debug_checked_build_x86_dvd_917529.iso.txt - delete mode 100644 tests/isodata/windows/win8/en_windows_8_enterprise_n_debug_checked_build_x64_dvd_917531.iso.lng - delete mode 100644 tests/isodata/windows/win8/en_windows_8_enterprise_n_debug_checked_build_x64_dvd_917531.iso.txt - delete mode 100644 tests/isodata/windows/win8/en_windows_8_enterprise_n_debug_checked_build_x86_dvd_917534.iso.lng - delete mode 100644 tests/isodata/windows/win8/en_windows_8_enterprise_n_debug_checked_build_x86_dvd_917534.iso.txt - delete mode 100644 tests/isodata/windows/win8/en_windows_8_enterprise_n_x64_dvd_918052.iso.lng - delete mode 100644 tests/isodata/windows/win8/en_windows_8_enterprise_n_x64_dvd_918052.iso.txt - delete mode 100644 tests/isodata/windows/win8/en_windows_8_enterprise_n_x86_dvd_918707.iso.lng - delete mode 100644 tests/isodata/windows/win8/en_windows_8_enterprise_n_x86_dvd_918707.iso.txt - delete mode 100644 tests/isodata/windows/win8/en_windows_8_enterprise_x64_dvd_917522.iso.lng - delete mode 100644 tests/isodata/windows/win8/en_windows_8_enterprise_x64_dvd_917522.iso.txt - delete mode 100644 tests/isodata/windows/win8/en_windows_8_enterprise_x86_dvd_917587.iso.lng - delete mode 100644 tests/isodata/windows/win8/en_windows_8_enterprise_x86_dvd_917587.iso.txt - delete mode 100644 tests/isodata/windows/win8/en_windows_8_n_debug_checked_build_x64_dvd_917562.iso.lng - delete mode 100644 tests/isodata/windows/win8/en_windows_8_n_debug_checked_build_x64_dvd_917562.iso.txt - delete mode 100644 tests/isodata/windows/win8/en_windows_8_n_debug_checked_build_x86_dvd_917564.iso.lng - delete mode 100644 tests/isodata/windows/win8/en_windows_8_n_debug_checked_build_x86_dvd_917564.iso.txt - delete mode 100644 tests/isodata/windows/win8/en_windows_8_n_x64_dvd_916091.iso.lng - delete mode 100644 tests/isodata/windows/win8/en_windows_8_n_x64_dvd_916091.iso.txt - delete mode 100644 tests/isodata/windows/win8/en_windows_8_n_x86_dvd_916097.iso.lng - delete mode 100644 tests/isodata/windows/win8/en_windows_8_n_x86_dvd_916097.iso.txt - delete mode 100644 tests/isodata/windows/win8/en_windows_8_pro_n_vl_x64_dvd_918677.iso.lng - delete mode 100644 tests/isodata/windows/win8/en_windows_8_pro_n_vl_x64_dvd_918677.iso.txt - delete mode 100644 tests/isodata/windows/win8/en_windows_8_pro_n_vl_x86_dvd_918877.iso.lng - delete mode 100644 tests/isodata/windows/win8/en_windows_8_pro_n_vl_x86_dvd_918877.iso.txt - delete mode 100644 tests/isodata/windows/win8/en_windows_8_pro_vl_x64_dvd_917699.iso.lng - delete mode 100644 tests/isodata/windows/win8/en_windows_8_pro_vl_x64_dvd_917699.iso.txt - delete mode 100644 tests/isodata/windows/win8/en_windows_8_pro_vl_x86_dvd_917830.iso.lng - delete mode 100644 tests/isodata/windows/win8/en_windows_8_pro_vl_x86_dvd_917830.iso.txt - delete mode 100644 tests/isodata/windows/win8/en_windows_8_x64_dvd_915440.iso.lng - delete mode 100644 tests/isodata/windows/win8/en_windows_8_x64_dvd_915440.iso.txt - delete mode 100644 tests/isodata/windows/win8/en_windows_8_x86_dvd_915417.iso.lng - delete mode 100644 tests/isodata/windows/win8/en_windows_8_x86_dvd_915417.iso.txt - delete mode 100644 tests/isodata/windows/win8/fr_windows_8_x86_dvd_915420.iso.lng - delete mode 100644 tests/isodata/windows/win8/fr_windows_8_x86_dvd_915420.iso.txt - delete mode 100644 tests/isodata/windows/winvista/en_windows_vista_business_sp2_x64_dvd_342327.iso.txt - delete mode 100644 tests/isodata/windows/winvista/en_windows_vista_business_sp2_x86_dvd_342321.iso.txt - delete mode 100644 tests/isodata/windows/winvista/en_windows_vista_business_with_service_pack_1_x64_dvd_x14-56048.iso.txt - delete mode 100644 tests/isodata/windows/winvista/en_windows_vista_business_with_service_pack_1_x86_dvd_x14-56028.iso.txt - delete mode 100644 tests/isodata/windows/winvista/en_windows_vista_enterprise_sp2_x64_dvd_342332.iso.txt - delete mode 100644 tests/isodata/windows/winvista/en_windows_vista_enterprise_sp2_x86_dvd_342329.iso.txt - delete mode 100644 tests/isodata/windows/winvista/en_windows_vista_enterprise_with_service_pack_1_x64_dvd_unknown.iso.txt - delete mode 100644 tests/isodata/windows/winvista/en_windows_vista_enterprise_with_service_pack_1_x64_dvd_x14-55934.iso.txt - delete mode 100644 tests/isodata/windows/winvista/en_windows_vista_enterprise_with_service_pack_1_x86_dvd_unknown.iso.txt - delete mode 100644 tests/isodata/windows/winvista/en_windows_vista_enterprise_with_service_pack_1_x86_dvd_x14-55954.iso.txt - delete mode 100644 tests/isodata/windows/winvista/en_windows_vista_enterprise_with_service_pack_2_beta_x86_288250.iso.txt - delete mode 100644 tests/isodata/windows/winvista/en_windows_vista_enterprise_with_sp2_beta_x64_288254.iso.txt - delete mode 100644 tests/isodata/windows/winvista/en_windows_vista_x64_dvd_X12-40712.iso.txt - delete mode 100644 tests/isodata/windows/winvista/en_windows_vista_x64_dvd_x12-40712.iso.txt - delete mode 100644 tests/isodata/windows/winvista/en_windows_vista_x86_dvd_X12-34293.iso.txt - delete mode 100644 tests/isodata/windows/winvista/en_windows_vista_x86_dvd_x12-34293.iso.txt - delete mode 100644 tests/isodata/windows/winxp/cs_windows_xp_professional_with_service_pack_3_x86_cd_x14-80416.iso.txt - delete mode 100644 tests/isodata/windows/winxp/cz_winxp_pro_with_sp2.iso.txt - delete mode 100644 tests/isodata/windows/winxp/en_winXP_Pro_x86_build2600_ISO.img.txt - delete mode 100644 tests/isodata/windows/winxp/en_win_xp_pro_n.iso.txt - delete mode 100644 tests/isodata/windows/winxp/en_windows_xp_professional_n_with_service_pack_3_x86_cd_x14-92445.iso.txt - delete mode 100644 tests/isodata/windows/winxp/en_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-73974.iso.txt - delete mode 100644 tests/isodata/windows/winxp/en_windows_xp_professional_with_service_pack_3_x86_cd_x14-80428.iso.txt - delete mode 100644 tests/isodata/windows/winxp/en_windows_xp_professional_x64.iso.txt - delete mode 100644 tests/isodata/windows/winxp/en_windows_xp_professional_x64_chk.iso.txt - delete mode 100644 tests/isodata/windows/winxp/en_winxp_mce_2005_cd1.iso.txt - delete mode 100644 tests/isodata/windows/winxp/en_winxp_mce_2005_cd2.iso.txt - delete mode 100644 tests/isodata/windows/winxp/en_winxp_pro_with_sp2.iso.txt - delete mode 100644 tests/isodata/windows/winxp/en_winxp_sp1a_tablet_pc_cd1.iso.txt - delete mode 100644 tests/isodata/windows/winxp/en_winxp_tablet_2005_CD1.iso.txt - delete mode 100644 tests/isodata/windows/winxp/en_winxp_tablet_2005_CD2.iso.txt - delete mode 100644 tests/isodata/windows/winxp/en_winxp_tablet_cd2.iso.txt - delete mode 100644 tests/isodata/windows/winxp/ru_windows_xp_home_with_service_pack_3_x86_cd_x14-92426.iso.txt - delete mode 100644 tests/test-isodetect.c - -diff --git a/tests/Makefile.am b/tests/Makefile.am -index 27b0f8d..2e92b48 100644 ---- a/tests/Makefile.am -+++ b/tests/Makefile.am -@@ -1,5 +1,5 @@ - --EXTRA_DIST = isodata dbdata -+EXTRA_DIST = dbdata - - check_PROGRAMS = \ - test-entity \ -@@ -17,7 +17,6 @@ check_PROGRAMS = \ - test-platformlist \ - test-db \ - test-loader \ -- test-isodetect \ - test-install-script \ - test-image \ - test-imagelist \ -@@ -98,10 +97,6 @@ test_loader_LDADD = $(COMMON_LDADD) - test_loader_CFLAGS = $(COMMON_CFLAGS) - test_loader_SOURCES = test-loader.c - --test_isodetect_LDADD = $(COMMON_LDADD) --test_isodetect_CFLAGS = $(COMMON_CFLAGS) --test_isodetect_SOURCES = test-isodetect.c -- - test_install_script_LDADD = $(COMMON_LDADD) - test_install_script_CFLAGS = $(COMMON_CFLAGS) - test_install_script_SOURCES = test-install-script.c -diff --git a/tests/isodata/alpinelinux/alpinelinux3.5/alpine-extended-3.5.0-x86.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.5/alpine-extended-3.5.0-x86.iso.txt -deleted file mode 100644 -index 712568f..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.5/alpine-extended-3.5.0-x86.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: alpine-extended 3.5.0 x86 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 125440 --El Torito VD version 1 found, boot catalog is in sector 63 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 40 64 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.5/alpine-extended-3.5.0-x86_64.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.5/alpine-extended-3.5.0-x86_64.iso.txt -deleted file mode 100644 -index 3687415..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.5/alpine-extended-3.5.0-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: alpine-extended 3.5.0 x86_64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 127488 --El Torito VD version 1 found, boot catalog is in sector 63 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 40 64 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.5/alpine-extended-3.5.1-x86.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.5/alpine-extended-3.5.1-x86.iso.txt -deleted file mode 100644 -index b89d1c6..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.5/alpine-extended-3.5.1-x86.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: alpine-extended 3.5.1 x86 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 125440 --El Torito VD version 1 found, boot catalog is in sector 63 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 40 64 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.5/alpine-extended-3.5.1-x86_64.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.5/alpine-extended-3.5.1-x86_64.iso.txt -deleted file mode 100644 -index feb17d6..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.5/alpine-extended-3.5.1-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: alpine-extended 3.5.1 x86_64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 127488 --El Torito VD version 1 found, boot catalog is in sector 63 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 40 64 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.5/alpine-extended-3.5.2-x86.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.5/alpine-extended-3.5.2-x86.iso.txt -deleted file mode 100644 -index 83e44b6..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.5/alpine-extended-3.5.2-x86.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: alpine-extended 3.5.2 x86 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 125440 --El Torito VD version 1 found, boot catalog is in sector 63 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 40 64 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.5/alpine-extended-3.5.2-x86_64.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.5/alpine-extended-3.5.2-x86_64.iso.txt -deleted file mode 100644 -index 4b35dc9..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.5/alpine-extended-3.5.2-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: alpine-extended 3.5.2 x86_64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 127488 --El Torito VD version 1 found, boot catalog is in sector 63 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 40 64 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.5/alpine-standard-3.5.0-x86.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.5/alpine-standard-3.5.0-x86.iso.txt -deleted file mode 100644 -index 39b9936..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.5/alpine-standard-3.5.0-x86.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: alpine-standard 3.5.0 x86 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 38400 --El Torito VD version 1 found, boot catalog is in sector 42 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2B 43 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.5/alpine-standard-3.5.0-x86_64.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.5/alpine-standard-3.5.0-x86_64.iso.txt -deleted file mode 100644 -index 6525db4..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.5/alpine-standard-3.5.0-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: alpine-standard 3.5.0 x86_64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 39936 --El Torito VD version 1 found, boot catalog is in sector 42 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2B 43 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.5/alpine-standard-3.5.1-x86.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.5/alpine-standard-3.5.1-x86.iso.txt -deleted file mode 100644 -index 7298ab2..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.5/alpine-standard-3.5.1-x86.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: alpine-standard 3.5.1 x86 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 38400 --El Torito VD version 1 found, boot catalog is in sector 42 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2B 43 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.5/alpine-standard-3.5.1-x86_64.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.5/alpine-standard-3.5.1-x86_64.iso.txt -deleted file mode 100644 -index 2b74b9c..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.5/alpine-standard-3.5.1-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: alpine-standard 3.5.1 x86_64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 39936 --El Torito VD version 1 found, boot catalog is in sector 42 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2B 43 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.5/alpine-standard-3.5.2-x86.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.5/alpine-standard-3.5.2-x86.iso.txt -deleted file mode 100644 -index 7e583bf..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.5/alpine-standard-3.5.2-x86.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: alpine-standard 3.5.2 x86 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 38400 --El Torito VD version 1 found, boot catalog is in sector 42 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2B 43 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.5/alpine-standard-3.5.2-x86_64.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.5/alpine-standard-3.5.2-x86_64.iso.txt -deleted file mode 100644 -index 1322aba..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.5/alpine-standard-3.5.2-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: alpine-standard 3.5.2 x86_64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 39936 --El Torito VD version 1 found, boot catalog is in sector 42 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2B 43 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.5/alpine-vanilla-3.5.0-x86.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.5/alpine-vanilla-3.5.0-x86.iso.txt -deleted file mode 100644 -index d91623a..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.5/alpine-vanilla-3.5.0-x86.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: alpine-vanilla 3.5.0 x86 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 38912 --El Torito VD version 1 found, boot catalog is in sector 42 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2B 43 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.5/alpine-vanilla-3.5.0-x86_64.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.5/alpine-vanilla-3.5.0-x86_64.iso.txt -deleted file mode 100644 -index 71fa26b..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.5/alpine-vanilla-3.5.0-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: alpine-vanilla 3.5.0 x86_64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 40448 --El Torito VD version 1 found, boot catalog is in sector 42 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2B 43 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.5/alpine-vanilla-3.5.1-x86.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.5/alpine-vanilla-3.5.1-x86.iso.txt -deleted file mode 100644 -index f40f2a0..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.5/alpine-vanilla-3.5.1-x86.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: alpine-vanilla 3.5.1 x86 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 38912 --El Torito VD version 1 found, boot catalog is in sector 42 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2B 43 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.5/alpine-vanilla-3.5.1-x86_64.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.5/alpine-vanilla-3.5.1-x86_64.iso.txt -deleted file mode 100644 -index a6ab49f..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.5/alpine-vanilla-3.5.1-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: alpine-vanilla 3.5.1 x86_64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 40448 --El Torito VD version 1 found, boot catalog is in sector 42 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2B 43 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.5/alpine-vanilla-3.5.2-x86.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.5/alpine-vanilla-3.5.2-x86.iso.txt -deleted file mode 100644 -index b6ca9da..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.5/alpine-vanilla-3.5.2-x86.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: alpine-vanilla 3.5.2 x86 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 38912 --El Torito VD version 1 found, boot catalog is in sector 42 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2B 43 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.5/alpine-vanilla-3.5.2-x86_64.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.5/alpine-vanilla-3.5.2-x86_64.iso.txt -deleted file mode 100644 -index f14bf27..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.5/alpine-vanilla-3.5.2-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: alpine-vanilla 3.5.2 x86_64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 40448 --El Torito VD version 1 found, boot catalog is in sector 42 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2B 43 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.5/alpine-virt-3.5.0-x86.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.5/alpine-virt-3.5.0-x86.iso.txt -deleted file mode 100644 -index 7dda8fb..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.5/alpine-virt-3.5.0-x86.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: alpine-virt 3.5.0 x86 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 12288 --El Torito VD version 1 found, boot catalog is in sector 42 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2B 43 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.5/alpine-virt-3.5.0-x86_64.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.5/alpine-virt-3.5.0-x86_64.iso.txt -deleted file mode 100644 -index 2d0f726..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.5/alpine-virt-3.5.0-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: alpine-virt 3.5.0 x86_64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 12800 --El Torito VD version 1 found, boot catalog is in sector 42 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2B 43 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.5/alpine-virt-3.5.1-x86.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.5/alpine-virt-3.5.1-x86.iso.txt -deleted file mode 100644 -index 4f97461..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.5/alpine-virt-3.5.1-x86.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: alpine-virt 3.5.1 x86 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 12288 --El Torito VD version 1 found, boot catalog is in sector 42 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2B 43 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.5/alpine-virt-3.5.1-x86_64.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.5/alpine-virt-3.5.1-x86_64.iso.txt -deleted file mode 100644 -index 0233113..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.5/alpine-virt-3.5.1-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: alpine-virt 3.5.1 x86_64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 12800 --El Torito VD version 1 found, boot catalog is in sector 42 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2B 43 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.5/alpine-virt-3.5.2-x86.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.5/alpine-virt-3.5.2-x86.iso.txt -deleted file mode 100644 -index e9c417a..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.5/alpine-virt-3.5.2-x86.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: alpine-virt 3.5.2 x86 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 12288 --El Torito VD version 1 found, boot catalog is in sector 42 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2B 43 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.5/alpine-virt-3.5.2-x86_64.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.5/alpine-virt-3.5.2-x86_64.iso.txt -deleted file mode 100644 -index 80f2eb5..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.5/alpine-virt-3.5.2-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: alpine-virt 3.5.2 x86_64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 12800 --El Torito VD version 1 found, boot catalog is in sector 42 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2B 43 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.5/alpine-xen-3.5.0-x86_64.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.5/alpine-xen-3.5.0-x86_64.iso.txt -deleted file mode 100644 -index c23b10f..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.5/alpine-xen-3.5.0-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: alpine-xen 3.5.0 x86_64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 67584 --El Torito VD version 1 found, boot catalog is in sector 49 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 32 50 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.5/alpine-xen-3.5.1-x86_64.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.5/alpine-xen-3.5.1-x86_64.iso.txt -deleted file mode 100644 -index db2fbaf..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.5/alpine-xen-3.5.1-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: alpine-xen 3.5.1 x86_64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 67584 --El Torito VD version 1 found, boot catalog is in sector 49 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 32 50 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.5/alpine-xen-3.5.2-x86_64.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.5/alpine-xen-3.5.2-x86_64.iso.txt -deleted file mode 100644 -index b105f84..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.5/alpine-xen-3.5.2-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: alpine-xen 3.5.2 x86_64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 67584 --El Torito VD version 1 found, boot catalog is in sector 49 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 32 50 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.6/alpine-extended-3.6.0-x86.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.6/alpine-extended-3.6.0-x86.iso.txt -deleted file mode 100644 -index 5b168fa..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.6/alpine-extended-3.6.0-x86.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: alpine-extended 3.6.0 x86 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 140800 --El Torito VD version 1 found, boot catalog is in sector 63 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 40 64 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.6/alpine-extended-3.6.0-x86_64.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.6/alpine-extended-3.6.0-x86_64.iso.txt -deleted file mode 100644 -index 76d942a..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.6/alpine-extended-3.6.0-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: alpine-extended 3.6.0 x86_64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 168448 --El Torito VD version 1 found, boot catalog is in sector 63 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 40 64 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.6/alpine-extended-3.6.1-x86.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.6/alpine-extended-3.6.1-x86.iso.txt -deleted file mode 100644 -index 6ab724d..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.6/alpine-extended-3.6.1-x86.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: alpine-extended 3.6.1 x86 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 140800 --El Torito VD version 1 found, boot catalog is in sector 63 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 40 64 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.6/alpine-extended-3.6.1-x86_64.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.6/alpine-extended-3.6.1-x86_64.iso.txt -deleted file mode 100644 -index 0999aaa..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.6/alpine-extended-3.6.1-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: alpine-extended 3.6.1 x86_64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 168448 --El Torito VD version 1 found, boot catalog is in sector 63 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 40 64 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.6/alpine-extended-3.6.2-x86.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.6/alpine-extended-3.6.2-x86.iso.txt -deleted file mode 100644 -index 99e292b..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.6/alpine-extended-3.6.2-x86.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: alpine-extended 3.6.2 x86 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 140800 --El Torito VD version 1 found, boot catalog is in sector 63 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 40 64 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.6/alpine-extended-3.6.2-x86_64.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.6/alpine-extended-3.6.2-x86_64.iso.txt -deleted file mode 100644 -index b3fb0b8..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.6/alpine-extended-3.6.2-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: alpine-extended 3.6.2 x86_64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 168960 --El Torito VD version 1 found, boot catalog is in sector 63 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 40 64 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.6/alpine-standard-3.6.0-x86.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.6/alpine-standard-3.6.0-x86.iso.txt -deleted file mode 100644 -index 7ee7c10..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.6/alpine-standard-3.6.0-x86.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: alpine-standard 3.6.0 x86 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 40960 --El Torito VD version 1 found, boot catalog is in sector 42 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2B 43 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.6/alpine-standard-3.6.0-x86_64.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.6/alpine-standard-3.6.0-x86_64.iso.txt -deleted file mode 100644 -index 770c932..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.6/alpine-standard-3.6.0-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: alpine-standard 3.6.0 x86_64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 54272 --El Torito VD version 1 found, boot catalog is in sector 42 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2B 43 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.6/alpine-standard-3.6.1-x86.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.6/alpine-standard-3.6.1-x86.iso.txt -deleted file mode 100644 -index bd93922..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.6/alpine-standard-3.6.1-x86.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: alpine-standard 3.6.1 x86 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 40960 --El Torito VD version 1 found, boot catalog is in sector 42 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2B 43 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.6/alpine-standard-3.6.1-x86_64.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.6/alpine-standard-3.6.1-x86_64.iso.txt -deleted file mode 100644 -index 430e1bd..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.6/alpine-standard-3.6.1-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: alpine-standard 3.6.1 x86_64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 54272 --El Torito VD version 1 found, boot catalog is in sector 42 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2B 43 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.6/alpine-standard-3.6.2-x86.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.6/alpine-standard-3.6.2-x86.iso.txt -deleted file mode 100644 -index 63d5371..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.6/alpine-standard-3.6.2-x86.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: alpine-standard 3.6.2 x86 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 40960 --El Torito VD version 1 found, boot catalog is in sector 42 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2B 43 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.6/alpine-standard-3.6.2-x86_64.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.6/alpine-standard-3.6.2-x86_64.iso.txt -deleted file mode 100644 -index aff003b..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.6/alpine-standard-3.6.2-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: alpine-standard 3.6.2 x86_64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 54272 --El Torito VD version 1 found, boot catalog is in sector 42 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2B 43 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.6/alpine-vanilla-3.6.0-x86.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.6/alpine-vanilla-3.6.0-x86.iso.txt -deleted file mode 100644 -index 3ccb74b..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.6/alpine-vanilla-3.6.0-x86.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: alpine-vanilla 3.6.0 x86 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 41984 --El Torito VD version 1 found, boot catalog is in sector 42 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2B 43 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.6/alpine-vanilla-3.6.0-x86_64.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.6/alpine-vanilla-3.6.0-x86_64.iso.txt -deleted file mode 100644 -index 31e913d..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.6/alpine-vanilla-3.6.0-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: alpine-vanilla 3.6.0 x86_64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 43520 --El Torito VD version 1 found, boot catalog is in sector 42 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2B 43 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.6/alpine-vanilla-3.6.1-x86.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.6/alpine-vanilla-3.6.1-x86.iso.txt -deleted file mode 100644 -index 7d4d5d3..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.6/alpine-vanilla-3.6.1-x86.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: alpine-vanilla 3.6.1 x86 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 41984 --El Torito VD version 1 found, boot catalog is in sector 42 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2B 43 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.6/alpine-vanilla-3.6.1-x86_64.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.6/alpine-vanilla-3.6.1-x86_64.iso.txt -deleted file mode 100644 -index 2494a6a..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.6/alpine-vanilla-3.6.1-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: alpine-vanilla 3.6.1 x86_64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 43520 --El Torito VD version 1 found, boot catalog is in sector 42 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2B 43 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.6/alpine-vanilla-3.6.2-x86.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.6/alpine-vanilla-3.6.2-x86.iso.txt -deleted file mode 100644 -index 35f1dac..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.6/alpine-vanilla-3.6.2-x86.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: alpine-vanilla 3.6.2 x86 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 41984 --El Torito VD version 1 found, boot catalog is in sector 42 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2B 43 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.6/alpine-vanilla-3.6.2-x86_64.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.6/alpine-vanilla-3.6.2-x86_64.iso.txt -deleted file mode 100644 -index 59bd9b7..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.6/alpine-vanilla-3.6.2-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: alpine-vanilla 3.6.2 x86_64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 43520 --El Torito VD version 1 found, boot catalog is in sector 42 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2B 43 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.6/alpine-virt-3.6.0-x86.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.6/alpine-virt-3.6.0-x86.iso.txt -deleted file mode 100644 -index fc0804f..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.6/alpine-virt-3.6.0-x86.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: alpine-virt 3.6.0 x86 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 12800 --El Torito VD version 1 found, boot catalog is in sector 42 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2B 43 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.6/alpine-virt-3.6.0-x86_64.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.6/alpine-virt-3.6.0-x86_64.iso.txt -deleted file mode 100644 -index 2e8cb7f..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.6/alpine-virt-3.6.0-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: alpine-virt 3.6.0 x86_64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 17408 --El Torito VD version 1 found, boot catalog is in sector 42 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2B 43 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.6/alpine-virt-3.6.1-x86.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.6/alpine-virt-3.6.1-x86.iso.txt -deleted file mode 100644 -index 397d5fe..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.6/alpine-virt-3.6.1-x86.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: alpine-virt 3.6.1 x86 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 12800 --El Torito VD version 1 found, boot catalog is in sector 42 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2B 43 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.6/alpine-virt-3.6.1-x86_64.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.6/alpine-virt-3.6.1-x86_64.iso.txt -deleted file mode 100644 -index b676f65..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.6/alpine-virt-3.6.1-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: alpine-virt 3.6.1 x86_64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 17408 --El Torito VD version 1 found, boot catalog is in sector 42 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2B 43 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.6/alpine-virt-3.6.2-x86.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.6/alpine-virt-3.6.2-x86.iso.txt -deleted file mode 100644 -index 6a6853c..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.6/alpine-virt-3.6.2-x86.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: alpine-virt 3.6.2 x86 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 12800 --El Torito VD version 1 found, boot catalog is in sector 42 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2B 43 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.6/alpine-virt-3.6.2-x86_64.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.6/alpine-virt-3.6.2-x86_64.iso.txt -deleted file mode 100644 -index 4808df5..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.6/alpine-virt-3.6.2-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: alpine-virt 3.6.2 x86_64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 17408 --El Torito VD version 1 found, boot catalog is in sector 42 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2B 43 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.6/alpine-xen-3.6.0-x86_64.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.6/alpine-xen-3.6.0-x86_64.iso.txt -deleted file mode 100644 -index 3bae327..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.6/alpine-xen-3.6.0-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: alpine-xen 3.6.0 x86_64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 79872 --El Torito VD version 1 found, boot catalog is in sector 50 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 33 51 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.6/alpine-xen-3.6.1-x86_64.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.6/alpine-xen-3.6.1-x86_64.iso.txt -deleted file mode 100644 -index dc6227d..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.6/alpine-xen-3.6.1-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: alpine-xen 3.6.1 x86_64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 79872 --El Torito VD version 1 found, boot catalog is in sector 50 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 33 51 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.6/alpine-xen-3.6.2-x86_64.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.6/alpine-xen-3.6.2-x86_64.iso.txt -deleted file mode 100644 -index e38d230..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.6/alpine-xen-3.6.2-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: alpine-xen 3.6.2 x86_64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 79872 --El Torito VD version 1 found, boot catalog is in sector 50 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 33 51 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.7/alpine-extended-3.7.0-x86.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.7/alpine-extended-3.7.0-x86.iso.txt -deleted file mode 100644 -index 9ff74db..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.7/alpine-extended-3.7.0-x86.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: alpine-extended 3.7.0 x86 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.8 2017.09.12.143001, LIBISOBURN-1.4.8, LIBISOFS-1.4.8, LIBBURN-1.4.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 147456 --El Torito VD version 1 found, boot catalog is in sector 69 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 46 70 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.7/alpine-extended-3.7.0-x86_64.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.7/alpine-extended-3.7.0-x86_64.iso.txt -deleted file mode 100644 -index e8a098f..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.7/alpine-extended-3.7.0-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: alpine-extended 3.7.0 x86_64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.8 2017.09.12.143001, LIBISOBURN-1.4.8, LIBISOFS-1.4.8, LIBBURN-1.4.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 175104 --El Torito VD version 1 found, boot catalog is in sector 69 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 46 70 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.7/alpine-standard-3.7.0-x86.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.7/alpine-standard-3.7.0-x86.iso.txt -deleted file mode 100644 -index 30eedab..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.7/alpine-standard-3.7.0-x86.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: alpine-standard 3.7.0 x86 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.8 2017.09.12.143001, LIBISOBURN-1.4.8, LIBISOFS-1.4.8, LIBBURN-1.4.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 42496 --El Torito VD version 1 found, boot catalog is in sector 48 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 31 49 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.7/alpine-standard-3.7.0-x86_64.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.7/alpine-standard-3.7.0-x86_64.iso.txt -deleted file mode 100644 -index f96110b..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.7/alpine-standard-3.7.0-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: alpine-standard 3.7.0 x86_64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.8 2017.09.12.143001, LIBISOBURN-1.4.8, LIBISOFS-1.4.8, LIBBURN-1.4.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 55808 --El Torito VD version 1 found, boot catalog is in sector 48 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 31 49 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.7/alpine-vanilla-3.7.0-ppc64le.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.7/alpine-vanilla-3.7.0-ppc64le.iso.txt -deleted file mode 100644 -index ee7de57..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.7/alpine-vanilla-3.7.0-ppc64le.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: alpine-vanilla 3.7.0 ppc64le --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.8 2017.09.12.143001, LIBISOBURN-1.4.8, LIBISOFS-1.4.8, LIBBURN-1.4.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 24154 --NO Joliet present --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/alpinelinux/alpinelinux3.7/alpine-vanilla-3.7.0-x86.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.7/alpine-vanilla-3.7.0-x86.iso.txt -deleted file mode 100644 -index d0b3563..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.7/alpine-vanilla-3.7.0-x86.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: alpine-vanilla 3.7.0 x86 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.8 2017.09.12.143001, LIBISOBURN-1.4.8, LIBISOFS-1.4.8, LIBBURN-1.4.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 43520 --El Torito VD version 1 found, boot catalog is in sector 48 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 31 49 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.7/alpine-vanilla-3.7.0-x86_64.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.7/alpine-vanilla-3.7.0-x86_64.iso.txt -deleted file mode 100644 -index f14022f..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.7/alpine-vanilla-3.7.0-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: alpine-vanilla 3.7.0 x86_64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.8 2017.09.12.143001, LIBISOBURN-1.4.8, LIBISOFS-1.4.8, LIBBURN-1.4.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 45056 --El Torito VD version 1 found, boot catalog is in sector 48 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 31 49 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.7/alpine-virt-3.7.0-x86.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.7/alpine-virt-3.7.0-x86.iso.txt -deleted file mode 100644 -index 0791040..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.7/alpine-virt-3.7.0-x86.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: alpine-virt 3.7.0 x86 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.8 2017.09.12.143001, LIBISOBURN-1.4.8, LIBISOFS-1.4.8, LIBBURN-1.4.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 13824 --El Torito VD version 1 found, boot catalog is in sector 48 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 31 49 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.7/alpine-virt-3.7.0-x86_64.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.7/alpine-virt-3.7.0-x86_64.iso.txt -deleted file mode 100644 -index f36119b..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.7/alpine-virt-3.7.0-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: alpine-virt 3.7.0 x86_64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.8 2017.09.12.143001, LIBISOBURN-1.4.8, LIBISOFS-1.4.8, LIBBURN-1.4.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 18944 --El Torito VD version 1 found, boot catalog is in sector 48 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 31 49 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.7/alpine-xen-3.7.0-x86_64.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.7/alpine-xen-3.7.0-x86_64.iso.txt -deleted file mode 100644 -index e2e2050..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.7/alpine-xen-3.7.0-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: alpine-xen 3.7.0 x86_64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.8 2017.09.12.143001, LIBISOBURN-1.4.8, LIBISOFS-1.4.8, LIBBURN-1.4.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 82432 --El Torito VD version 1 found, boot catalog is in sector 56 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 39 57 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.8/alpine-extended-3.8.1-x86.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.8/alpine-extended-3.8.1-x86.iso.txt -deleted file mode 100644 -index f510822..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.8/alpine-extended-3.8.1-x86.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: alpine-ext 3.8.1 x86 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.8 2017.09.12.143001, LIBISOBURN-1.4.8, LIBISOFS-1.4.8, LIBBURN-1.4.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 181760 --El Torito VD version 1 found, boot catalog is in sector 82 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 53 83 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.8/alpine-extended-3.8.1-x86_64.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.8/alpine-extended-3.8.1-x86_64.iso.txt -deleted file mode 100644 -index 4bf0f2f..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.8/alpine-extended-3.8.1-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: alpine-ext 3.8.1 x86_64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.8 2017.09.12.143001, LIBISOBURN-1.4.8, LIBISOFS-1.4.8, LIBBURN-1.4.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 188928 --El Torito VD version 1 found, boot catalog is in sector 82 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 53 83 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.8/alpine-standard-3.8.0-ppc64le.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.8/alpine-standard-3.8.0-ppc64le.iso.txt -deleted file mode 100644 -index 7de68d9..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.8/alpine-standard-3.8.0-ppc64le.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: alpine-std 3.8.0 ppc64le --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.8 2017.09.12.143001, LIBISOBURN-1.4.8, LIBISOFS-1.4.8, LIBBURN-1.4.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 25399 --NO Joliet present --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/alpinelinux/alpinelinux3.8/alpine-standard-3.8.0-s390x.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.8/alpine-standard-3.8.0-s390x.iso.txt -deleted file mode 100644 -index 456aa82..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.8/alpine-standard-3.8.0-s390x.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: alpine-std 3.8.0 s390x --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.8 2017.09.12.143001, LIBISOBURN-1.4.8, LIBISOFS-1.4.8, LIBBURN-1.4.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 26135 --El Torito VD version 1 found, boot catalog is in sector 41 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 779C -- Bootoff 2A 42 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.8/alpine-standard-3.8.0-x86.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.8/alpine-standard-3.8.0-x86.iso.txt -deleted file mode 100644 -index ad7eec2..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.8/alpine-standard-3.8.0-x86.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: alpine-std 3.8.0 x86 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.8 2017.09.12.143001, LIBISOBURN-1.4.8, LIBISOFS-1.4.8, LIBBURN-1.4.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 48640 --El Torito VD version 1 found, boot catalog is in sector 48 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 31 49 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.8/alpine-standard-3.8.0-x86_64.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.8/alpine-standard-3.8.0-x86_64.iso.txt -deleted file mode 100644 -index ed4af59..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.8/alpine-standard-3.8.0-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: alpine-std 3.8.0 x86_64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.8 2017.09.12.143001, LIBISOBURN-1.4.8, LIBISOFS-1.4.8, LIBBURN-1.4.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 53248 --El Torito VD version 1 found, boot catalog is in sector 48 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 31 49 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.8/alpine-standard-3.8.1-ppc64le.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.8/alpine-standard-3.8.1-ppc64le.iso.txt -deleted file mode 100644 -index 57cc551..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.8/alpine-standard-3.8.1-ppc64le.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: alpine-std 3.8.1 ppc64le --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.8 2017.09.12.143001, LIBISOBURN-1.4.8, LIBISOFS-1.4.8, LIBBURN-1.4.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 25398 --NO Joliet present --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/alpinelinux/alpinelinux3.8/alpine-standard-3.8.1-s390x.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.8/alpine-standard-3.8.1-s390x.iso.txt -deleted file mode 100644 -index c2810ae..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.8/alpine-standard-3.8.1-s390x.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: alpine-std 3.8.1 s390x --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.8 2017.09.12.143001, LIBISOBURN-1.4.8, LIBISOFS-1.4.8, LIBBURN-1.4.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 26139 --El Torito VD version 1 found, boot catalog is in sector 41 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 77A0 -- Bootoff 2A 42 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.8/alpine-standard-3.8.1-x86.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.8/alpine-standard-3.8.1-x86.iso.txt -deleted file mode 100644 -index 7d79bad..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.8/alpine-standard-3.8.1-x86.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: alpine-std 3.8.1 x86 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.8 2017.09.12.143001, LIBISOBURN-1.4.8, LIBISOFS-1.4.8, LIBBURN-1.4.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 49152 --El Torito VD version 1 found, boot catalog is in sector 48 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 31 49 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.8/alpine-standard-3.8.1-x86_64.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.8/alpine-standard-3.8.1-x86_64.iso.txt -deleted file mode 100644 -index 07600ef..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.8/alpine-standard-3.8.1-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: alpine-std 3.8.1 x86_64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.8 2017.09.12.143001, LIBISOBURN-1.4.8, LIBISOFS-1.4.8, LIBBURN-1.4.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 53248 --El Torito VD version 1 found, boot catalog is in sector 48 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 31 49 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.8/alpine-virt-3.8.0-x86.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.8/alpine-virt-3.8.0-x86.iso.txt -deleted file mode 100644 -index 86781cd..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.8/alpine-virt-3.8.0-x86.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: alpine-virt 3.8.0 x86 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.8 2017.09.12.143001, LIBISOBURN-1.4.8, LIBISOFS-1.4.8, LIBBURN-1.4.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 14848 --El Torito VD version 1 found, boot catalog is in sector 48 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 31 49 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.8/alpine-virt-3.8.0-x86_64.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.8/alpine-virt-3.8.0-x86_64.iso.txt -deleted file mode 100644 -index dbda887..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.8/alpine-virt-3.8.0-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: alpine-virt 3.8.0 x86_64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.8 2017.09.12.143001, LIBISOBURN-1.4.8, LIBISOFS-1.4.8, LIBBURN-1.4.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 16384 --El Torito VD version 1 found, boot catalog is in sector 48 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 31 49 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.8/alpine-virt-3.8.1-x86.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.8/alpine-virt-3.8.1-x86.iso.txt -deleted file mode 100644 -index bded4d4..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.8/alpine-virt-3.8.1-x86.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: alpine-virt 3.8.1 x86 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.8 2017.09.12.143001, LIBISOBURN-1.4.8, LIBISOFS-1.4.8, LIBBURN-1.4.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 14848 --El Torito VD version 1 found, boot catalog is in sector 48 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 31 49 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.8/alpine-virt-3.8.1-x86_64.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.8/alpine-virt-3.8.1-x86_64.iso.txt -deleted file mode 100644 -index 3de53d3..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.8/alpine-virt-3.8.1-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: alpine-virt 3.8.1 x86_64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.8 2017.09.12.143001, LIBISOBURN-1.4.8, LIBISOFS-1.4.8, LIBBURN-1.4.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 16384 --El Torito VD version 1 found, boot catalog is in sector 48 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 31 49 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.8/alpine-xen-3.8.0-x86_64.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.8/alpine-xen-3.8.0-x86_64.iso.txt -deleted file mode 100644 -index a5f7717..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.8/alpine-xen-3.8.0-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: alpine-xen 3.8.0 x86_64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.8 2017.09.12.143001, LIBISOBURN-1.4.8, LIBISOFS-1.4.8, LIBBURN-1.4.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 78848 --El Torito VD version 1 found, boot catalog is in sector 57 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 30A 778 -diff --git a/tests/isodata/alpinelinux/alpinelinux3.8/alpine-xen-3.8.1-x86_64.iso.txt b/tests/isodata/alpinelinux/alpinelinux3.8/alpine-xen-3.8.1-x86_64.iso.txt -deleted file mode 100644 -index 76a1947..0000000 ---- a/tests/isodata/alpinelinux/alpinelinux3.8/alpine-xen-3.8.1-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: alpine-xen 3.8.1 x86_64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.8 2017.09.12.143001, LIBISOBURN-1.4.8, LIBISOFS-1.4.8, LIBBURN-1.4.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 78848 --El Torito VD version 1 found, boot catalog is in sector 57 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 30A 778 -diff --git a/tests/isodata/altlinux/alt.p8/alt-p8-builder-20180912-i586.iso.txt b/tests/isodata/altlinux/alt.p8/alt-p8-builder-20180912-i586.iso.txt -deleted file mode 100644 -index 6f19e57..0000000 ---- a/tests/isodata/altlinux/alt.p8/alt-p8-builder-20180912-i586.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT p8 builder/i586 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: ALT-P8-BUILDER --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 163840 --El Torito VD version 1 found, boot catalog is in sector 144 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 91 145 -diff --git a/tests/isodata/altlinux/alt.p8/alt-p8-builder-20180912-x86_64.iso.txt b/tests/isodata/altlinux/alt.p8/alt-p8-builder-20180912-x86_64.iso.txt -deleted file mode 100644 -index b691a5c..0000000 ---- a/tests/isodata/altlinux/alt.p8/alt-p8-builder-20180912-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT p8 builder/x86_64 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: ALT-P8-BUILDER --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 188416 --El Torito VD version 1 found, boot catalog is in sector 162 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff A3 163 -diff --git a/tests/isodata/altlinux/alt.p8/alt-p8-cinnamon-20180912-i586.iso.txt b/tests/isodata/altlinux/alt.p8/alt-p8-cinnamon-20180912-i586.iso.txt -deleted file mode 100644 -index f4ef5e4..0000000 ---- a/tests/isodata/altlinux/alt.p8/alt-p8-cinnamon-20180912-i586.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT p8 cinnamon/i586 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: ALT-P8-CINNAMON --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 463872 --El Torito VD version 1 found, boot catalog is in sector 92 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 5D 93 -diff --git a/tests/isodata/altlinux/alt.p8/alt-p8-cinnamon-20180912-x86_64.iso.txt b/tests/isodata/altlinux/alt.p8/alt-p8-cinnamon-20180912-x86_64.iso.txt -deleted file mode 100644 -index a08fa00..0000000 ---- a/tests/isodata/altlinux/alt.p8/alt-p8-cinnamon-20180912-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT p8 cinnamon/x86_64 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: ALT-P8-CINNAMON --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 502272 --El Torito VD version 1 found, boot catalog is in sector 158 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 9F 159 -diff --git a/tests/isodata/altlinux/alt.p8/alt-p8-enlightenment-20180912-i586.iso.txt b/tests/isodata/altlinux/alt.p8/alt-p8-enlightenment-20180912-i586.iso.txt -deleted file mode 100644 -index 61394e4..0000000 ---- a/tests/isodata/altlinux/alt.p8/alt-p8-enlightenment-20180912-i586.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT p8 enlightenment/i586 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: ALT-P8-ENLIGHTENMENT --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 343552 --El Torito VD version 1 found, boot catalog is in sector 92 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 5D 93 -diff --git a/tests/isodata/altlinux/alt.p8/alt-p8-enlightenment-20180912-x86_64.iso.txt b/tests/isodata/altlinux/alt.p8/alt-p8-enlightenment-20180912-x86_64.iso.txt -deleted file mode 100644 -index 931b93e..0000000 ---- a/tests/isodata/altlinux/alt.p8/alt-p8-enlightenment-20180912-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT p8 enlightenment/x86_64 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: ALT-P8-ENLIGHTENMENT --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 384000 --El Torito VD version 1 found, boot catalog is in sector 158 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 9F 159 -diff --git a/tests/isodata/altlinux/alt.p8/alt-p8-gnome3-20180912-i586.iso.txt b/tests/isodata/altlinux/alt.p8/alt-p8-gnome3-20180912-i586.iso.txt -deleted file mode 100644 -index 11322a9..0000000 ---- a/tests/isodata/altlinux/alt.p8/alt-p8-gnome3-20180912-i586.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT p8 gnome3/i586 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: ALT-P8-GNOME3 --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 595096 --El Torito VD version 1 found, boot catalog is in sector 92 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 5D 93 -diff --git a/tests/isodata/altlinux/alt.p8/alt-p8-gnome3-20180912-x86_64.iso.txt b/tests/isodata/altlinux/alt.p8/alt-p8-gnome3-20180912-x86_64.iso.txt -deleted file mode 100644 -index 3de1587..0000000 ---- a/tests/isodata/altlinux/alt.p8/alt-p8-gnome3-20180912-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT p8 gnome3/x86_64 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: ALT-P8-GNOME3 --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 644008 --El Torito VD version 1 found, boot catalog is in sector 158 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 9F 159 -diff --git a/tests/isodata/altlinux/alt.p8/alt-p8-gnustep-20180912-i586.iso.txt b/tests/isodata/altlinux/alt.p8/alt-p8-gnustep-20180912-i586.iso.txt -deleted file mode 100644 -index b3ef234..0000000 ---- a/tests/isodata/altlinux/alt.p8/alt-p8-gnustep-20180912-i586.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT p8 gnustep/i586 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: ALT-P8-GNUSTEP --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 365056 --El Torito VD version 1 found, boot catalog is in sector 92 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 5D 93 -diff --git a/tests/isodata/altlinux/alt.p8/alt-p8-gnustep-20180912-x86_64.iso.txt b/tests/isodata/altlinux/alt.p8/alt-p8-gnustep-20180912-x86_64.iso.txt -deleted file mode 100644 -index 05f37bb..0000000 ---- a/tests/isodata/altlinux/alt.p8/alt-p8-gnustep-20180912-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT p8 gnustep/x86_64 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: ALT-P8-GNUSTEP --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 398848 --El Torito VD version 1 found, boot catalog is in sector 158 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 9F 159 -diff --git a/tests/isodata/altlinux/alt.p8/alt-p8-icewm-20180912-i586.iso.txt b/tests/isodata/altlinux/alt.p8/alt-p8-icewm-20180912-i586.iso.txt -deleted file mode 100644 -index 6fb5d1d..0000000 ---- a/tests/isodata/altlinux/alt.p8/alt-p8-icewm-20180912-i586.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT p8 icewm/i586 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: ALT-P8-ICEWM --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 363008 --El Torito VD version 1 found, boot catalog is in sector 92 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 5D 93 -diff --git a/tests/isodata/altlinux/alt.p8/alt-p8-icewm-20180912-x86_64.iso.txt b/tests/isodata/altlinux/alt.p8/alt-p8-icewm-20180912-x86_64.iso.txt -deleted file mode 100644 -index 363f6d5..0000000 ---- a/tests/isodata/altlinux/alt.p8/alt-p8-icewm-20180912-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT p8 icewm/x86_64 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: ALT-P8-ICEWM --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 401920 --El Torito VD version 1 found, boot catalog is in sector 158 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 9F 159 -diff --git a/tests/isodata/altlinux/alt.p8/alt-p8-jeos-20180912-i586.iso.txt b/tests/isodata/altlinux/alt.p8/alt-p8-jeos-20180912-i586.iso.txt -deleted file mode 100644 -index f8651ca..0000000 ---- a/tests/isodata/altlinux/alt.p8/alt-p8-jeos-20180912-i586.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT p8 jeos/i586 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: ALT-P8-JEOS --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 140800 --El Torito VD version 1 found, boot catalog is in sector 152 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 99 153 -diff --git a/tests/isodata/altlinux/alt.p8/alt-p8-jeos-20180912-x86_64.iso.txt b/tests/isodata/altlinux/alt.p8/alt-p8-jeos-20180912-x86_64.iso.txt -deleted file mode 100644 -index bc52903..0000000 ---- a/tests/isodata/altlinux/alt.p8/alt-p8-jeos-20180912-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT p8 jeos/x86_64 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: ALT-P8-JEOS --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 151552 --El Torito VD version 1 found, boot catalog is in sector 154 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 9B 155 -diff --git a/tests/isodata/altlinux/alt.p8/alt-p8-kde4-20180912-i586.iso.txt b/tests/isodata/altlinux/alt.p8/alt-p8-kde4-20180912-i586.iso.txt -deleted file mode 100644 -index e2bbcb0..0000000 ---- a/tests/isodata/altlinux/alt.p8/alt-p8-kde4-20180912-i586.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT p8 kde4/i586 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: ALT-P8-KDE4 --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 761112 --El Torito VD version 1 found, boot catalog is in sector 92 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 5D 93 -diff --git a/tests/isodata/altlinux/alt.p8/alt-p8-kde4-20180912-x86_64.iso.txt b/tests/isodata/altlinux/alt.p8/alt-p8-kde4-20180912-x86_64.iso.txt -deleted file mode 100644 -index 4856eaa..0000000 ---- a/tests/isodata/altlinux/alt.p8/alt-p8-kde4-20180912-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT p8 kde4/x86_64 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: ALT-P8-KDE4 --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 788416 --El Torito VD version 1 found, boot catalog is in sector 158 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 9F 159 -diff --git a/tests/isodata/altlinux/alt.p8/alt-p8-kde5-20180912-i586.iso.txt b/tests/isodata/altlinux/alt.p8/alt-p8-kde5-20180912-i586.iso.txt -deleted file mode 100644 -index 3bce5d5..0000000 ---- a/tests/isodata/altlinux/alt.p8/alt-p8-kde5-20180912-i586.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT p8 kde5/i586 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: ALT-P8-KDE5 --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 867504 --El Torito VD version 1 found, boot catalog is in sector 92 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 5D 93 -diff --git a/tests/isodata/altlinux/alt.p8/alt-p8-kde5-20180912-x86_64.iso.txt b/tests/isodata/altlinux/alt.p8/alt-p8-kde5-20180912-x86_64.iso.txt -deleted file mode 100644 -index 4b660af..0000000 ---- a/tests/isodata/altlinux/alt.p8/alt-p8-kde5-20180912-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT p8 kde5/x86_64 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: ALT-P8-KDE5 --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 894960 --El Torito VD version 1 found, boot catalog is in sector 158 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 9F 159 -diff --git a/tests/isodata/altlinux/alt.p8/alt-p8-lxde-20180912-i586.iso.txt b/tests/isodata/altlinux/alt.p8/alt-p8-lxde-20180912-i586.iso.txt -deleted file mode 100644 -index e03fcea..0000000 ---- a/tests/isodata/altlinux/alt.p8/alt-p8-lxde-20180912-i586.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT p8 lxde/i586 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: ALT-P8-LXDE --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 385536 --El Torito VD version 1 found, boot catalog is in sector 92 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 5D 93 -diff --git a/tests/isodata/altlinux/alt.p8/alt-p8-lxde-20180912-x86_64.iso.txt b/tests/isodata/altlinux/alt.p8/alt-p8-lxde-20180912-x86_64.iso.txt -deleted file mode 100644 -index 0786820..0000000 ---- a/tests/isodata/altlinux/alt.p8/alt-p8-lxde-20180912-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT p8 lxde/x86_64 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: ALT-P8-LXDE --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 421888 --El Torito VD version 1 found, boot catalog is in sector 158 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 9F 159 -diff --git a/tests/isodata/altlinux/alt.p8/alt-p8-lxqt-20180912-i586.iso.txt b/tests/isodata/altlinux/alt.p8/alt-p8-lxqt-20180912-i586.iso.txt -deleted file mode 100644 -index d7b95fc..0000000 ---- a/tests/isodata/altlinux/alt.p8/alt-p8-lxqt-20180912-i586.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT p8 lxqt/i586 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: ALT-P8-LXQT --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 403968 --El Torito VD version 1 found, boot catalog is in sector 92 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 5D 93 -diff --git a/tests/isodata/altlinux/alt.p8/alt-p8-lxqt-20180912-x86_64.iso.txt b/tests/isodata/altlinux/alt.p8/alt-p8-lxqt-20180912-x86_64.iso.txt -deleted file mode 100644 -index fdcfca2..0000000 ---- a/tests/isodata/altlinux/alt.p8/alt-p8-lxqt-20180912-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT p8 lxqt/x86_64 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: ALT-P8-LXQT --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 436224 --El Torito VD version 1 found, boot catalog is in sector 158 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 9F 159 -diff --git a/tests/isodata/altlinux/alt.p8/alt-p8-mate-20180913-i586.iso.txt b/tests/isodata/altlinux/alt.p8/alt-p8-mate-20180913-i586.iso.txt -deleted file mode 100644 -index ac493d2..0000000 ---- a/tests/isodata/altlinux/alt.p8/alt-p8-mate-20180913-i586.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT p8 mate/i586 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: ALT-P8-MATE --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 438784 --El Torito VD version 1 found, boot catalog is in sector 92 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 5D 93 -diff --git a/tests/isodata/altlinux/alt.p8/alt-p8-mate-20180913-x86_64.iso.txt b/tests/isodata/altlinux/alt.p8/alt-p8-mate-20180913-x86_64.iso.txt -deleted file mode 100644 -index 4e73680..0000000 ---- a/tests/isodata/altlinux/alt.p8/alt-p8-mate-20180913-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT p8 mate/x86_64 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: ALT-P8-MATE --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 478720 --El Torito VD version 1 found, boot catalog is in sector 158 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 9F 159 -diff --git a/tests/isodata/altlinux/alt.p8/alt-p8-rescue-20180912-i586.iso.txt b/tests/isodata/altlinux/alt.p8/alt-p8-rescue-20180912-i586.iso.txt -deleted file mode 100644 -index 6a1c7ca..0000000 ---- a/tests/isodata/altlinux/alt.p8/alt-p8-rescue-20180912-i586.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT p8 rescue/i586 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: ALT-P8-RESCUE --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 199168 --El Torito VD version 1 found, boot catalog is in sector 66 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 43 67 -diff --git a/tests/isodata/altlinux/alt.p8/alt-p8-rescue-20180912-x86_64.iso.txt b/tests/isodata/altlinux/alt.p8/alt-p8-rescue-20180912-x86_64.iso.txt -deleted file mode 100644 -index da6d1a0..0000000 ---- a/tests/isodata/altlinux/alt.p8/alt-p8-rescue-20180912-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT p8 rescue/x86_64 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: ALT-P8-RESCUE --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 243712 --El Torito VD version 1 found, boot catalog is in sector 132 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 85 133 -diff --git a/tests/isodata/altlinux/alt.p8/alt-p8-server-20180913-i586.iso.txt b/tests/isodata/altlinux/alt.p8/alt-p8-server-20180913-i586.iso.txt -deleted file mode 100644 -index 7d22ecf..0000000 ---- a/tests/isodata/altlinux/alt.p8/alt-p8-server-20180913-i586.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT p8 server/i586 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: ALT-P8-SERVER --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 441856 --El Torito VD version 1 found, boot catalog is in sector 328 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 149 329 -diff --git a/tests/isodata/altlinux/alt.p8/alt-p8-server-20180913-x86_64.iso.txt b/tests/isodata/altlinux/alt.p8/alt-p8-server-20180913-x86_64.iso.txt -deleted file mode 100644 -index 80e0572..0000000 ---- a/tests/isodata/altlinux/alt.p8/alt-p8-server-20180913-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT p8 server/x86_64 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: ALT-P8-SERVER --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 486912 --El Torito VD version 1 found, boot catalog is in sector 350 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 15F 351 -diff --git a/tests/isodata/altlinux/alt.p8/alt-p8-server-pve-20180912-x86_64.iso.txt b/tests/isodata/altlinux/alt.p8/alt-p8-server-pve-20180912-x86_64.iso.txt -deleted file mode 100644 -index 6139917..0000000 ---- a/tests/isodata/altlinux/alt.p8/alt-p8-server-pve-20180912-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT p8 server-pve/x86_64 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: ALT-P8-SERVER-PVE --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 339456 --El Torito VD version 1 found, boot catalog is in sector 328 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 149 329 -diff --git a/tests/isodata/altlinux/alt.p8/alt-p8-sysv-tde-20180912-i586.iso.txt b/tests/isodata/altlinux/alt.p8/alt-p8-sysv-tde-20180912-i586.iso.txt -deleted file mode 100644 -index c518944..0000000 ---- a/tests/isodata/altlinux/alt.p8/alt-p8-sysv-tde-20180912-i586.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT p8 sysv-tde/i586 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: ALT-P8-SYSV-TDE --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 552704 --El Torito VD version 1 found, boot catalog is in sector 384 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 181 385 -diff --git a/tests/isodata/altlinux/alt.p8/alt-p8-sysv-tde-20180912-x86_64.iso.txt b/tests/isodata/altlinux/alt.p8/alt-p8-sysv-tde-20180912-x86_64.iso.txt -deleted file mode 100644 -index d8e37fd..0000000 ---- a/tests/isodata/altlinux/alt.p8/alt-p8-sysv-tde-20180912-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT p8 sysv-tde/x86_64 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: ALT-P8-SYSV-TDE --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 607200 --El Torito VD version 1 found, boot catalog is in sector 458 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1CB 459 -diff --git a/tests/isodata/altlinux/alt.p8/alt-p8-sysv-xfce-20180912-i586.iso.txt b/tests/isodata/altlinux/alt.p8/alt-p8-sysv-xfce-20180912-i586.iso.txt -deleted file mode 100644 -index 147b8ca..0000000 ---- a/tests/isodata/altlinux/alt.p8/alt-p8-sysv-xfce-20180912-i586.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT p8 sysv-xfce/i586 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: ALT-P8-SYSV-XFCE --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 529880 --El Torito VD version 1 found, boot catalog is in sector 424 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1A9 425 -diff --git a/tests/isodata/altlinux/alt.p8/alt-p8-sysv-xfce-20180912-x86_64.iso.txt b/tests/isodata/altlinux/alt.p8/alt-p8-sysv-xfce-20180912-x86_64.iso.txt -deleted file mode 100644 -index b020dfd..0000000 ---- a/tests/isodata/altlinux/alt.p8/alt-p8-sysv-xfce-20180912-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT p8 sysv-xfce/x86_64 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: ALT-P8-SYSV-XFCE --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 582336 --El Torito VD version 1 found, boot catalog is in sector 498 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1F3 499 -diff --git a/tests/isodata/altlinux/alt.p8/alt-p8-wmaker-20180912-i586.iso.txt b/tests/isodata/altlinux/alt.p8/alt-p8-wmaker-20180912-i586.iso.txt -deleted file mode 100644 -index 333e672..0000000 ---- a/tests/isodata/altlinux/alt.p8/alt-p8-wmaker-20180912-i586.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT p8 wmaker/i586 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: ALT-P8-WMAKER --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 279552 --El Torito VD version 1 found, boot catalog is in sector 92 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 5D 93 -diff --git a/tests/isodata/altlinux/alt.p8/alt-p8-wmaker-20180912-x86_64.iso.txt b/tests/isodata/altlinux/alt.p8/alt-p8-wmaker-20180912-x86_64.iso.txt -deleted file mode 100644 -index a595ad4..0000000 ---- a/tests/isodata/altlinux/alt.p8/alt-p8-wmaker-20180912-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT p8 wmaker/x86_64 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: ALT-P8-WMAKER --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 311808 --El Torito VD version 1 found, boot catalog is in sector 158 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 9F 159 -diff --git a/tests/isodata/altlinux/alt.p8/alt-p8-xfce-20180912-i586.iso.txt b/tests/isodata/altlinux/alt.p8/alt-p8-xfce-20180912-i586.iso.txt -deleted file mode 100644 -index fb838c7..0000000 ---- a/tests/isodata/altlinux/alt.p8/alt-p8-xfce-20180912-i586.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT p8 xfce/i586 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: ALT-P8-XFCE --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 358400 --El Torito VD version 1 found, boot catalog is in sector 92 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 5D 93 -diff --git a/tests/isodata/altlinux/alt.p8/alt-p8-xfce-20180912-x86_64.iso.txt b/tests/isodata/altlinux/alt.p8/alt-p8-xfce-20180912-x86_64.iso.txt -deleted file mode 100644 -index cc4f4d4..0000000 ---- a/tests/isodata/altlinux/alt.p8/alt-p8-xfce-20180912-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT p8 xfce/x86_64 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: ALT-P8-XFCE --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 409088 --El Torito VD version 1 found, boot catalog is in sector 158 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 9F 159 -diff --git a/tests/isodata/altlinux/alt.sisyphus/regular-cinnamon-20181017-i586.iso.txt b/tests/isodata/altlinux/alt.sisyphus/regular-cinnamon-20181017-i586.iso.txt -deleted file mode 100644 -index 116dd9b..0000000 ---- a/tests/isodata/altlinux/alt.sisyphus/regular-cinnamon-20181017-i586.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT regular-cinnamon/i586 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.5.0 2018.09.15.133001, LIBISOBURN-1.5.0, LIBISOFS-1.5.0, LIBBURN-1.5.0 --Application id: REGULAR-CINNAMON --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 517632 --El Torito VD version 1 found, boot catalog is in sector 92 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 5D 93 -diff --git a/tests/isodata/altlinux/alt.sisyphus/regular-cinnamon-20181017-x86_64.iso.txt b/tests/isodata/altlinux/alt.sisyphus/regular-cinnamon-20181017-x86_64.iso.txt -deleted file mode 100644 -index 291b97c..0000000 ---- a/tests/isodata/altlinux/alt.sisyphus/regular-cinnamon-20181017-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT regular-cinnamon/x86_64 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.5.0 2018.09.15.133001, LIBISOBURN-1.5.0, LIBISOFS-1.5.0, LIBBURN-1.5.0 --Application id: REGULAR-CINNAMON --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 567840 --El Torito VD version 1 found, boot catalog is in sector 160 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 82B1 33457 -diff --git a/tests/isodata/altlinux/alt.sisyphus/regular-enlightenment-20181017-i586.iso.txt b/tests/isodata/altlinux/alt.sisyphus/regular-enlightenment-20181017-i586.iso.txt -deleted file mode 100644 -index 2b987b3..0000000 ---- a/tests/isodata/altlinux/alt.sisyphus/regular-enlightenment-20181017-i586.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT regular-enlightenment/i586 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.5.0 2018.09.15.133001, LIBISOBURN-1.5.0, LIBISOFS-1.5.0, LIBBURN-1.5.0 --Application id: REGULAR-ENLIGHTENMENT --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 401920 --El Torito VD version 1 found, boot catalog is in sector 92 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 5D 93 -diff --git a/tests/isodata/altlinux/alt.sisyphus/regular-enlightenment-20181017-x86_64.iso.txt b/tests/isodata/altlinux/alt.sisyphus/regular-enlightenment-20181017-x86_64.iso.txt -deleted file mode 100644 -index 9def679..0000000 ---- a/tests/isodata/altlinux/alt.sisyphus/regular-enlightenment-20181017-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT regular-enlightenment/x86_64 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.5.0 2018.09.15.133001, LIBISOBURN-1.5.0, LIBISOFS-1.5.0, LIBBURN-1.5.0 --Application id: REGULAR-ENLIGHTENMENT --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 454656 --El Torito VD version 1 found, boot catalog is in sector 160 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 82B1 33457 -diff --git a/tests/isodata/altlinux/alt.sisyphus/regular-gnome3-20181017-i586.iso.txt b/tests/isodata/altlinux/alt.sisyphus/regular-gnome3-20181017-i586.iso.txt -deleted file mode 100644 -index 9b72c1c..0000000 ---- a/tests/isodata/altlinux/alt.sisyphus/regular-gnome3-20181017-i586.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT regular-gnome3/i586 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.5.0 2018.09.15.133001, LIBISOBURN-1.5.0, LIBISOFS-1.5.0, LIBBURN-1.5.0 --Application id: REGULAR-GNOME3 --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 874832 --El Torito VD version 1 found, boot catalog is in sector 92 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 5D 93 -diff --git a/tests/isodata/altlinux/alt.sisyphus/regular-gnome3-20181017-x86_64.iso.txt b/tests/isodata/altlinux/alt.sisyphus/regular-gnome3-20181017-x86_64.iso.txt -deleted file mode 100644 -index c5a474f..0000000 ---- a/tests/isodata/altlinux/alt.sisyphus/regular-gnome3-20181017-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT regular-gnome3/x86_64 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.5.0 2018.09.15.133001, LIBISOBURN-1.5.0, LIBISOFS-1.5.0, LIBBURN-1.5.0 --Application id: REGULAR-GNOME3 --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 930240 --El Torito VD version 1 found, boot catalog is in sector 160 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 8B71 35697 -diff --git a/tests/isodata/altlinux/alt.sisyphus/regular-gnustep-20181017-i586.iso.txt b/tests/isodata/altlinux/alt.sisyphus/regular-gnustep-20181017-i586.iso.txt -deleted file mode 100644 -index 3776960..0000000 ---- a/tests/isodata/altlinux/alt.sisyphus/regular-gnustep-20181017-i586.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT regular-gnustep/i586 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.5.0 2018.09.15.133001, LIBISOBURN-1.5.0, LIBISOFS-1.5.0, LIBBURN-1.5.0 --Application id: REGULAR-GNUSTEP --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 416768 --El Torito VD version 1 found, boot catalog is in sector 92 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 5D 93 -diff --git a/tests/isodata/altlinux/alt.sisyphus/regular-gnustep-20181017-x86_64.iso.txt b/tests/isodata/altlinux/alt.sisyphus/regular-gnustep-20181017-x86_64.iso.txt -deleted file mode 100644 -index 679e4a5..0000000 ---- a/tests/isodata/altlinux/alt.sisyphus/regular-gnustep-20181017-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT regular-gnustep/x86_64 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.5.0 2018.09.15.133001, LIBISOBURN-1.5.0, LIBISOFS-1.5.0, LIBBURN-1.5.0 --Application id: REGULAR-GNUSTEP --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 462336 --El Torito VD version 1 found, boot catalog is in sector 160 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 6891 26769 -diff --git a/tests/isodata/altlinux/alt.sisyphus/regular-icewm-20181017-i586.iso.txt b/tests/isodata/altlinux/alt.sisyphus/regular-icewm-20181017-i586.iso.txt -deleted file mode 100644 -index d9a4652..0000000 ---- a/tests/isodata/altlinux/alt.sisyphus/regular-icewm-20181017-i586.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT regular-icewm/i586 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.5.0 2018.09.15.133001, LIBISOBURN-1.5.0, LIBISOFS-1.5.0, LIBBURN-1.5.0 --Application id: REGULAR-ICEWM --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 387584 --El Torito VD version 1 found, boot catalog is in sector 92 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 5D 93 -diff --git a/tests/isodata/altlinux/alt.sisyphus/regular-icewm-20181017-x86_64.iso.txt b/tests/isodata/altlinux/alt.sisyphus/regular-icewm-20181017-x86_64.iso.txt -deleted file mode 100644 -index 3e6cb03..0000000 ---- a/tests/isodata/altlinux/alt.sisyphus/regular-icewm-20181017-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT regular-icewm/x86_64 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.5.0 2018.09.15.133001, LIBISOBURN-1.5.0, LIBISOFS-1.5.0, LIBBURN-1.5.0 --Application id: REGULAR-ICEWM --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 435200 --El Torito VD version 1 found, boot catalog is in sector 160 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 6E81 28289 -diff --git a/tests/isodata/altlinux/alt.sisyphus/regular-jeos-20181017-i586.iso.txt b/tests/isodata/altlinux/alt.sisyphus/regular-jeos-20181017-i586.iso.txt -deleted file mode 100644 -index b2121ae..0000000 ---- a/tests/isodata/altlinux/alt.sisyphus/regular-jeos-20181017-i586.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT regular-jeos/i586 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.5.0 2018.09.15.133001, LIBISOBURN-1.5.0, LIBISOFS-1.5.0, LIBBURN-1.5.0 --Application id: REGULAR-JEOS --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 172544 --El Torito VD version 1 found, boot catalog is in sector 158 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 9F 159 -diff --git a/tests/isodata/altlinux/alt.sisyphus/regular-jeos-20181017-x86_64.iso.txt b/tests/isodata/altlinux/alt.sisyphus/regular-jeos-20181017-x86_64.iso.txt -deleted file mode 100644 -index 343b747..0000000 ---- a/tests/isodata/altlinux/alt.sisyphus/regular-jeos-20181017-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT regular-jeos/x86_64 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.5.0 2018.09.15.133001, LIBISOBURN-1.5.0, LIBISOFS-1.5.0, LIBBURN-1.5.0 --Application id: REGULAR-JEOS --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 185856 --El Torito VD version 1 found, boot catalog is in sector 158 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 9F 159 -diff --git a/tests/isodata/altlinux/alt.sisyphus/regular-kde5-20181017-i586.iso.txt b/tests/isodata/altlinux/alt.sisyphus/regular-kde5-20181017-i586.iso.txt -deleted file mode 100644 -index 500d5f6..0000000 ---- a/tests/isodata/altlinux/alt.sisyphus/regular-kde5-20181017-i586.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT regular-kde5/i586 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.5.0 2018.09.15.133001, LIBISOBURN-1.5.0, LIBISOFS-1.5.0, LIBBURN-1.5.0 --Application id: REGULAR-KDE5 --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 907536 --El Torito VD version 1 found, boot catalog is in sector 92 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 5D 93 -diff --git a/tests/isodata/altlinux/alt.sisyphus/regular-kde5-20181017-x86_64.iso.txt b/tests/isodata/altlinux/alt.sisyphus/regular-kde5-20181017-x86_64.iso.txt -deleted file mode 100644 -index 9fbf31a..0000000 ---- a/tests/isodata/altlinux/alt.sisyphus/regular-kde5-20181017-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT regular-kde5/x86_64 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.5.0 2018.09.15.133001, LIBISOBURN-1.5.0, LIBISOFS-1.5.0, LIBBURN-1.5.0 --Application id: REGULAR-KDE5 --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 951912 --El Torito VD version 1 found, boot catalog is in sector 160 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 82B1 33457 -diff --git a/tests/isodata/altlinux/alt.sisyphus/regular-lxde-20181017-i586.iso.txt b/tests/isodata/altlinux/alt.sisyphus/regular-lxde-20181017-i586.iso.txt -deleted file mode 100644 -index 893333a..0000000 ---- a/tests/isodata/altlinux/alt.sisyphus/regular-lxde-20181017-i586.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT regular-lxde/i586 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.5.0 2018.09.15.133001, LIBISOBURN-1.5.0, LIBISOFS-1.5.0, LIBBURN-1.5.0 --Application id: REGULAR-LXDE --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 424960 --El Torito VD version 1 found, boot catalog is in sector 92 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 5D 93 -diff --git a/tests/isodata/altlinux/alt.sisyphus/regular-lxde-20181017-x86_64.iso.txt b/tests/isodata/altlinux/alt.sisyphus/regular-lxde-20181017-x86_64.iso.txt -deleted file mode 100644 -index e257b4b..0000000 ---- a/tests/isodata/altlinux/alt.sisyphus/regular-lxde-20181017-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT regular-lxde/x86_64 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.5.0 2018.09.15.133001, LIBISOBURN-1.5.0, LIBISOFS-1.5.0, LIBBURN-1.5.0 --Application id: REGULAR-LXDE --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 472064 --El Torito VD version 1 found, boot catalog is in sector 160 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 82B1 33457 -diff --git a/tests/isodata/altlinux/alt.sisyphus/regular-lxqt-20181017-i586.iso.txt b/tests/isodata/altlinux/alt.sisyphus/regular-lxqt-20181017-i586.iso.txt -deleted file mode 100644 -index fcc4197..0000000 ---- a/tests/isodata/altlinux/alt.sisyphus/regular-lxqt-20181017-i586.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT regular-lxqt/i586 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.5.0 2018.09.15.133001, LIBISOBURN-1.5.0, LIBISOFS-1.5.0, LIBBURN-1.5.0 --Application id: REGULAR-LXQT --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 443904 --El Torito VD version 1 found, boot catalog is in sector 92 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 5D 93 -diff --git a/tests/isodata/altlinux/alt.sisyphus/regular-lxqt-20181017-x86_64.iso.txt b/tests/isodata/altlinux/alt.sisyphus/regular-lxqt-20181017-x86_64.iso.txt -deleted file mode 100644 -index 9c63fa4..0000000 ---- a/tests/isodata/altlinux/alt.sisyphus/regular-lxqt-20181017-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT regular-lxqt/x86_64 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.5.0 2018.09.15.133001, LIBISOBURN-1.5.0, LIBISOFS-1.5.0, LIBBURN-1.5.0 --Application id: REGULAR-LXQT --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 491520 --El Torito VD version 1 found, boot catalog is in sector 160 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 82B1 33457 -diff --git a/tests/isodata/altlinux/alt.sisyphus/regular-mate-20181017-i586.iso.txt b/tests/isodata/altlinux/alt.sisyphus/regular-mate-20181017-i586.iso.txt -deleted file mode 100644 -index 7683e5d..0000000 ---- a/tests/isodata/altlinux/alt.sisyphus/regular-mate-20181017-i586.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT regular-mate/i586 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.5.0 2018.09.15.133001, LIBISOBURN-1.5.0, LIBISOFS-1.5.0, LIBBURN-1.5.0 --Application id: REGULAR-MATE --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 461824 --El Torito VD version 1 found, boot catalog is in sector 92 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 5D 93 -diff --git a/tests/isodata/altlinux/alt.sisyphus/regular-mate-20181017-x86_64.iso.txt b/tests/isodata/altlinux/alt.sisyphus/regular-mate-20181017-x86_64.iso.txt -deleted file mode 100644 -index b474cd0..0000000 ---- a/tests/isodata/altlinux/alt.sisyphus/regular-mate-20181017-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT regular-mate/x86_64 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.5.0 2018.09.15.133001, LIBISOBURN-1.5.0, LIBISOFS-1.5.0, LIBBURN-1.5.0 --Application id: REGULAR-MATE --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 514560 --El Torito VD version 1 found, boot catalog is in sector 160 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 82B1 33457 -diff --git a/tests/isodata/altlinux/alt.sisyphus/regular-rescue-20181017-i586.iso.txt b/tests/isodata/altlinux/alt.sisyphus/regular-rescue-20181017-i586.iso.txt -deleted file mode 100644 -index 7388e83..0000000 ---- a/tests/isodata/altlinux/alt.sisyphus/regular-rescue-20181017-i586.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT regular-rescue/i586 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.5.0 2018.09.15.133001, LIBISOBURN-1.5.0, LIBISOFS-1.5.0, LIBBURN-1.5.0 --Application id: REGULAR-RESCUE --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 234496 --El Torito VD version 1 found, boot catalog is in sector 66 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 43 67 -diff --git a/tests/isodata/altlinux/alt.sisyphus/regular-rescue-20181017-x86_64.iso.txt b/tests/isodata/altlinux/alt.sisyphus/regular-rescue-20181017-x86_64.iso.txt -deleted file mode 100644 -index e779c04..0000000 ---- a/tests/isodata/altlinux/alt.sisyphus/regular-rescue-20181017-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT regular-rescue/x86_64 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.5.0 2018.09.15.133001, LIBISOBURN-1.5.0, LIBISOFS-1.5.0, LIBBURN-1.5.0 --Application id: REGULAR-RESCUE --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 281088 --El Torito VD version 1 found, boot catalog is in sector 134 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 71C7 29127 -diff --git a/tests/isodata/altlinux/alt.sisyphus/regular-wmaker-20181017-i586.iso.txt b/tests/isodata/altlinux/alt.sisyphus/regular-wmaker-20181017-i586.iso.txt -deleted file mode 100644 -index 5a89b6b..0000000 ---- a/tests/isodata/altlinux/alt.sisyphus/regular-wmaker-20181017-i586.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT regular-wmaker/i586 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.5.0 2018.09.15.133001, LIBISOBURN-1.5.0, LIBISOFS-1.5.0, LIBBURN-1.5.0 --Application id: REGULAR-WMAKER --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 321536 --El Torito VD version 1 found, boot catalog is in sector 92 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 5D 93 -diff --git a/tests/isodata/altlinux/alt.sisyphus/regular-wmaker-20181017-x86_64.iso.txt b/tests/isodata/altlinux/alt.sisyphus/regular-wmaker-20181017-x86_64.iso.txt -deleted file mode 100644 -index 2a93fac..0000000 ---- a/tests/isodata/altlinux/alt.sisyphus/regular-wmaker-20181017-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT regular-wmaker/x86_64 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.5.0 2018.09.15.133001, LIBISOBURN-1.5.0, LIBISOFS-1.5.0, LIBBURN-1.5.0 --Application id: REGULAR-WMAKER --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 365056 --El Torito VD version 1 found, boot catalog is in sector 160 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 6891 26769 -diff --git a/tests/isodata/altlinux/alt.sisyphus/regular-xfce-20181017-i586.iso.txt b/tests/isodata/altlinux/alt.sisyphus/regular-xfce-20181017-i586.iso.txt -deleted file mode 100644 -index 8855cfd..0000000 ---- a/tests/isodata/altlinux/alt.sisyphus/regular-xfce-20181017-i586.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT regular-xfce/i586 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.5.0 2018.09.15.133001, LIBISOBURN-1.5.0, LIBISOFS-1.5.0, LIBBURN-1.5.0 --Application id: REGULAR-XFCE --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 403456 --El Torito VD version 1 found, boot catalog is in sector 92 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 5D 93 -diff --git a/tests/isodata/altlinux/alt.sisyphus/regular-xfce-20181017-x86_64.iso.txt b/tests/isodata/altlinux/alt.sisyphus/regular-xfce-20181017-x86_64.iso.txt -deleted file mode 100644 -index 7f2e5e1..0000000 ---- a/tests/isodata/altlinux/alt.sisyphus/regular-xfce-20181017-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT regular-xfce/x86_64 --Volume set id: ALT --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.5.0 2018.09.15.133001, LIBISOBURN-1.5.0, LIBISOFS-1.5.0, LIBBURN-1.5.0 --Application id: REGULAR-XFCE --Copyright File id: LICENSE_ALL_HTML --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 457216 --El Torito VD version 1 found, boot catalog is in sector 160 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 8B71 35697 -diff --git a/tests/isodata/altlinux/alt8.0/alt-education-8.0-i586.iso.txt b/tests/isodata/altlinux/alt8.0/alt-education-8.0-i586.iso.txt -deleted file mode 100644 -index 02373d0..0000000 ---- a/tests/isodata/altlinux/alt8.0/alt-education-8.0-i586.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT education/i586 --Volume set id: ALT Education 8.0 --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: EDUCATION --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2120580 --El Torito VD version 1 found, boot catalog is in sector 890 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 37B 891 -diff --git a/tests/isodata/altlinux/alt8.0/alt-education-8.0-x86_64.iso.txt b/tests/isodata/altlinux/alt8.0/alt-education-8.0-x86_64.iso.txt -deleted file mode 100644 -index 51cada7..0000000 ---- a/tests/isodata/altlinux/alt8.0/alt-education-8.0-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT education/x86_64 --Volume set id: ALT Education 8.0 --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: EDUCATION --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2186982 --El Torito VD version 1 found, boot catalog is in sector 950 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 3B7 951 -diff --git a/tests/isodata/altlinux/alt8.1/alt-kworkstation-8.1-install-i586.iso.txt b/tests/isodata/altlinux/alt8.1/alt-kworkstation-8.1-install-i586.iso.txt -deleted file mode 100644 -index 52bab5f..0000000 ---- a/tests/isodata/altlinux/alt8.1/alt-kworkstation-8.1-install-i586.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Workstation K --Volume set id: ALT --Publisher id: BASEALT LTD --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: 8.0/I586 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1756120 --El Torito VD version 1 found, boot catalog is in sector 870 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 367 871 -diff --git a/tests/isodata/altlinux/alt8.1/alt-kworkstation-8.1-install-x86_64.iso.txt b/tests/isodata/altlinux/alt8.1/alt-kworkstation-8.1-install-x86_64.iso.txt -deleted file mode 100644 -index 0bc96cd..0000000 ---- a/tests/isodata/altlinux/alt8.1/alt-kworkstation-8.1-install-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Workstation K --Volume set id: ALT --Publisher id: BASEALT LTD --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: 8.0/X86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1836000 --El Torito VD version 1 found, boot catalog is in sector 968 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 3C9 969 -diff --git a/tests/isodata/altlinux/alt8.1/alt-kworkstation-8.1-live-i586.iso.txt b/tests/isodata/altlinux/alt8.1/alt-kworkstation-8.1-live-i586.iso.txt -deleted file mode 100644 -index b46c31b..0000000 ---- a/tests/isodata/altlinux/alt8.1/alt-kworkstation-8.1-live-i586.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Workstation K --Volume set id: ALT --Publisher id: BASEALT LTD --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: 8.0/I586 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1042432 --El Torito VD version 1 found, boot catalog is in sector 140 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 8D 141 -diff --git a/tests/isodata/altlinux/alt8.1/alt-kworkstation-8.1-live-x86_64.iso.txt b/tests/isodata/altlinux/alt8.1/alt-kworkstation-8.1-live-x86_64.iso.txt -deleted file mode 100644 -index d802dbb..0000000 ---- a/tests/isodata/altlinux/alt8.1/alt-kworkstation-8.1-live-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Workstation K --Volume set id: ALT --Publisher id: BASEALT LTD --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: 8.0/X86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1106496 --El Torito VD version 1 found, boot catalog is in sector 184 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff B9 185 -diff --git a/tests/isodata/altlinux/alt8.1/alt-workstation-8.1-i586.iso.txt b/tests/isodata/altlinux/alt8.1/alt-workstation-8.1-i586.iso.txt -deleted file mode 100644 -index 1f15671..0000000 ---- a/tests/isodata/altlinux/alt8.1/alt-workstation-8.1-i586.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT Workstation --Volume set id: ALT --Publisher id: BASEALT LTD --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: 8.1/I586 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1422624 --El Torito VD version 1 found, boot catalog is in sector 668 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 29D 669 -diff --git a/tests/isodata/altlinux/alt8.1/alt-workstation-8.1-x86_64.iso.txt b/tests/isodata/altlinux/alt8.1/alt-workstation-8.1-x86_64.iso.txt -deleted file mode 100644 -index 957cc14..0000000 ---- a/tests/isodata/altlinux/alt8.1/alt-workstation-8.1-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT Workstation --Volume set id: ALT --Publisher id: BASEALT LTD --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: 8.1/X86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1525920 --El Torito VD version 1 found, boot catalog is in sector 770 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 303 771 -diff --git a/tests/isodata/altlinux/alt8.2/alt-kworkstation-8.2-install-i586.iso.txt b/tests/isodata/altlinux/alt8.2/alt-kworkstation-8.2-install-i586.iso.txt -deleted file mode 100644 -index 53ffaa5..0000000 ---- a/tests/isodata/altlinux/alt8.2/alt-kworkstation-8.2-install-i586.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Workstation K --Volume set id: ALT --Publisher id: BASEALT LTD --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: 8.2/I586 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1831424 --El Torito VD version 1 found, boot catalog is in sector 930 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 3A3 931 -diff --git a/tests/isodata/altlinux/alt8.2/alt-kworkstation-8.2-install-x86_64.iso.txt b/tests/isodata/altlinux/alt8.2/alt-kworkstation-8.2-install-x86_64.iso.txt -deleted file mode 100644 -index 0cd1111..0000000 ---- a/tests/isodata/altlinux/alt8.2/alt-kworkstation-8.2-install-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Workstation K --Volume set id: ALT --Publisher id: BASEALT LTD --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: 8.2/X86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1933312 --El Torito VD version 1 found, boot catalog is in sector 1028 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 405 1029 -diff --git a/tests/isodata/altlinux/alt8.2/alt-kworkstation-8.2-live-i586.iso.txt b/tests/isodata/altlinux/alt8.2/alt-kworkstation-8.2-live-i586.iso.txt -deleted file mode 100644 -index 8791b68..0000000 ---- a/tests/isodata/altlinux/alt8.2/alt-kworkstation-8.2-live-i586.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Workstation K --Volume set id: ALT --Publisher id: BASEALT LTD --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: 8.2/I586 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1157584 --El Torito VD version 1 found, boot catalog is in sector 140 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 8D 141 -diff --git a/tests/isodata/altlinux/alt8.2/alt-kworkstation-8.2-live-x86_64.iso.txt b/tests/isodata/altlinux/alt8.2/alt-kworkstation-8.2-live-x86_64.iso.txt -deleted file mode 100644 -index badb35f..0000000 ---- a/tests/isodata/altlinux/alt8.2/alt-kworkstation-8.2-live-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Workstation K --Volume set id: ALT --Publisher id: BASEALT LTD --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: 8.2/X86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1242752 --El Torito VD version 1 found, boot catalog is in sector 184 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff B9 185 -diff --git a/tests/isodata/altlinux/alt8.2/alt-server-8.2-i586.iso.txt b/tests/isodata/altlinux/alt8.2/alt-server-8.2-i586.iso.txt -deleted file mode 100644 -index 9f467bb..0000000 ---- a/tests/isodata/altlinux/alt8.2/alt-server-8.2-i586.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: ISOIMAGE --Volume set id: --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1136464 --El Torito VD version 1 found, boot catalog is in sector 958 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 3BF 959 -diff --git a/tests/isodata/altlinux/alt8.2/alt-server-8.2-x86_64.iso.txt b/tests/isodata/altlinux/alt8.2/alt-server-8.2-x86_64.iso.txt -deleted file mode 100644 -index a96fbdd..0000000 ---- a/tests/isodata/altlinux/alt8.2/alt-server-8.2-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: ISOIMAGE --Volume set id: --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1353232 --El Torito VD version 1 found, boot catalog is in sector 1196 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 4AD 1197 -diff --git a/tests/isodata/altlinux/alt8.2/alt-simply-8.2.0-i586.iso.txt b/tests/isodata/altlinux/alt8.2/alt-simply-8.2.0-i586.iso.txt -deleted file mode 100644 -index 5c5f727..0000000 ---- a/tests/isodata/altlinux/alt8.2/alt-simply-8.2.0-i586.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Simply Linux/i586 --Volume set id: Simply Linux --Publisher id: BASEALT LTD --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: 8.2.0/I586 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2007040 --El Torito VD version 1 found, boot catalog is in sector 578 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 243 579 -diff --git a/tests/isodata/altlinux/alt8.2/alt-simply-8.2.0-live-i586.iso.txt b/tests/isodata/altlinux/alt8.2/alt-simply-8.2.0-live-i586.iso.txt -deleted file mode 100644 -index e86f33f..0000000 ---- a/tests/isodata/altlinux/alt8.2/alt-simply-8.2.0-live-i586.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Simply Linux live/i586 --Volume set id: Simply Linux live --Publisher id: BASEALT LTD --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: 8.2.0/I586 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 615296 --El Torito VD version 1 found, boot catalog is in sector 80 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 51 81 -diff --git a/tests/isodata/altlinux/alt8.2/alt-simply-8.2.0-live-x86_64.iso.txt b/tests/isodata/altlinux/alt8.2/alt-simply-8.2.0-live-x86_64.iso.txt -deleted file mode 100644 -index fe0d858..0000000 ---- a/tests/isodata/altlinux/alt8.2/alt-simply-8.2.0-live-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Simply Linux live/x86_64 --Volume set id: Simply Linux live --Publisher id: BASEALT LTD --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: 8.2.0/X86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 644640 --El Torito VD version 1 found, boot catalog is in sector 124 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 7D 125 -diff --git a/tests/isodata/altlinux/alt8.2/alt-simply-8.2.0-x86_64.iso.txt b/tests/isodata/altlinux/alt8.2/alt-simply-8.2.0-x86_64.iso.txt -deleted file mode 100644 -index d9c931e..0000000 ---- a/tests/isodata/altlinux/alt8.2/alt-simply-8.2.0-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Simply Linux/x86_64 --Volume set id: Simply Linux --Publisher id: BASEALT LTD --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: 8.2.0/X86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2304288 --El Torito VD version 1 found, boot catalog is in sector 670 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 29F 671 -diff --git a/tests/isodata/altlinux/alt8.2/alt-workstation-8.2-i586.iso.txt b/tests/isodata/altlinux/alt8.2/alt-workstation-8.2-i586.iso.txt -deleted file mode 100644 -index c73df27..0000000 ---- a/tests/isodata/altlinux/alt8.2/alt-workstation-8.2-i586.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT Workstation --Volume set id: ALT --Publisher id: BASEALT LTD --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: 8.2/I586 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1568256 --El Torito VD version 1 found, boot catalog is in sector 726 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2D7 727 -diff --git a/tests/isodata/altlinux/alt8.2/alt-workstation-8.2-x86_64.iso.txt b/tests/isodata/altlinux/alt8.2/alt-workstation-8.2-x86_64.iso.txt -deleted file mode 100644 -index 42739ad..0000000 ---- a/tests/isodata/altlinux/alt8.2/alt-workstation-8.2-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: ALT Workstation --Volume set id: ALT --Publisher id: BASEALT LTD --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: 8.2/X86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1692432 --El Torito VD version 1 found, boot catalog is in sector 830 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 33F 831 -diff --git a/tests/isodata/altlinux/altlinux2.4/Master-2.4-install-DVD.iso.txt b/tests/isodata/altlinux/altlinux2.4/Master-2.4-install-DVD.iso.txt -deleted file mode 100644 -index 797af95..0000000 ---- a/tests/isodata/altlinux/altlinux2.4/Master-2.4-install-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CDROM --Volume set id: --Publisher id: ALT Linux --Data preparer id: org@altlinux.com +70952039698 --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: (c) ALT Linux --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2239590 --El Torito VD version 1 found, boot catalog is in sector 1552 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'ALT Linux' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 611 1553 -diff --git a/tests/isodata/altlinux/altlinux2.4/Master-2.4-install-cd.iso.txt b/tests/isodata/altlinux/altlinux2.4/Master-2.4-install-cd.iso.txt -deleted file mode 100644 -index 5c7ada4..0000000 ---- a/tests/isodata/altlinux/altlinux2.4/Master-2.4-install-cd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CDROM --Volume set id: --Publisher id: ALT Linux --Data preparer id: org@altlinux.com +70952039698 --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: (c) ALT Linux --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 357106 --El Torito VD version 1 found, boot catalog is in sector 710 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'ALT Linux' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2C7 711 -diff --git a/tests/isodata/altlinux/altlinux3.0/compact-3.0.4.iso.txt b/tests/isodata/altlinux/altlinux3.0/compact-3.0.4.iso.txt -deleted file mode 100644 -index fbe103f..0000000 ---- a/tests/isodata/altlinux/altlinux3.0/compact-3.0.4.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: ALT Linux --Volume id: Compact --Volume set id: ALT Linux 3.0.4 Installer (caprifoil) --Publisher id: ALT Linux --Data preparer id: rider --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: LICENSE.html --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 356164 --El Torito VD version 1 found, boot catalog is in sector 288 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'ALT Linux' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 121 289 -diff --git a/tests/isodata/altlinux/altlinux3.0/installer-3.0.4.iso.txt b/tests/isodata/altlinux/altlinux3.0/installer-3.0.4.iso.txt -deleted file mode 100644 -index 82dcb2b..0000000 ---- a/tests/isodata/altlinux/altlinux3.0/installer-3.0.4.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: ALT Linux --Volume id: Compact --Volume set id: ALT Linux 3.0.4 Installer-light (caprifoil) --Publisher id: ALT Linux --Data preparer id: rider --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: LICENSE.html --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 124604 --El Torito VD version 1 found, boot catalog is in sector 231 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'ALT Linux' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff E8 232 -diff --git a/tests/isodata/altlinux/altlinux3.0/travelcd-3.0.4.iso.txt b/tests/isodata/altlinux/altlinux3.0/travelcd-3.0.4.iso.txt -deleted file mode 100644 -index e75e872..0000000 ---- a/tests/isodata/altlinux/altlinux3.0/travelcd-3.0.4.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: ALT Linux --Volume id: Compact --Volume set id: ALT Linux 3.0.4 TravelCD (caprifoil) --Publisher id: ALT Linux --Data preparer id: rider --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: LICENSE.html --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 355645 --El Torito VD version 1 found, boot catalog is in sector 149 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'ALT Linux' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 96 150 -diff --git a/tests/isodata/altlinux/altlinux4.0/altlinux-4.0.0-terminal-i586-en-cd.iso.txt b/tests/isodata/altlinux/altlinux4.0/altlinux-4.0.0-terminal-i586-en-cd.iso.txt -deleted file mode 100644 -index 44546dc..0000000 ---- a/tests/isodata/altlinux/altlinux4.0/altlinux-4.0.0-terminal-i586-en-cd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: "" --Volume id: "Terminal" --Volume set id: "" --Publisher id: "ALT Linux Team" --Data preparer id: "" --Application id: "" --Copyright File id: "" --Abstract File id: "" --Bibliographic File id: "" --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 390642 --El Torito VD version 1 found, boot catalog is in sector 561 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '"ALT Linux Team"' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 232 562 -diff --git a/tests/isodata/altlinux/altlinux4.0/altlinux-4.0.0-terminal-i586-ru-dvd.iso.txt b/tests/isodata/altlinux/altlinux4.0/altlinux-4.0.0-terminal-i586-ru-dvd.iso.txt -deleted file mode 100644 -index 890d4c3..0000000 ---- a/tests/isodata/altlinux/altlinux4.0/altlinux-4.0.0-terminal-i586-ru-dvd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: "" --Volume id: "Terminal" --Volume set id: "" --Publisher id: "ALT Linux Team" --Data preparer id: "" --Application id: "" --Copyright File id: "" --Abstract File id: "" --Bibliographic File id: "" --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1865763 --El Torito VD version 1 found, boot catalog is in sector 973 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '"ALT Linux Team"' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 3CE 974 -diff --git a/tests/isodata/altlinux/altlinux4.0/altlinux-4.0.1-server-i586-install-cd.iso.txt b/tests/isodata/altlinux/altlinux4.0/altlinux-4.0.1-server-i586-install-cd.iso.txt -deleted file mode 100644 -index 24e4f42..0000000 ---- a/tests/isodata/altlinux/altlinux4.0/altlinux-4.0.1-server-i586-install-cd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: ALT Linux Team --Volume id: Server --Volume set id: ALT Linux 4.0 Server (Walnut) --Publisher id: ALT Linux --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: LICENSE.html --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 309906 --El Torito VD version 1 found, boot catalog is in sector 224 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'ALT Linux' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff E1 225 -diff --git a/tests/isodata/altlinux/altlinux4.0/altlinux-4.0.1-server-x86_64-install-cd.iso.txt b/tests/isodata/altlinux/altlinux4.0/altlinux-4.0.1-server-x86_64-install-cd.iso.txt -deleted file mode 100644 -index 2d732b1..0000000 ---- a/tests/isodata/altlinux/altlinux4.0/altlinux-4.0.1-server-x86_64-install-cd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: ALT Linux Team --Volume id: Server --Volume set id: ALT Linux 4.0 Server (Walnut) --Publisher id: ALT Linux --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: LICENSE.html --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 319233 --El Torito VD version 1 found, boot catalog is in sector 229 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'ALT Linux' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff E6 230 -diff --git a/tests/isodata/altlinux/altlinux4.0/altlinux-4.0.3-desktop-i586-install_en-dvd5.iso.txt b/tests/isodata/altlinux/altlinux4.0/altlinux-4.0.3-desktop-i586-install_en-dvd5.iso.txt -deleted file mode 100644 -index 59e53f0..0000000 ---- a/tests/isodata/altlinux/altlinux4.0/altlinux-4.0.3-desktop-i586-install_en-dvd5.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: "" --Volume id: "Desktop Personal" --Volume set id: "" --Publisher id: "ALT Linux Team" --Data preparer id: "" --Application id: "" --Copyright File id: "" --Abstract File id: "" --Bibliographic File id: "" --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2236804 --El Torito VD version 1 found, boot catalog is in sector 1011 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '"ALT Linux Team"' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 3F4 1012 -diff --git a/tests/isodata/altlinux/altlinux4.0/altlinux-4.0.3-desktop-i586-install_ru-dvd5.iso.txt b/tests/isodata/altlinux/altlinux4.0/altlinux-4.0.3-desktop-i586-install_ru-dvd5.iso.txt -deleted file mode 100644 -index 59e53f0..0000000 ---- a/tests/isodata/altlinux/altlinux4.0/altlinux-4.0.3-desktop-i586-install_ru-dvd5.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: "" --Volume id: "Desktop Personal" --Volume set id: "" --Publisher id: "ALT Linux Team" --Data preparer id: "" --Application id: "" --Copyright File id: "" --Abstract File id: "" --Bibliographic File id: "" --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2236804 --El Torito VD version 1 found, boot catalog is in sector 1011 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '"ALT Linux Team"' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 3F4 1012 -diff --git a/tests/isodata/altlinux/altlinux4.0/altlinux-4.0.3-desktop-i586-install_uk-dvd5.iso.txt b/tests/isodata/altlinux/altlinux4.0/altlinux-4.0.3-desktop-i586-install_uk-dvd5.iso.txt -deleted file mode 100644 -index 59e53f0..0000000 ---- a/tests/isodata/altlinux/altlinux4.0/altlinux-4.0.3-desktop-i586-install_uk-dvd5.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: "" --Volume id: "Desktop Personal" --Volume set id: "" --Publisher id: "ALT Linux Team" --Data preparer id: "" --Application id: "" --Copyright File id: "" --Abstract File id: "" --Bibliographic File id: "" --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2236804 --El Torito VD version 1 found, boot catalog is in sector 1011 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '"ALT Linux Team"' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 3F4 1012 -diff --git a/tests/isodata/altlinux/altlinux4.0/altlinux-4.0.3-lite-i586-install_en-cd.iso.txt b/tests/isodata/altlinux/altlinux4.0/altlinux-4.0.3-lite-i586-install_en-cd.iso.txt -deleted file mode 100644 -index eec43db..0000000 ---- a/tests/isodata/altlinux/altlinux4.0/altlinux-4.0.3-lite-i586-install_en-cd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: "" --Volume id: "Desktop Personal" --Volume set id: "" --Publisher id: "ALT Linux Team" --Data preparer id: "" --Application id: "" --Copyright File id: "" --Abstract File id: "" --Bibliographic File id: "" --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 353563 --El Torito VD version 1 found, boot catalog is in sector 592 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '"ALT Linux Team"' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 251 593 -diff --git a/tests/isodata/altlinux/altlinux4.0/altlinux-4.0.3-lite-i586-install_ru-cd.iso.txt b/tests/isodata/altlinux/altlinux4.0/altlinux-4.0.3-lite-i586-install_ru-cd.iso.txt -deleted file mode 100644 -index eec43db..0000000 ---- a/tests/isodata/altlinux/altlinux4.0/altlinux-4.0.3-lite-i586-install_ru-cd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: "" --Volume id: "Desktop Personal" --Volume set id: "" --Publisher id: "ALT Linux Team" --Data preparer id: "" --Application id: "" --Copyright File id: "" --Abstract File id: "" --Bibliographic File id: "" --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 353563 --El Torito VD version 1 found, boot catalog is in sector 592 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '"ALT Linux Team"' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 251 593 -diff --git a/tests/isodata/altlinux/altlinux4.0/altlinux-4.0.3-lite-i586-install_uk-cd.iso.txt b/tests/isodata/altlinux/altlinux4.0/altlinux-4.0.3-lite-i586-install_uk-cd.iso.txt -deleted file mode 100644 -index eec43db..0000000 ---- a/tests/isodata/altlinux/altlinux4.0/altlinux-4.0.3-lite-i586-install_uk-cd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: "" --Volume id: "Desktop Personal" --Volume set id: "" --Publisher id: "ALT Linux Team" --Data preparer id: "" --Application id: "" --Copyright File id: "" --Abstract File id: "" --Bibliographic File id: "" --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 353563 --El Torito VD version 1 found, boot catalog is in sector 592 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '"ALT Linux Team"' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 251 593 -diff --git a/tests/isodata/altlinux/altlinux4.1/altlinux-4.1.1-desktop-i586-install-cd.iso.txt b/tests/isodata/altlinux/altlinux4.1/altlinux-4.1.1-desktop-i586-install-cd.iso.txt -deleted file mode 100644 -index defc96d..0000000 ---- a/tests/isodata/altlinux/altlinux4.1/altlinux-4.1.1-desktop-i586-install-cd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: "" --Volume id: "Desktop" --Volume set id: "" --Publisher id: "ALT Linux Team" --Data preparer id: "" --Application id: "" --Copyright File id: "" --Abstract File id: "" --Bibliographic File id: "" --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 355757 --El Torito VD version 1 found, boot catalog is in sector 543 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '"ALT Linux Team"' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 220 544 -diff --git a/tests/isodata/altlinux/altlinux4.1/altlinux-4.1.1-desktop-i586-install-dvd5.iso.txt b/tests/isodata/altlinux/altlinux4.1/altlinux-4.1.1-desktop-i586-install-dvd5.iso.txt -deleted file mode 100644 -index f900f71..0000000 ---- a/tests/isodata/altlinux/altlinux4.1/altlinux-4.1.1-desktop-i586-install-dvd5.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: "" --Volume id: "Desktop" --Volume set id: "" --Publisher id: "ALT Linux Team" --Data preparer id: "" --Application id: "" --Copyright File id: "" --Abstract File id: "" --Bibliographic File id: "" --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2281339 --El Torito VD version 1 found, boot catalog is in sector 971 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '"ALT Linux Team"' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 3CC 972 -diff --git a/tests/isodata/altlinux/altlinux4.1/altlinux-4.1.1-desktop-i586-install_en-dvd5.iso.txt b/tests/isodata/altlinux/altlinux4.1/altlinux-4.1.1-desktop-i586-install_en-dvd5.iso.txt -deleted file mode 100644 -index dcaa59b..0000000 ---- a/tests/isodata/altlinux/altlinux4.1/altlinux-4.1.1-desktop-i586-install_en-dvd5.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: "" --Volume id: "Desktop" --Volume set id: "" --Publisher id: "ALT Linux Team" --Data preparer id: "" --Application id: "" --Copyright File id: "" --Abstract File id: "" --Bibliographic File id: "" --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2281341 --El Torito VD version 1 found, boot catalog is in sector 971 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '"ALT Linux Team"' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 3CC 972 -diff --git a/tests/isodata/altlinux/altlinux4.1/altlinux-4.1.1-desktop-x86_64-install-cd.iso.txt b/tests/isodata/altlinux/altlinux4.1/altlinux-4.1.1-desktop-x86_64-install-cd.iso.txt -deleted file mode 100644 -index 5b6e7e1..0000000 ---- a/tests/isodata/altlinux/altlinux4.1/altlinux-4.1.1-desktop-x86_64-install-cd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: "" --Volume id: "Desktop" --Volume set id: "" --Publisher id: "ALT Linux Team" --Data preparer id: "" --Application id: "" --Copyright File id: "" --Abstract File id: "" --Bibliographic File id: "" --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 368693 --El Torito VD version 1 found, boot catalog is in sector 545 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '"ALT Linux Team"' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 222 546 -diff --git a/tests/isodata/altlinux/altlinux4.1/altlinux-4.1.1-desktop-x86_64-install-dvd5.iso.txt b/tests/isodata/altlinux/altlinux4.1/altlinux-4.1.1-desktop-x86_64-install-dvd5.iso.txt -deleted file mode 100644 -index 1fbf917..0000000 ---- a/tests/isodata/altlinux/altlinux4.1/altlinux-4.1.1-desktop-x86_64-install-dvd5.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: "" --Volume id: "Desktop" --Volume set id: "" --Publisher id: "ALT Linux Team" --Data preparer id: "" --Application id: "" --Copyright File id: "" --Abstract File id: "" --Bibliographic File id: "" --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2208276 --El Torito VD version 1 found, boot catalog is in sector 975 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '"ALT Linux Team"' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 3D0 976 -diff --git a/tests/isodata/altlinux/altlinux5.0/altlinux-5.0.0-ark-desktop-i586-ru-install-dvd5.iso.txt b/tests/isodata/altlinux/altlinux5.0/altlinux-5.0.0-ark-desktop-i586-ru-install-dvd5.iso.txt -deleted file mode 100644 -index ac83d2c..0000000 ---- a/tests/isodata/altlinux/altlinux5.0/altlinux-5.0.0-ark-desktop-i586-ru-install-dvd5.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: ALT Linux 5.0.0 Ark Desktop (no --Volume set id: --Publisher id: ALT Linux Team --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1313927 --El Torito VD version 1 found, boot catalog is in sector 334 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'ALT Linux Team' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 14F 335 -diff --git a/tests/isodata/altlinux/altlinux5.0/altlinux-5.0.0-ark-desktop-x86_64-ru-install-dvd5.iso.txt b/tests/isodata/altlinux/altlinux5.0/altlinux-5.0.0-ark-desktop-x86_64-ru-install-dvd5.iso.txt -deleted file mode 100644 -index fd49905..0000000 ---- a/tests/isodata/altlinux/altlinux5.0/altlinux-5.0.0-ark-desktop-x86_64-ru-install-dvd5.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: ALT Linux 5.0.0 Ark Desktop (no --Volume set id: --Publisher id: ALT Linux Team --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1343699 --El Torito VD version 1 found, boot catalog is in sector 339 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'ALT Linux Team' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 154 340 -diff --git a/tests/isodata/altlinux/altlinux5.0/altlinux-5.0.0-ark-server-i586-ru-install-cd.iso.txt b/tests/isodata/altlinux/altlinux5.0/altlinux-5.0.0-ark-server-i586-ru-install-cd.iso.txt -deleted file mode 100644 -index 4918619..0000000 ---- a/tests/isodata/altlinux/altlinux5.0/altlinux-5.0.0-ark-server-i586-ru-install-cd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: ALT Linux 5.0.0 Ark Server (non --Volume set id: --Publisher id: ALT Linux Team --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 304518 --El Torito VD version 1 found, boot catalog is in sector 244 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'ALT Linux Team' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff F5 245 -diff --git a/tests/isodata/altlinux/altlinux5.0/altlinux-5.0.0-ark-server-x86_64-ru-install-cd.iso.txt b/tests/isodata/altlinux/altlinux5.0/altlinux-5.0.0-ark-server-x86_64-ru-install-cd.iso.txt -deleted file mode 100644 -index beacc18..0000000 ---- a/tests/isodata/altlinux/altlinux5.0/altlinux-5.0.0-ark-server-x86_64-ru-install-cd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: ALT Linux 5.0.0 Ark Server (non --Volume set id: --Publisher id: ALT Linux Team --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 314744 --El Torito VD version 1 found, boot catalog is in sector 248 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'ALT Linux Team' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff F9 249 -diff --git a/tests/isodata/altlinux/altlinux5.0/altlinux-5.0.0-kdesktop-i586-ru-install-dvd5.iso.txt b/tests/isodata/altlinux/altlinux5.0/altlinux-5.0.0-kdesktop-i586-ru-install-dvd5.iso.txt -deleted file mode 100644 -index 26cad36..0000000 ---- a/tests/isodata/altlinux/altlinux5.0/altlinux-5.0.0-kdesktop-i586-ru-install-dvd5.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: ALT Linux 5.0.0 Desktop KDE (Ly --Volume set id: --Publisher id: ALT Linux Team --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1789028 --El Torito VD version 1 found, boot catalog is in sector 396 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'ALT Linux Team' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 18D 397 -diff --git a/tests/isodata/altlinux/altlinux5.0/altlinux-5.0.0-kdesktop-x86_64-ru-install-dvd5.iso.txt b/tests/isodata/altlinux/altlinux5.0/altlinux-5.0.0-kdesktop-x86_64-ru-install-dvd5.iso.txt -deleted file mode 100644 -index 1cf8906..0000000 ---- a/tests/isodata/altlinux/altlinux5.0/altlinux-5.0.0-kdesktop-x86_64-ru-install-dvd5.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: ALT Linux 5.0.0 Desktop KDE (Ly --Volume set id: --Publisher id: ALT Linux Team --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1817909 --El Torito VD version 1 found, boot catalog is in sector 401 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'ALT Linux Team' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 192 402 -diff --git a/tests/isodata/altlinux/altlinux5.0/altlinux-5.0.2-school-junior-i586-ru-install-dvd5.iso.txt b/tests/isodata/altlinux/altlinux5.0/altlinux-5.0.2-school-junior-i586-ru-install-dvd5.iso.txt -deleted file mode 100644 -index 583234c..0000000 ---- a/tests/isodata/altlinux/altlinux5.0/altlinux-5.0.2-school-junior-i586-ru-install-dvd5.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: ALT Linux 5.0.2 School Junior (p --Volume set id: --Publisher id: ALT Linux Team --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1750888 --El Torito VD version 1 found, boot catalog is in sector 382 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'ALT Linux Team' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 17F 383 -diff --git a/tests/isodata/altlinux/altlinux5.0/altlinux-5.0.2-school-lite-i586-ru-install-cd.iso.txt b/tests/isodata/altlinux/altlinux5.0/altlinux-5.0.2-school-lite-i586-ru-install-cd.iso.txt -deleted file mode 100644 -index 3560fc1..0000000 ---- a/tests/isodata/altlinux/altlinux5.0/altlinux-5.0.2-school-lite-i586-ru-install-cd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: ALT Linux 5.0.2 School Lite (p5) --Volume set id: --Publisher id: ALT Linux Team --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 326649 --El Torito VD version 1 found, boot catalog is in sector 236 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'ALT Linux Team' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff ED 237 -diff --git a/tests/isodata/altlinux/altlinux5.0/altlinux-5.0.2-school-master-i586-ru-install-dvd5.iso.txt b/tests/isodata/altlinux/altlinux5.0/altlinux-5.0.2-school-master-i586-ru-install-dvd5.iso.txt -deleted file mode 100644 -index a0dd86a..0000000 ---- a/tests/isodata/altlinux/altlinux5.0/altlinux-5.0.2-school-master-i586-ru-install-dvd5.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: ALT Linux 5.0.2 School Master (p --Volume set id: --Publisher id: ALT Linux Team --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1968401 --El Torito VD version 1 found, boot catalog is in sector 437 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'ALT Linux Team' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1B6 438 -diff --git a/tests/isodata/altlinux/altlinux5.0/altlinux-5.0.2-school-server-i586-ru-install-dvd5.iso.txt b/tests/isodata/altlinux/altlinux5.0/altlinux-5.0.2-school-server-i586-ru-install-dvd5.iso.txt -deleted file mode 100644 -index ab14e66..0000000 ---- a/tests/isodata/altlinux/altlinux5.0/altlinux-5.0.2-school-server-i586-ru-install-dvd5.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: ALT Linux 5.0.2 School Server (p --Volume set id: --Publisher id: ALT Linux Team --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 386138 --El Torito VD version 1 found, boot catalog is in sector 255 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'ALT Linux Team' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 100 256 -diff --git a/tests/isodata/altlinux/altlinux5.0/altlinux-5.0.2-school-server-x86_64-ru-install-dvd5.iso.txt b/tests/isodata/altlinux/altlinux5.0/altlinux-5.0.2-school-server-x86_64-ru-install-dvd5.iso.txt -deleted file mode 100644 -index e213d49..0000000 ---- a/tests/isodata/altlinux/altlinux5.0/altlinux-5.0.2-school-server-x86_64-ru-install-dvd5.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: ALT Linux 5.0.2 School Server (p --Volume set id: --Publisher id: ALT Linux Team --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 395702 --El Torito VD version 1 found, boot catalog is in sector 262 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'ALT Linux Team' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 107 263 -diff --git a/tests/isodata/altlinux/altlinux5.0/altlinux-5.0.2-school-terminal-i586-ru-install-dvd5.iso.txt b/tests/isodata/altlinux/altlinux5.0/altlinux-5.0.2-school-terminal-i586-ru-install-dvd5.iso.txt -deleted file mode 100644 -index 23a6db8..0000000 ---- a/tests/isodata/altlinux/altlinux5.0/altlinux-5.0.2-school-terminal-i586-ru-install-dvd5.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: ALT Linux 5.0.2 School Terminal --Volume set id: --Publisher id: ALT Linux Team --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1715252 --El Torito VD version 1 found, boot catalog is in sector 408 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'ALT Linux Team' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 199 409 -diff --git a/tests/isodata/altlinux/altlinux6.0/altlinux-6.0.0-centaurus-i586-ru-install-dvd5.iso.txt b/tests/isodata/altlinux/altlinux6.0/altlinux-6.0.0-centaurus-i586-ru-install-dvd5.iso.txt -deleted file mode 100644 -index 028d26d..0000000 ---- a/tests/isodata/altlinux/altlinux6.0/altlinux-6.0.0-centaurus-i586-ru-install-dvd5.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: ALT Linux 6.0.0 Centaurus (Chei --Volume set id: --Publisher id: ALT Linux Team --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1857845 --El Torito VD version 1 found, boot catalog is in sector 462 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'ALT Linux Team' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1CF 463 -diff --git a/tests/isodata/altlinux/altlinux6.0/altlinux-6.0.0-centaurus-x86_64-ru-install-dvd5.iso.txt b/tests/isodata/altlinux/altlinux6.0/altlinux-6.0.0-centaurus-x86_64-ru-install-dvd5.iso.txt -deleted file mode 100644 -index 1872164..0000000 ---- a/tests/isodata/altlinux/altlinux6.0/altlinux-6.0.0-centaurus-x86_64-ru-install-dvd5.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: ALT Linux 6.0.0 Centaurus (Chei --Volume set id: --Publisher id: ALT Linux Team --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1925881 --El Torito VD version 1 found, boot catalog is in sector 484 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'ALT Linux Team' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1E5 485 -diff --git a/tests/isodata/altlinux/altlinux6.0/altlinux-6.0.0-kdesktop-i586-ru-install-dvd5.iso.txt b/tests/isodata/altlinux/altlinux6.0/altlinux-6.0.0-kdesktop-i586-ru-install-dvd5.iso.txt -deleted file mode 100644 -index 9cd90c2..0000000 ---- a/tests/isodata/altlinux/altlinux6.0/altlinux-6.0.0-kdesktop-i586-ru-install-dvd5.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: ALT Linux 6.0.0 KDesktop (Centa --Volume set id: --Publisher id: ALT Linux Team --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2155347 --El Torito VD version 1 found, boot catalog is in sector 476 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'ALT Linux Team' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1DD 477 -diff --git a/tests/isodata/altlinux/altlinux6.0/altlinux-6.0.0-kdesktop-x86_64-ru-install-dvd5.iso.txt b/tests/isodata/altlinux/altlinux6.0/altlinux-6.0.0-kdesktop-x86_64-ru-install-dvd5.iso.txt -deleted file mode 100644 -index c1ccd0f..0000000 ---- a/tests/isodata/altlinux/altlinux6.0/altlinux-6.0.0-kdesktop-x86_64-ru-install-dvd5.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: ALT Linux 6.0.0 KDesktop (Centa --Volume set id: --Publisher id: ALT Linux Team --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2216843 --El Torito VD version 1 found, boot catalog is in sector 494 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'ALT Linux Team' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1EF 495 -diff --git a/tests/isodata/altlinux/altlinux6.0/altlinux-6.0.1-simply-i586-ru-install-dvd5.iso.txt b/tests/isodata/altlinux/altlinux6.0/altlinux-6.0.1-simply-i586-ru-install-dvd5.iso.txt -deleted file mode 100644 -index 9c28566..0000000 ---- a/tests/isodata/altlinux/altlinux6.0/altlinux-6.0.1-simply-i586-ru-install-dvd5.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Simply Linux 6.0.1 (Flounder) --Volume set id: --Publisher id: ALT Linux Team --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1764221 --El Torito VD version 1 found, boot catalog is in sector 302 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'ALT Linux Team' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 12F 303 -diff --git a/tests/isodata/altlinux/altlinux6.0/altlinux-6.0.1-simply-x86_64-ru-install-dvd5.iso.txt b/tests/isodata/altlinux/altlinux6.0/altlinux-6.0.1-simply-x86_64-ru-install-dvd5.iso.txt -deleted file mode 100644 -index f75fa11..0000000 ---- a/tests/isodata/altlinux/altlinux6.0/altlinux-6.0.1-simply-x86_64-ru-install-dvd5.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Simply Linux 6.0.1 (Flounder) --Volume set id: --Publisher id: ALT Linux Team --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1824356 --El Torito VD version 1 found, boot catalog is in sector 320 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'ALT Linux Team' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 141 321 -diff --git a/tests/isodata/altlinux/altlinux7.0/altlinux-7.0.2-centaurus-i586-ru-install-dvd5.iso.txt b/tests/isodata/altlinux/altlinux7.0/altlinux-7.0.2-centaurus-i586-ru-install-dvd5.iso.txt -deleted file mode 100644 -index 76ed7a1..0000000 ---- a/tests/isodata/altlinux/altlinux7.0/altlinux-7.0.2-centaurus-i586-ru-install-dvd5.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: ALT Linux 7.0.2 Centaurus (Ph --Volume set id: --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1792296 --El Torito VD version 1 found, boot catalog is in sector 822 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 337 823 -diff --git a/tests/isodata/altlinux/altlinux7.0/altlinux-7.0.5-centaurus-x86_64-ru-install-dvd5.iso.txt b/tests/isodata/altlinux/altlinux7.0/altlinux-7.0.5-centaurus-x86_64-ru-install-dvd5.iso.txt -deleted file mode 100644 -index 6d9b5ee..0000000 ---- a/tests/isodata/altlinux/altlinux7.0/altlinux-7.0.5-centaurus-x86_64-ru-install-dvd5.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: ALT Linux 7.0.5 Centaurus (Ph --Volume set id: --Publisher id: ALT LINUX TEAM --Data preparer id: XORRISO-1.3.4 2013.12.12.103001, LIBISOBURN-1.3.4, LIBISOFS-1.3.4, LIBBURN-1.3.4 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1592760 --El Torito VD version 1 found, boot catalog is in sector 938 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 526B 21099 -diff --git a/tests/isodata/android-x86/android-x86-8.1/android-x86-8.1-rc2.iso.txt b/tests/isodata/android-x86/android-x86-8.1/android-x86-8.1-rc2.iso.txt -deleted file mode 100644 -index 9bba50d..0000000 ---- a/tests/isodata/android-x86/android-x86-8.1/android-x86-8.1-rc2.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Android-x86 LiveCD --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 439390 --El Torito VD version 1 found, boot catalog is in sector 54 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 837 2103 -diff --git a/tests/isodata/android-x86/android-x86-8.1/android-x86_64-8.1-rc2.iso.txt b/tests/isodata/android-x86/android-x86-8.1/android-x86_64-8.1-rc2.iso.txt -deleted file mode 100644 -index 9bba50d..0000000 ---- a/tests/isodata/android-x86/android-x86-8.1/android-x86_64-8.1-rc2.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Android-x86 LiveCD --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 439390 --El Torito VD version 1 found, boot catalog is in sector 54 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 837 2103 -diff --git a/tests/isodata/archlinux/archlinux/archlinux-2019.02.01-x86_64.iso.txt b/tests/isodata/archlinux/archlinux/archlinux-2019.02.01-x86_64.iso.txt -deleted file mode 100644 -index d331556..0000000 ---- a/tests/isodata/archlinux/archlinux/archlinux-2019.02.01-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: ARCH_201902 --Volume set id: --Publisher id: ARCH LINUX --Data preparer id: PREPARED BY MKARCHISO --Application id: ARCH LINUX LIVE/RESCUE CD --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 307200 --El Torito VD version 1 found, boot catalog is in sector 40 --NO Joliet present --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 8029 32809 -diff --git a/tests/isodata/asianux/asianux4.6/asianux-4.6-i386.iso.txt b/tests/isodata/asianux/asianux4.6/asianux-4.6-i386.iso.txt -deleted file mode 100644 -index 772aed8..0000000 ---- a/tests/isodata/asianux/asianux4.6/asianux-4.6-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Asianux Server 4 SP6 i686 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1679171 --El Torito VD version 1 found, boot catalog is in sector 508 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1FD 509 -diff --git a/tests/isodata/asianux/asianux4.6/asianux-4.6-x86_64.iso.txt b/tests/isodata/asianux/asianux4.6/asianux-4.6-x86_64.iso.txt -deleted file mode 100644 -index ccd0f92..0000000 ---- a/tests/isodata/asianux/asianux4.6/asianux-4.6-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Asianux Server 4 SP6 x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2014856 --El Torito VD version 1 found, boot catalog is in sector 658 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 293 659 -diff --git a/tests/isodata/asianux/asianux4.7/asianux-4.7-i386.iso.txt b/tests/isodata/asianux/asianux4.7/asianux-4.7-i386.iso.txt -deleted file mode 100644 -index eea0210..0000000 ---- a/tests/isodata/asianux/asianux4.7/asianux-4.7-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Asianux Server 4 SP7 i686 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1722410 --El Torito VD version 1 found, boot catalog is in sector 509 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1FE 510 -diff --git a/tests/isodata/asianux/asianux4.7/asianux-4.7-x86_64.iso.txt b/tests/isodata/asianux/asianux4.7/asianux-4.7-x86_64.iso.txt -deleted file mode 100644 -index 4dbee7d..0000000 ---- a/tests/isodata/asianux/asianux4.7/asianux-4.7-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Asianux Server 4 SP7 x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2058953 --El Torito VD version 1 found, boot catalog is in sector 659 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 364 868 -diff --git a/tests/isodata/asianux/asianux7.0/asianux-7.0.iso.txt b/tests/isodata/asianux/asianux7.0/asianux-7.0.iso.txt -deleted file mode 100644 -index 731ea95..0000000 ---- a/tests/isodata/asianux/asianux7.0/asianux-7.0.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Asianux Server 7.0 x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2115216 --El Torito VD version 1 found, boot catalog is in sector 718 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff C46 3142 -diff --git a/tests/isodata/asianux/asianux7.1/asianux-7.1.iso.txt b/tests/isodata/asianux/asianux7.1/asianux-7.1.iso.txt -deleted file mode 100644 -index a87f06f..0000000 ---- a/tests/isodata/asianux/asianux7.1/asianux-7.1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Asianux Server 7 SP1 x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2147395 --El Torito VD version 1 found, boot catalog is in sector 745 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2EA 746 -diff --git a/tests/isodata/asianux/asianux7.2/asianux-7.2.iso.txt b/tests/isodata/asianux/asianux7.2/asianux-7.2.iso.txt -deleted file mode 100644 -index a906a6e..0000000 ---- a/tests/isodata/asianux/asianux7.2/asianux-7.2.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Asianux Server 7 SP2 x86_64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.8 2017.09.12.143001, LIBISOBURN-1.4.8, LIBISOFS-1.4.8, LIBBURN-1.4.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2144142 --El Torito VD version 1 found, boot catalog is in sector 435 --NO Joliet present --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff B19 2841 -diff --git a/tests/isodata/centos/centos6.0/CentOS-6.0-i386-bin-DVD.iso.txt b/tests/isodata/centos/centos6.0/CentOS-6.0-i386-bin-DVD.iso.txt -deleted file mode 100644 -index 3109c60..0000000 ---- a/tests/isodata/centos/centos6.0/CentOS-6.0-i386-bin-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS_6.0_Final --Volume set id: --Publisher id: CentOS Project --Data preparer id: CentOS --Application id: CentOS_6.0_Final --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2297586 --El Torito VD version 1 found, boot catalog is in sector 655 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'CentOS Project' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 290 656 -diff --git a/tests/isodata/centos/centos6.0/CentOS-6.0-x86_64-bin-DVD1.iso.txt b/tests/isodata/centos/centos6.0/CentOS-6.0-x86_64-bin-DVD1.iso.txt -deleted file mode 100644 -index 3cd3e6e..0000000 ---- a/tests/isodata/centos/centos6.0/CentOS-6.0-x86_64-bin-DVD1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS_6.0_Final --Volume set id: --Publisher id: CentOS Project --Data preparer id: CentOS --Application id: CentOS_6.0_Final --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2069727 --El Torito VD version 1 found, boot catalog is in sector 545 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'CentOS Project' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 222 546 -diff --git a/tests/isodata/centos/centos6.1/CentOS-6.1-i386-bin-DVD1.iso.txt b/tests/isodata/centos/centos6.1/CentOS-6.1-i386-bin-DVD1.iso.txt -deleted file mode 100644 -index e82512d..0000000 ---- a/tests/isodata/centos/centos6.1/CentOS-6.1-i386-bin-DVD1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS_6.1_Final --Volume set id: --Publisher id: CentOS Project --Data preparer id: CentOS --Application id: CentOS_6.1_Final --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1866306 --El Torito VD version 1 found, boot catalog is in sector 445 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'CentOS Project' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1BE 446 -diff --git a/tests/isodata/centos/centos6.1/CentOS-6.1-x86_64-bin-DVD1.iso.txt b/tests/isodata/centos/centos6.1/CentOS-6.1-x86_64-bin-DVD1.iso.txt -deleted file mode 100644 -index 27b41f1..0000000 ---- a/tests/isodata/centos/centos6.1/CentOS-6.1-x86_64-bin-DVD1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS_6.1_Final --Volume set id: --Publisher id: CentOS Project --Data preparer id: CentOS --Application id: CentOS_6.1_Final --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2145392 --El Torito VD version 1 found, boot catalog is in sector 557 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'CentOS Project' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 22E 558 -diff --git a/tests/isodata/centos/centos6.10/CentOS-6.10-i386-LiveDVD.iso.txt b/tests/isodata/centos/centos6.10/CentOS-6.10-i386-LiveDVD.iso.txt -deleted file mode 100644 -index 7d62e75..0000000 ---- a/tests/isodata/centos/centos6.10/CentOS-6.10-i386-LiveDVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS-6.10-i386-LiveDVD --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 982472 --El Torito VD version 1 found, boot catalog is in sector 40 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 29 41 -diff --git a/tests/isodata/centos/centos6.10/CentOS-6.10-i386-bin-DVD1.iso.txt b/tests/isodata/centos/centos6.10/CentOS-6.10-i386-bin-DVD1.iso.txt -deleted file mode 100644 -index e523e4d..0000000 ---- a/tests/isodata/centos/centos6.10/CentOS-6.10-i386-bin-DVD1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS_6.10_Final --Volume set id: --Publisher id: CentOS Project --Data preparer id: CentOS --Application id: CentOS_6.10_Final --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1889382 --El Torito VD version 1 found, boot catalog is in sector 467 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'CentOS Project' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1D4 468 -diff --git a/tests/isodata/centos/centos6.10/CentOS-6.10-i386-minimal.iso.txt b/tests/isodata/centos/centos6.10/CentOS-6.10-i386-minimal.iso.txt -deleted file mode 100644 -index 0344dc8..0000000 ---- a/tests/isodata/centos/centos6.10/CentOS-6.10-i386-minimal.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS_6.10_Final --Volume set id: --Publisher id: CentOS Project --Data preparer id: CentOS --Application id: CentOS_6.10_Final --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 182018 --El Torito VD version 1 found, boot catalog is in sector 74 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'CentOS Project' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 4B 75 -diff --git a/tests/isodata/centos/centos6.10/CentOS-6.10-i386-netinstall.iso.txt b/tests/isodata/centos/centos6.10/CentOS-6.10-i386-netinstall.iso.txt -deleted file mode 100644 -index d4ebf66..0000000 ---- a/tests/isodata/centos/centos6.10/CentOS-6.10-i386-netinstall.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 92569 --El Torito VD version 1 found, boot catalog is in sector 38 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 4A7D 19069 -diff --git a/tests/isodata/centos/centos6.10/CentOS-6.10-x86_64-LiveDVD.iso.txt b/tests/isodata/centos/centos6.10/CentOS-6.10-x86_64-LiveDVD.iso.txt -deleted file mode 100644 -index d6d2175..0000000 ---- a/tests/isodata/centos/centos6.10/CentOS-6.10-x86_64-LiveDVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS-6.10-x86_64-LiveDVD --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 996568 --El Torito VD version 1 found, boot catalog is in sector 40 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 29 41 -diff --git a/tests/isodata/centos/centos6.10/CentOS-6.10-x86_64-bin-DVD1.iso.txt b/tests/isodata/centos/centos6.10/CentOS-6.10-x86_64-bin-DVD1.iso.txt -deleted file mode 100644 -index 5c501a6..0000000 ---- a/tests/isodata/centos/centos6.10/CentOS-6.10-x86_64-bin-DVD1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS_6.10_Final --Volume set id: --Publisher id: CentOS Project --Data preparer id: CentOS --Application id: CentOS_6.10_Final --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1948966 --El Torito VD version 1 found, boot catalog is in sector 488 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'CentOS Project' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2A3 675 -diff --git a/tests/isodata/centos/centos6.10/CentOS-6.10-x86_64-minimal.iso.txt b/tests/isodata/centos/centos6.10/CentOS-6.10-x86_64-minimal.iso.txt -deleted file mode 100644 -index b986223..0000000 ---- a/tests/isodata/centos/centos6.10/CentOS-6.10-x86_64-minimal.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS_6.10_Final --Volume set id: --Publisher id: CentOS Project --Data preparer id: CentOS --Application id: CentOS_6.10_Final --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 207614 --El Torito VD version 1 found, boot catalog is in sector 81 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'CentOS Project' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 10C 268 -diff --git a/tests/isodata/centos/centos6.10/CentOS-6.10-x86_64-netinstall.iso.txt b/tests/isodata/centos/centos6.10/CentOS-6.10-x86_64-netinstall.iso.txt -deleted file mode 100644 -index 11fbedc..0000000 ---- a/tests/isodata/centos/centos6.10/CentOS-6.10-x86_64-netinstall.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 116801 --El Torito VD version 1 found, boot catalog is in sector 42 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 4E5D 20061 -diff --git a/tests/isodata/centos/centos6.2/CentOS-6.2-i386-bin-DVD1.iso.txt b/tests/isodata/centos/centos6.2/CentOS-6.2-i386-bin-DVD1.iso.txt -deleted file mode 100644 -index 8b6f6f9..0000000 ---- a/tests/isodata/centos/centos6.2/CentOS-6.2-i386-bin-DVD1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS_6.2_Final --Volume set id: --Publisher id: CentOS Project --Data preparer id: CentOS --Application id: CentOS_6.2_Final --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1863585 --El Torito VD version 1 found, boot catalog is in sector 451 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'CentOS Project' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1C4 452 -diff --git a/tests/isodata/centos/centos6.2/CentOS-6.2-x86_64-bin-DVD1.iso.txt b/tests/isodata/centos/centos6.2/CentOS-6.2-x86_64-bin-DVD1.iso.txt -deleted file mode 100644 -index 95896d4..0000000 ---- a/tests/isodata/centos/centos6.2/CentOS-6.2-x86_64-bin-DVD1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS_6.2_Final --Volume set id: --Publisher id: CentOS Project --Data preparer id: CentOS --Application id: CentOS_6.2_Final --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2159731 --El Torito VD version 1 found, boot catalog is in sector 566 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'CentOS Project' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 237 567 -diff --git a/tests/isodata/centos/centos6.3/CentOS-6.3-i386-bin-DVD1.iso.txt b/tests/isodata/centos/centos6.3/CentOS-6.3-i386-bin-DVD1.iso.txt -deleted file mode 100644 -index 387cbfd..0000000 ---- a/tests/isodata/centos/centos6.3/CentOS-6.3-i386-bin-DVD1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS_6.3_Final --Volume set id: --Publisher id: CentOS Project --Data preparer id: CentOS --Application id: CentOS_6.3_Final --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1813088 --El Torito VD version 1 found, boot catalog is in sector 452 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'CentOS Project' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1C5 453 -diff --git a/tests/isodata/centos/centos6.3/CentOS-6.3-x86_64-LiveDVD.iso.txt b/tests/isodata/centos/centos6.3/CentOS-6.3-x86_64-LiveDVD.iso.txt -deleted file mode 100644 -index bfa6623..0000000 ---- a/tests/isodata/centos/centos6.3/CentOS-6.3-x86_64-LiveDVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS-6.3-x86_64-LiveDVD --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 860127 --El Torito VD version 1 found, boot catalog is in sector 40 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 29 41 -diff --git a/tests/isodata/centos/centos6.3/CentOS-6.3-x86_64-bin-DVD1.iso.txt b/tests/isodata/centos/centos6.3/CentOS-6.3-x86_64-bin-DVD1.iso.txt -deleted file mode 100644 -index 3ec8e53..0000000 ---- a/tests/isodata/centos/centos6.3/CentOS-6.3-x86_64-bin-DVD1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS_6.3_Final --Volume set id: --Publisher id: CentOS Project --Data preparer id: CentOS --Application id: CentOS_6.3_Final --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2094427 --El Torito VD version 1 found, boot catalog is in sector 568 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'CentOS Project' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 239 569 -diff --git a/tests/isodata/centos/centos6.4/CentOS-6.4-i386-bin-DVD1.iso.txt b/tests/isodata/centos/centos6.4/CentOS-6.4-i386-bin-DVD1.iso.txt -deleted file mode 100644 -index 111a54e..0000000 ---- a/tests/isodata/centos/centos6.4/CentOS-6.4-i386-bin-DVD1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS_6.4_Final --Volume set id: --Publisher id: CentOS Project --Data preparer id: CentOS --Application id: CentOS_6.4_Final --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1840896 --El Torito VD version 1 found, boot catalog is in sector 460 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'CentOS Project' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1CD 461 -diff --git a/tests/isodata/centos/centos6.4/CentOS-6.4-x86_64-bin-DVD1.iso.txt b/tests/isodata/centos/centos6.4/CentOS-6.4-x86_64-bin-DVD1.iso.txt -deleted file mode 100644 -index 5231840..0000000 ---- a/tests/isodata/centos/centos6.4/CentOS-6.4-x86_64-bin-DVD1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS_6.4_Final --Volume set id: --Publisher id: CentOS Project --Data preparer id: CentOS --Application id: CentOS_6.4_Final --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2125673 --El Torito VD version 1 found, boot catalog is in sector 580 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'CentOS Project' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 245 581 -diff --git a/tests/isodata/centos/centos6.5/CentOS-6.5-i386-bin-DVD1.iso.txt b/tests/isodata/centos/centos6.5/CentOS-6.5-i386-bin-DVD1.iso.txt -deleted file mode 100644 -index 5e5af3f..0000000 ---- a/tests/isodata/centos/centos6.5/CentOS-6.5-i386-bin-DVD1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS_6.5_Final --Volume set id: --Publisher id: CentOS Project --Data preparer id: CentOS --Application id: CentOS_6.5_Final --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1878558 --El Torito VD version 1 found, boot catalog is in sector 461 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'CentOS Project' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1CE 462 -diff --git a/tests/isodata/centos/centos6.5/CentOS-6.5-x86_64-bin-DVD1.iso.txt b/tests/isodata/centos/centos6.5/CentOS-6.5-x86_64-bin-DVD1.iso.txt -deleted file mode 100644 -index 16f8dc7..0000000 ---- a/tests/isodata/centos/centos6.5/CentOS-6.5-x86_64-bin-DVD1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS_6.5_Final --Volume set id: --Publisher id: CentOS Project --Data preparer id: CentOS --Application id: CentOS_6.5_Final --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2181544 --El Torito VD version 1 found, boot catalog is in sector 584 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'CentOS Project' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 249 585 -diff --git a/tests/isodata/centos/centos6.6/CentOS-6.6-i386-bin-DVD1.iso b/tests/isodata/centos/centos6.6/CentOS-6.6-i386-bin-DVD1.iso -deleted file mode 100644 -index 2df716f..0000000 ---- a/tests/isodata/centos/centos6.6/CentOS-6.6-i386-bin-DVD1.iso -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS_6.6_Final --Volume set id: --Publisher id: CentOS Project --Data preparer id: CentOS --Application id: CentOS_6.6_Final --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1967309 --El Torito VD version 1 found, boot catalog is in sector 480 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'CentOS Project' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1E1 481 -diff --git a/tests/isodata/centos/centos6.6/CentOS-6.6-i386-minimal.iso b/tests/isodata/centos/centos6.6/CentOS-6.6-i386-minimal.iso -deleted file mode 100644 -index 6529602..0000000 ---- a/tests/isodata/centos/centos6.6/CentOS-6.6-i386-minimal.iso -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS_6.6_Final --Volume set id: --Publisher id: CentOS Project --Data preparer id: CentOS --Application id: CentOS_6.6_Final --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 173462 --El Torito VD version 1 found, boot catalog is in sector 74 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'CentOS Project' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 4B 75 -diff --git a/tests/isodata/centos/centos6.6/CentOS-6.6-i386-netinstall.iso b/tests/isodata/centos/centos6.6/CentOS-6.6-i386-netinstall.iso -deleted file mode 100644 -index 2558c47..0000000 ---- a/tests/isodata/centos/centos6.6/CentOS-6.6-i386-netinstall.iso -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 92685 --El Torito VD version 1 found, boot catalog is in sector 38 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 3F5E 16222 -diff --git a/tests/isodata/centos/centos6.6/CentOS-6.6-x86_64-bin-DVD1.iso b/tests/isodata/centos/centos6.6/CentOS-6.6-x86_64-bin-DVD1.iso -deleted file mode 100644 -index dc68e3b..0000000 ---- a/tests/isodata/centos/centos6.6/CentOS-6.6-x86_64-bin-DVD1.iso -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS_6.6_Final --Volume set id: --Publisher id: CentOS Project --Data preparer id: CentOS --Application id: CentOS_6.6_Final --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2261591 --El Torito VD version 1 found, boot catalog is in sector 610 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'CentOS Project' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 263 611 -diff --git a/tests/isodata/centos/centos6.6/CentOS-6.6-x86_64-minimal.iso b/tests/isodata/centos/centos6.6/CentOS-6.6-x86_64-minimal.iso -deleted file mode 100644 -index 5f82460..0000000 ---- a/tests/isodata/centos/centos6.6/CentOS-6.6-x86_64-minimal.iso -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS_6.6_Final --Volume set id: --Publisher id: CentOS Project --Data preparer id: CentOS --Application id: CentOS_6.6_Final --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 195748 --El Torito VD version 1 found, boot catalog is in sector 81 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'CentOS Project' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 52 82 -diff --git a/tests/isodata/centos/centos6.6/CentOS-6.6-x86_64-netinstall.iso b/tests/isodata/centos/centos6.6/CentOS-6.6-x86_64-netinstall.iso -deleted file mode 100644 -index 5621cdc..0000000 ---- a/tests/isodata/centos/centos6.6/CentOS-6.6-x86_64-netinstall.iso -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 113630 --El Torito VD version 1 found, boot catalog is in sector 38 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 4291 17041 -diff --git a/tests/isodata/centos/centos6.7/CentOS-6.7-i386-LiveCD.iso b/tests/isodata/centos/centos6.7/CentOS-6.7-i386-LiveCD.iso -deleted file mode 100644 -index b2c616f..0000000 ---- a/tests/isodata/centos/centos6.7/CentOS-6.7-i386-LiveCD.iso -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS-6.7-i386-LiveCD --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 354205 --El Torito VD version 1 found, boot catalog is in sector 40 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 29 41 -diff --git a/tests/isodata/centos/centos6.7/CentOS-6.7-i386-LiveDVD.iso b/tests/isodata/centos/centos6.7/CentOS-6.7-i386-LiveDVD.iso -deleted file mode 100644 -index 22611dd..0000000 ---- a/tests/isodata/centos/centos6.7/CentOS-6.7-i386-LiveDVD.iso -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS-6.7-i386-LiveDVD --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 958728 --El Torito VD version 1 found, boot catalog is in sector 40 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 29 41 -diff --git a/tests/isodata/centos/centos6.7/CentOS-6.7-i386-bin-DVD1.iso b/tests/isodata/centos/centos6.7/CentOS-6.7-i386-bin-DVD1.iso -deleted file mode 100644 -index 3c6d49e..0000000 ---- a/tests/isodata/centos/centos6.7/CentOS-6.7-i386-bin-DVD1.iso -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS_6.7_Final --Volume set id: --Publisher id: CentOS Project --Data preparer id: CentOS --Application id: CentOS_6.7_Final --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1848792 --El Torito VD version 1 found, boot catalog is in sector 463 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'CentOS Project' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1D0 464 -diff --git a/tests/isodata/centos/centos6.7/CentOS-6.7-i386-minimal.iso b/tests/isodata/centos/centos6.7/CentOS-6.7-i386-minimal.iso -deleted file mode 100644 -index e423c20..0000000 ---- a/tests/isodata/centos/centos6.7/CentOS-6.7-i386-minimal.iso -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS_6.7_Final --Volume set id: --Publisher id: CentOS Project --Data preparer id: CentOS --Application id: CentOS_6.7_Final --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 179051 --El Torito VD version 1 found, boot catalog is in sector 74 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'CentOS Project' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 4B 75 -diff --git a/tests/isodata/centos/centos6.7/CentOS-6.7-i386-netinstall.iso b/tests/isodata/centos/centos6.7/CentOS-6.7-i386-netinstall.iso -deleted file mode 100644 -index b71d44f..0000000 ---- a/tests/isodata/centos/centos6.7/CentOS-6.7-i386-netinstall.iso -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 95585 --El Torito VD version 1 found, boot catalog is in sector 38 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 423F 16959 -diff --git a/tests/isodata/centos/centos6.7/CentOS-6.7-x86_64-LiveCD.iso b/tests/isodata/centos/centos6.7/CentOS-6.7-x86_64-LiveCD.iso -deleted file mode 100644 -index 2e587b8..0000000 ---- a/tests/isodata/centos/centos6.7/CentOS-6.7-x86_64-LiveCD.iso -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS-6.7-x86_64-LiveCD --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 356675 --El Torito VD version 1 found, boot catalog is in sector 40 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 29 41 -diff --git a/tests/isodata/centos/centos6.7/CentOS-6.7-x86_64-LiveDVD.iso b/tests/isodata/centos/centos6.7/CentOS-6.7-x86_64-LiveDVD.iso -deleted file mode 100644 -index 756479b..0000000 ---- a/tests/isodata/centos/centos6.7/CentOS-6.7-x86_64-LiveDVD.iso -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS-6.7-x86_64-LiveDVD --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 971826 --El Torito VD version 1 found, boot catalog is in sector 40 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 29 41 -diff --git a/tests/isodata/centos/centos6.7/CentOS-6.7-x86_64-bin-DVD1.iso b/tests/isodata/centos/centos6.7/CentOS-6.7-x86_64-bin-DVD1.iso -deleted file mode 100644 -index 6d23430..0000000 ---- a/tests/isodata/centos/centos6.7/CentOS-6.7-x86_64-bin-DVD1.iso -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS_6.7_Final --Volume set id: --Publisher id: CentOS Project --Data preparer id: CentOS --Application id: CentOS_6.7_Final --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1901716 --El Torito VD version 1 found, boot catalog is in sector 482 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'CentOS Project' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1E3 483 -diff --git a/tests/isodata/centos/centos6.7/CentOS-6.7-x86_64-minimal.iso b/tests/isodata/centos/centos6.7/CentOS-6.7-x86_64-minimal.iso -deleted file mode 100644 -index 8889983..0000000 ---- a/tests/isodata/centos/centos6.7/CentOS-6.7-x86_64-minimal.iso -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS_6.7_Final --Volume set id: --Publisher id: CentOS Project --Data preparer id: CentOS --Application id: CentOS_6.7_Final --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 202091 --El Torito VD version 1 found, boot catalog is in sector 81 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'CentOS Project' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 52 82 -diff --git a/tests/isodata/centos/centos6.7/CentOS-6.7-x86_64-netinstall.iso b/tests/isodata/centos/centos6.7/CentOS-6.7-x86_64-netinstall.iso -deleted file mode 100644 -index e1f61bb..0000000 ---- a/tests/isodata/centos/centos6.7/CentOS-6.7-x86_64-netinstall.iso -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 117264 --El Torito VD version 1 found, boot catalog is in sector 38 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 4582 17794 -diff --git a/tests/isodata/centos/centos6.8/CentOS-6.8-i386-LiveDVD.iso.txt b/tests/isodata/centos/centos6.8/CentOS-6.8-i386-LiveDVD.iso.txt -deleted file mode 100644 -index 0b1a9ec..0000000 ---- a/tests/isodata/centos/centos6.8/CentOS-6.8-i386-LiveDVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS-6.8-i386-LiveDVD --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 971913 --El Torito VD version 1 found, boot catalog is in sector 40 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 29 41 -diff --git a/tests/isodata/centos/centos6.8/CentOS-6.8-i386-bin-DVD1.iso.txt b/tests/isodata/centos/centos6.8/CentOS-6.8-i386-bin-DVD1.iso.txt -deleted file mode 100644 -index 348cce1..0000000 ---- a/tests/isodata/centos/centos6.8/CentOS-6.8-i386-bin-DVD1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS_6.8_Final --Volume set id: --Publisher id: CentOS Project --Data preparer id: CentOS --Application id: CentOS_6.8_Final --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1877285 --El Torito VD version 1 found, boot catalog is in sector 463 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'CentOS Project' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1D0 464 -diff --git a/tests/isodata/centos/centos6.8/CentOS-6.8-i386-minimal.iso.txt b/tests/isodata/centos/centos6.8/CentOS-6.8-i386-minimal.iso.txt -deleted file mode 100644 -index 0537f29..0000000 ---- a/tests/isodata/centos/centos6.8/CentOS-6.8-i386-minimal.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS_6.8_Final --Volume set id: --Publisher id: CentOS Project --Data preparer id: CentOS --Application id: CentOS_6.8_Final --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 181145 --El Torito VD version 1 found, boot catalog is in sector 74 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'CentOS Project' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 4B 75 -diff --git a/tests/isodata/centos/centos6.8/CentOS-6.8-i386-netinstall.iso.txt b/tests/isodata/centos/centos6.8/CentOS-6.8-i386-netinstall.iso.txt -deleted file mode 100644 -index 7b8f240..0000000 ---- a/tests/isodata/centos/centos6.8/CentOS-6.8-i386-netinstall.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 111162 --El Torito VD version 1 found, boot catalog is in sector 38 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 49F4 18932 -diff --git a/tests/isodata/centos/centos6.8/CentOS-6.8-x86_64-LiveDVD.iso.txt b/tests/isodata/centos/centos6.8/CentOS-6.8-x86_64-LiveDVD.iso.txt -deleted file mode 100644 -index 9a052b5..0000000 ---- a/tests/isodata/centos/centos6.8/CentOS-6.8-x86_64-LiveDVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS-6.8-x86_64-LiveDVD --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 982298 --El Torito VD version 1 found, boot catalog is in sector 40 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 29 41 -diff --git a/tests/isodata/centos/centos6.8/CentOS-6.8-x86_64-bin-DVD1.iso.txt b/tests/isodata/centos/centos6.8/CentOS-6.8-x86_64-bin-DVD1.iso.txt -deleted file mode 100644 -index 6e957ee..0000000 ---- a/tests/isodata/centos/centos6.8/CentOS-6.8-x86_64-bin-DVD1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS_6.8_Final --Volume set id: --Publisher id: CentOS Project --Data preparer id: CentOS --Application id: CentOS_6.8_Final --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1912242 --El Torito VD version 1 found, boot catalog is in sector 482 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'CentOS Project' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 29D 669 -diff --git a/tests/isodata/centos/centos6.8/CentOS-6.8-x86_64-minimal.iso.txt b/tests/isodata/centos/centos6.8/CentOS-6.8-x86_64-minimal.iso.txt -deleted file mode 100644 -index 7855cd2..0000000 ---- a/tests/isodata/centos/centos6.8/CentOS-6.8-x86_64-minimal.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS_6.8_Final --Volume set id: --Publisher id: CentOS Project --Data preparer id: CentOS --Application id: CentOS_6.8_Final --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 228451 --El Torito VD version 1 found, boot catalog is in sector 81 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'CentOS Project' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 10C 268 -diff --git a/tests/isodata/centos/centos6.8/CentOS-6.8-x86_64-netinstall.iso.txt b/tests/isodata/centos/centos6.8/CentOS-6.8-x86_64-netinstall.iso.txt -deleted file mode 100644 -index 396dee2..0000000 ---- a/tests/isodata/centos/centos6.8/CentOS-6.8-x86_64-netinstall.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 116318 --El Torito VD version 1 found, boot catalog is in sector 42 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 4DC9 19913 -diff --git a/tests/isodata/centos/centos6.9/CentOS-6.9-i386-LiveDVD.iso.txt b/tests/isodata/centos/centos6.9/CentOS-6.9-i386-LiveDVD.iso.txt -deleted file mode 100644 -index 01abde0..0000000 ---- a/tests/isodata/centos/centos6.9/CentOS-6.9-i386-LiveDVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS-6.9-i386-LiveDVD --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 977116 --El Torito VD version 1 found, boot catalog is in sector 40 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 29 41 -diff --git a/tests/isodata/centos/centos6.9/CentOS-6.9-i386-bin-DVD1.iso.txt b/tests/isodata/centos/centos6.9/CentOS-6.9-i386-bin-DVD1.iso.txt -deleted file mode 100644 -index ce72a45..0000000 ---- a/tests/isodata/centos/centos6.9/CentOS-6.9-i386-bin-DVD1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS_6.9_Final --Volume set id: --Publisher id: CentOS Project --Data preparer id: CentOS --Application id: CentOS_6.9_Final --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1880123 --El Torito VD version 1 found, boot catalog is in sector 466 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'CentOS Project' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1D3 467 -diff --git a/tests/isodata/centos/centos6.9/CentOS-6.9-i386-minimal.iso.txt b/tests/isodata/centos/centos6.9/CentOS-6.9-i386-minimal.iso.txt -deleted file mode 100644 -index 8fc7e73..0000000 ---- a/tests/isodata/centos/centos6.9/CentOS-6.9-i386-minimal.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS_6.9_Final --Volume set id: --Publisher id: CentOS Project --Data preparer id: CentOS --Application id: CentOS_6.9_Final --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 183149 --El Torito VD version 1 found, boot catalog is in sector 74 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'CentOS Project' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 4B 75 -diff --git a/tests/isodata/centos/centos6.9/CentOS-6.9-i386-netinstall.iso.txt b/tests/isodata/centos/centos6.9/CentOS-6.9-i386-netinstall.iso.txt -deleted file mode 100644 -index 8c97ab2..0000000 ---- a/tests/isodata/centos/centos6.9/CentOS-6.9-i386-netinstall.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 93242 --El Torito VD version 1 found, boot catalog is in sector 38 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 4BBF 19391 -diff --git a/tests/isodata/centos/centos6.9/CentOS-6.9-x86_64-LiveDVD.iso.txt b/tests/isodata/centos/centos6.9/CentOS-6.9-x86_64-LiveDVD.iso.txt -deleted file mode 100644 -index 1157960..0000000 ---- a/tests/isodata/centos/centos6.9/CentOS-6.9-x86_64-LiveDVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS-6.9-x86_64-LiveDVD --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 987927 --El Torito VD version 1 found, boot catalog is in sector 40 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 29 41 -diff --git a/tests/isodata/centos/centos6.9/CentOS-6.9-x86_64-bin-DVD1.iso.txt b/tests/isodata/centos/centos6.9/CentOS-6.9-x86_64-bin-DVD1.iso.txt -deleted file mode 100644 -index 3f72ebb..0000000 ---- a/tests/isodata/centos/centos6.9/CentOS-6.9-x86_64-bin-DVD1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS_6.9_Final --Volume set id: --Publisher id: CentOS Project --Data preparer id: CentOS --Application id: CentOS_6.9_Final --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1939435 --El Torito VD version 1 found, boot catalog is in sector 486 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'CentOS Project' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2A1 673 -diff --git a/tests/isodata/centos/centos6.9/CentOS-6.9-x86_64-minimal.iso.txt b/tests/isodata/centos/centos6.9/CentOS-6.9-x86_64-minimal.iso.txt -deleted file mode 100644 -index 685dc2a..0000000 ---- a/tests/isodata/centos/centos6.9/CentOS-6.9-x86_64-minimal.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS_6.9_Final --Volume set id: --Publisher id: CentOS Project --Data preparer id: CentOS --Application id: CentOS_6.9_Final --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 208550 --El Torito VD version 1 found, boot catalog is in sector 81 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'CentOS Project' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 10C 268 -diff --git a/tests/isodata/centos/centos6.9/CentOS-6.9-x86_64-netinstall.iso.txt b/tests/isodata/centos/centos6.9/CentOS-6.9-x86_64-netinstall.iso.txt -deleted file mode 100644 -index ccb070b..0000000 ---- a/tests/isodata/centos/centos6.9/CentOS-6.9-x86_64-netinstall.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 117326 --El Torito VD version 1 found, boot catalog is in sector 42 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 4F80 20352 -diff --git a/tests/isodata/centos/centos7.0/CentOS-7-x86_64-DVD.iso.txt b/tests/isodata/centos/centos7.0/CentOS-7-x86_64-DVD.iso.txt -deleted file mode 100644 -index 566ca33..0000000 ---- a/tests/isodata/centos/centos7.0/CentOS-7-x86_64-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS 7 x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2153318 --El Torito VD version 1 found, boot catalog is in sector 593 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 13E0 5088 -diff --git a/tests/isodata/centos/centos7.0/CentOS-7-x86_64-Everything.iso.txt b/tests/isodata/centos/centos7.0/CentOS-7-x86_64-Everything.iso.txt -deleted file mode 100644 -index 60b596d..0000000 ---- a/tests/isodata/centos/centos7.0/CentOS-7-x86_64-Everything.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS 7 x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 4559310 --El Torito VD version 1 found, boot catalog is in sector 1409 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1710 5904 -diff --git a/tests/isodata/centos/centos7.0/CentOS-7-x86_64-LiveGNOME-1804.iso.txt b/tests/isodata/centos/centos7.0/CentOS-7-x86_64-LiveGNOME-1804.iso.txt -deleted file mode 100644 -index f6174df..0000000 ---- a/tests/isodata/centos/centos7.0/CentOS-7-x86_64-LiveGNOME-1804.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS-7-x86_64-LiveGNOME-1804 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 677425 --El Torito VD version 1 found, boot catalog is in sector 36 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 25 37 -diff --git a/tests/isodata/centos/centos7.0/CentOS-7-x86_64-LiveGNOME.iso.txt b/tests/isodata/centos/centos7.0/CentOS-7-x86_64-LiveGNOME.iso.txt -deleted file mode 100644 -index cbf9e5b..0000000 ---- a/tests/isodata/centos/centos7.0/CentOS-7-x86_64-LiveGNOME.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS-7-x86_64-LiveGNOME-1805 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 677584 --El Torito VD version 1 found, boot catalog is in sector 36 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 25 37 -diff --git a/tests/isodata/centos/centos7.0/CentOS-7-x86_64-LiveKDE-1804.iso.txt b/tests/isodata/centos/centos7.0/CentOS-7-x86_64-LiveKDE-1804.iso.txt -deleted file mode 100644 -index a395a92..0000000 ---- a/tests/isodata/centos/centos7.0/CentOS-7-x86_64-LiveKDE-1804.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS-7-x86_64-LiveKDE-1804 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 923126 --El Torito VD version 1 found, boot catalog is in sector 36 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 25 37 -diff --git a/tests/isodata/centos/centos7.0/CentOS-7-x86_64-LiveKDE.iso.txt b/tests/isodata/centos/centos7.0/CentOS-7-x86_64-LiveKDE.iso.txt -deleted file mode 100644 -index cf94c47..0000000 ---- a/tests/isodata/centos/centos7.0/CentOS-7-x86_64-LiveKDE.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS-7-x86_64-LiveKDE-1805 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 919869 --El Torito VD version 1 found, boot catalog is in sector 36 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 25 37 -diff --git a/tests/isodata/centos/centos7.0/CentOS-7-x86_64-Minimal.iso.txt b/tests/isodata/centos/centos7.0/CentOS-7-x86_64-Minimal.iso.txt -deleted file mode 100644 -index d0d599f..0000000 ---- a/tests/isodata/centos/centos7.0/CentOS-7-x86_64-Minimal.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS 7 x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 434211 --El Torito VD version 1 found, boot catalog is in sector 109 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 11FC 4604 -diff --git a/tests/isodata/centos/centos7.0/CentOS-7-x86_64-NetInstall-1611.iso.txt b/tests/isodata/centos/centos7.0/CentOS-7-x86_64-NetInstall-1611.iso.txt -deleted file mode 100644 -index 4db7adb..0000000 ---- a/tests/isodata/centos/centos7.0/CentOS-7-x86_64-NetInstall-1611.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS 7 x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 192831 --El Torito VD version 1 found, boot catalog is in sector 46 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 52EC 21228 -diff --git a/tests/isodata/centos/centos7.0/CentOS-7.0-1406-x86_64-DVD.iso.txt b/tests/isodata/centos/centos7.0/CentOS-7.0-1406-x86_64-DVD.iso.txt -deleted file mode 100644 -index fab7e74..0000000 ---- a/tests/isodata/centos/centos7.0/CentOS-7.0-1406-x86_64-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS 7 x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2025430 --El Torito VD version 1 found, boot catalog is in sector 530 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff E5C 3676 -diff --git a/tests/isodata/centos/centos7.0/CentOS-7.0-1406-x86_64-Everything.iso.txt b/tests/isodata/centos/centos7.0/CentOS-7.0-1406-x86_64-Everything.iso.txt -deleted file mode 100644 -index 7b2d0f0..0000000 ---- a/tests/isodata/centos/centos7.0/CentOS-7.0-1406-x86_64-Everything.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: CentOS 7 x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 3448097 --El Torito VD version 1 found, boot catalog is in sector 1202 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 10FC 4348 -diff --git a/tests/isodata/debian/debian6/debian-6.0.10-i386-DVD-1.iso.txt b/tests/isodata/debian/debian6/debian-6.0.10-i386-DVD-1.iso.txt -deleted file mode 100644 -index dabb2b8..0000000 ---- a/tests/isodata/debian/debian6/debian-6.0.10-i386-DVD-1.iso.txt -+++ /dev/null -@@ -1,17 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Debian 6.0.10 i386 1 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.3.6 2014.04.08.180000, LIBISOBURN-1.3.6, LIBISOFS-1.3.6, LIBBURN-1.3.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2292948 --El Torito VD version 1 found, boot catalog is in sector 9702 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/debian/debian6/debian-6.0.4-i386-CD-1.iso.txt b/tests/isodata/debian/debian6/debian-6.0.4-i386-CD-1.iso.txt -deleted file mode 100644 -index a6f5a59..0000000 ---- a/tests/isodata/debian/debian6/debian-6.0.4-i386-CD-1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Debian 6.0.4 i386 1 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.1.0 2011.06.20.110001, LIBISOBURN-1.1.0, LIBISOFS-1.1.0, LIBBURN-1.1.0 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 331264 --El Torito VD version 1 found, boot catalog is in sector 3470 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2ED0C 191756 -diff --git a/tests/isodata/debian/debian6/debian-6.0.8-amd64-CD-1.iso.txt b/tests/isodata/debian/debian6/debian-6.0.8-amd64-CD-1.iso.txt -deleted file mode 100644 -index 8f5a8b2..0000000 ---- a/tests/isodata/debian/debian6/debian-6.0.8-amd64-CD-1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Debian 6.0.8 amd64 1 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.2.6 2013.01.08.103001, LIBISOBURN-1.2.6, LIBISOFS-1.2.6, LIBBURN-1.2.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2292948 --El Torito VD version 1 found, boot catalog is in sector 9460 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1C5AAF 1858223 -diff --git a/tests/isodata/debian/debian6/debian-6.0.8-i386-CD-1.iso.txt b/tests/isodata/debian/debian6/debian-6.0.8-i386-CD-1.iso.txt -deleted file mode 100644 -index 2f92d81..0000000 ---- a/tests/isodata/debian/debian6/debian-6.0.8-i386-CD-1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Debian 6.0.8 i386 1 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.2.6 2013.01.08.103001, LIBISOBURN-1.2.6, LIBISOFS-1.2.6, LIBBURN-1.2.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2290680 --El Torito VD version 1 found, boot catalog is in sector 9530 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 97C92 621714 -diff --git a/tests/isodata/debian/debian6/debian-live-6.0.3-i386-standard.iso.txt b/tests/isodata/debian/debian6/debian-live-6.0.3-i386-standard.iso.txt -deleted file mode 100644 -index dae41f8..0000000 ---- a/tests/isodata/debian/debian6/debian-live-6.0.3-i386-standard.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Debian squeeze 20111014-08:13 --Volume set id: --Publisher id: Debian Live project; http://live.debian.net/; debian-live@lists.debian.org --Data preparer id: live-build 2.0.12-2; http://packages.qa.debian.org/live-build --Application id: Debian Live --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 140873 --El Torito VD version 1 found, boot catalog is in sector 385 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Debian Live project; ht' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 182 386 -diff --git a/tests/isodata/debian/debian6/debian-live-6.0.8-amd64-standard.iso.txt b/tests/isodata/debian/debian6/debian-live-6.0.8-amd64-standard.iso.txt -deleted file mode 100644 -index aae5767..0000000 ---- a/tests/isodata/debian/debian6/debian-live-6.0.8-amd64-standard.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Debian squeeze 20131021-12:03 --Volume set id: --Publisher id: Debian Live project; http://live.debian.net/; debian-live@lists.debian.org --Data preparer id: live-build 2.0.12-2; http://packages.qa.debian.org/live-build --Application id: Debian Live --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 579131 --El Torito VD version 1 found, boot catalog is in sector 364 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Debian Live project; ht' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 16D 365 -diff --git a/tests/isodata/debian/debian6/debian-live-6.0.8-i386-standard.iso.txt b/tests/isodata/debian/debian6/debian-live-6.0.8-i386-standard.iso.txt -deleted file mode 100644 -index 56a69eb..0000000 ---- a/tests/isodata/debian/debian6/debian-live-6.0.8-i386-standard.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Debian squeeze 20131021-08:21 --Volume set id: --Publisher id: Debian Live project; http://live.debian.net/; debian-live@lists.debian.org --Data preparer id: live-build 2.0.12-2; http://packages.qa.debian.org/live-build --Application id: Debian Live --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 573578 --El Torito VD version 1 found, boot catalog is in sector 383 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Debian Live project; ht' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 180 384 -diff --git a/tests/isodata/debian/debian7/debian-7.0.0-amd64-DVD-1.iso.txt b/tests/isodata/debian/debian7/debian-7.0.0-amd64-DVD-1.iso.txt -deleted file mode 100644 -index 750a470..0000000 ---- a/tests/isodata/debian/debian7/debian-7.0.0-amd64-DVD-1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Debian 7.0.0 amd64 1 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.2.6 2013.01.08.103001, LIBISOBURN-1.2.6, LIBISOFS-1.2.6, LIBBURN-1.2.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1952152 --El Torito VD version 1 found, boot catalog is in sector 4647 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 6B88B 440459 -diff --git a/tests/isodata/debian/debian7/debian-7.0.0-i386-DVD-1.iso.txt b/tests/isodata/debian/debian7/debian-7.0.0-i386-DVD-1.iso.txt -deleted file mode 100644 -index ae715d7..0000000 ---- a/tests/isodata/debian/debian7/debian-7.0.0-i386-DVD-1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Debian 7.0.0 i386 1 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.2.6 2013.01.08.103001, LIBISOBURN-1.2.6, LIBISOFS-1.2.6, LIBBURN-1.2.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1952152 --El Torito VD version 1 found, boot catalog is in sector 9052 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1510E3 1380579 -diff --git a/tests/isodata/debian/debian7/debian-7.2.0-amd64-DVD-1.iso.txt b/tests/isodata/debian/debian7/debian-7.2.0-amd64-DVD-1.iso.txt -deleted file mode 100644 -index 2a990e6..0000000 ---- a/tests/isodata/debian/debian7/debian-7.2.0-amd64-DVD-1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Debian 7.2.0 amd64 1 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.2.6 2013.01.08.103001, LIBISOBURN-1.2.6, LIBISOFS-1.2.6, LIBBURN-1.2.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1921360 --El Torito VD version 1 found, boot catalog is in sector 4528 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 15F4E1 1438945 -diff --git a/tests/isodata/debian/debian7/debian-7.2.0-i386-DVD-1.iso.txt b/tests/isodata/debian/debian7/debian-7.2.0-i386-DVD-1.iso.txt -deleted file mode 100644 -index 2a4cb9d..0000000 ---- a/tests/isodata/debian/debian7/debian-7.2.0-i386-DVD-1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Debian 7.2.0 i386 1 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.2.6 2013.01.08.103001, LIBISOBURN-1.2.6, LIBISOFS-1.2.6, LIBBURN-1.2.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1952152 --El Torito VD version 1 found, boot catalog is in sector 9014 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff F6650 1009232 -diff --git a/tests/isodata/debian/debian7/debian-7.3.0-amd64-DVD-1.iso.txt b/tests/isodata/debian/debian7/debian-7.3.0-amd64-DVD-1.iso.txt -deleted file mode 100644 -index b5ae014..0000000 ---- a/tests/isodata/debian/debian7/debian-7.3.0-amd64-DVD-1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Debian 7.3.0 amd64 1 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.2.6 2013.01.08.103001, LIBISOBURN-1.2.6, LIBISOFS-1.2.6, LIBBURN-1.2.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1925120 --El Torito VD version 1 found, boot catalog is in sector 4558 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1C8041 1867841 -diff --git a/tests/isodata/debian/debian7/debian-7.3.0-i386-DVD-1.iso.txt b/tests/isodata/debian/debian7/debian-7.3.0-i386-DVD-1.iso.txt -deleted file mode 100644 -index cf13727..0000000 ---- a/tests/isodata/debian/debian7/debian-7.3.0-i386-DVD-1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Debian 7.3.0 i386 1 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.2.6 2013.01.08.103001, LIBISOBURN-1.2.6, LIBISOFS-1.2.6, LIBBURN-1.2.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1949696 --El Torito VD version 1 found, boot catalog is in sector 9034 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 19CF1E 1691422 -diff --git a/tests/isodata/debian/debian8/debian-8.0.0-amd64-CD-1.iso.txt b/tests/isodata/debian/debian8/debian-8.0.0-amd64-CD-1.iso.txt -deleted file mode 100644 -index 4b2a03f..0000000 ---- a/tests/isodata/debian/debian8/debian-8.0.0-amd64-CD-1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Debian 8.0.0 amd64 1 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.3.6 2014.04.08.180000, LIBISOBURN-1.3.6, LIBISOFS-1.3.6, LIBBURN-1.3.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 321024 --El Torito VD version 1 found, boot catalog is in sector 2138 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 92B 2347 -diff --git a/tests/isodata/debian/debian8/debian-8.7.1-amd64-CD-1.iso.txt b/tests/isodata/debian/debian8/debian-8.7.1-amd64-CD-1.iso.txt -deleted file mode 100644 -index 9f8f232..0000000 ---- a/tests/isodata/debian/debian8/debian-8.7.1-amd64-CD-1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Debian 8.7.1 amd64 1 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.3.6 2014.04.08.180000, LIBISOBURN-1.3.6, LIBISOFS-1.3.6, LIBBURN-1.3.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 322560 --El Torito VD version 1 found, boot catalog is in sector 2142 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 85F 2143 -diff --git a/tests/isodata/debian/debian9/debian-9.0-amd64-netinst.iso.txt b/tests/isodata/debian/debian9/debian-9.0-amd64-netinst.iso.txt -deleted file mode 100644 -index ca0b62d..0000000 ---- a/tests/isodata/debian/debian9/debian-9.0-amd64-netinst.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Debian 9.0.0 amd64 n --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.3.6 2014.04.08.180000, LIBISOBURN-1.3.6, LIBISOFS-1.3.6, LIBBURN-1.3.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 148480 --El Torito VD version 1 found, boot catalog is in sector 939 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 47C 1148 -diff --git a/tests/isodata/debian/debian9/debian-9.0-amd64.iso.txt b/tests/isodata/debian/debian9/debian-9.0-amd64.iso.txt -deleted file mode 100644 -index 779c3df..0000000 ---- a/tests/isodata/debian/debian9/debian-9.0-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Debian 9.0.0 amd64 1 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.3.6 2014.04.08.180000, LIBISOBURN-1.3.6, LIBISOFS-1.3.6, LIBBURN-1.3.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1857768 --El Torito VD version 1 found, boot catalog is in sector 5307 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 158C 5516 -diff --git a/tests/isodata/debian/debian9/debian-9.0-arm64-netinst.iso.txt b/tests/isodata/debian/debian9/debian-9.0-arm64-netinst.iso.txt -deleted file mode 100644 -index 10c385e..0000000 ---- a/tests/isodata/debian/debian9/debian-9.0-arm64-netinst.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Debian 9.0.0 arm64 n --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.3.6 2014.04.08.180000, LIBISOBURN-1.3.6, LIBISOFS-1.3.6, LIBBURN-1.3.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 102400 --El Torito VD version 1 found, boot catalog is in sector 907 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 239 (Unknown Arch) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 340 -- Bootoff 38C 908 -diff --git a/tests/isodata/debian/debian9/debian-9.0-arm64.iso.txt b/tests/isodata/debian/debian9/debian-9.0-arm64.iso.txt -deleted file mode 100644 -index 5793c3a..0000000 ---- a/tests/isodata/debian/debian9/debian-9.0-arm64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Debian 9.0.0 arm64 1 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.3.6 2014.04.08.180000, LIBISOBURN-1.3.6, LIBISOFS-1.3.6, LIBBURN-1.3.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1941504 --El Torito VD version 1 found, boot catalog is in sector 5280 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 239 (Unknown Arch) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 340 -- Bootoff 14A1 5281 -diff --git a/tests/isodata/debian/debian9/debian-9.0-armhf-netinst.iso.txt b/tests/isodata/debian/debian9/debian-9.0-armhf-netinst.iso.txt -deleted file mode 100644 -index 702797b..0000000 ---- a/tests/isodata/debian/debian9/debian-9.0-armhf-netinst.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Debian 9.0.0 armhf n --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.3.6 2014.04.08.180000, LIBISOBURN-1.3.6, LIBISOFS-1.3.6, LIBBURN-1.3.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 179612 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/debian/debian9/debian-9.0-armhf.iso.txt b/tests/isodata/debian/debian9/debian-9.0-armhf.iso.txt -deleted file mode 100644 -index 54e5d7d..0000000 ---- a/tests/isodata/debian/debian9/debian-9.0-armhf.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Debian 9.0.0 armhf 1 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.3.6 2014.04.08.180000, LIBISOBURN-1.3.6, LIBISOFS-1.3.6, LIBBURN-1.3.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2292273 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/debian/debian9/debian-9.0-i386-netinst.iso.txt b/tests/isodata/debian/debian9/debian-9.0-i386-netinst.iso.txt -deleted file mode 100644 -index 4e1de36..0000000 ---- a/tests/isodata/debian/debian9/debian-9.0-i386-netinst.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Debian 9.0.0 i386 n --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.3.6 2014.04.08.180000, LIBISOBURN-1.3.6, LIBISOFS-1.3.6, LIBBURN-1.3.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 192000 --El Torito VD version 1 found, boot catalog is in sector 946 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 3B3 947 -diff --git a/tests/isodata/debian/debian9/debian-9.0-i386.iso.txt b/tests/isodata/debian/debian9/debian-9.0-i386.iso.txt -deleted file mode 100644 -index 71e4ec8..0000000 ---- a/tests/isodata/debian/debian9/debian-9.0-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Debian 9.0.0 i386 1 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.3.6 2014.04.08.180000, LIBISOBURN-1.3.6, LIBISOFS-1.3.6, LIBBURN-1.3.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1925120 --El Torito VD version 1 found, boot catalog is in sector 5313 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 155A 5466 -diff --git a/tests/isodata/debian/debiantesting/debian-testing-amd64-DVD-1.iso.txt b/tests/isodata/debian/debiantesting/debian-testing-amd64-DVD-1.iso.txt -deleted file mode 100644 -index 515866b..0000000 ---- a/tests/isodata/debian/debiantesting/debian-testing-amd64-DVD-1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Debian testing amd64 1 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.3.6 2014.04.08.180000, LIBISOBURN-1.3.6, LIBISOFS-1.3.6, LIBBURN-1.3.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1941504 --El Torito VD version 1 found, boot catalog is in sector 5003 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 145C 5212 -diff --git a/tests/isodata/dragonflybsd/dragonflybsd5.0.0/dfly-x86_64-5.0.0_REL.iso.txt b/tests/isodata/dragonflybsd/dragonflybsd5.0.0/dfly-x86_64-5.0.0_REL.iso.txt -deleted file mode 100644 -index c617fb2..0000000 ---- a/tests/isodata/dragonflybsd/dragonflybsd5.0.0/dfly-x86_64-5.0.0_REL.iso.txt -+++ /dev/null -@@ -1,33 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: DragonFly --Volume id: DragonFly v5.0.0 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO9660/HFS/UDF FILESYSTEM BUILDER & CDRECORD CD/DVD/BluRay CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 385596 --El Torito VD version 1 found, boot catalog is in sector 5715 -- --Joliet with UCS level 3 found. --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'RRIP_1991A' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Cksum AA 55 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1654 5716 -diff --git a/tests/isodata/dragonflybsd/dragonflybsd5.0.1/dfly-x86_64-5.0.1_REL.iso.txt b/tests/isodata/dragonflybsd/dragonflybsd5.0.1/dfly-x86_64-5.0.1_REL.iso.txt -deleted file mode 100644 -index f32c29c..0000000 ---- a/tests/isodata/dragonflybsd/dragonflybsd5.0.1/dfly-x86_64-5.0.1_REL.iso.txt -+++ /dev/null -@@ -1,33 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: DragonFly --Volume id: DragonFly v5.0.1 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO9660/HFS/UDF FILESYSTEM BUILDER & CDRECORD CD/DVD/BluRay CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 386658 --El Torito VD version 1 found, boot catalog is in sector 5725 -- --Joliet with UCS level 3 found. --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'RRIP_1991A' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Cksum AA 55 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 165E 5726 -diff --git a/tests/isodata/dragonflybsd/dragonflybsd5.0.2/dfly-x86_64-5.0.2_REL.iso.txt b/tests/isodata/dragonflybsd/dragonflybsd5.0.2/dfly-x86_64-5.0.2_REL.iso.txt -deleted file mode 100644 -index 21f5222..0000000 ---- a/tests/isodata/dragonflybsd/dragonflybsd5.0.2/dfly-x86_64-5.0.2_REL.iso.txt -+++ /dev/null -@@ -1,33 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: DragonFly --Volume id: DragonFly v5.0.2 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO9660/HFS/UDF FILESYSTEM BUILDER & CDRECORD CD/DVD/BluRay CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 427283 --El Torito VD version 1 found, boot catalog is in sector 6375 -- --Joliet with UCS level 3 found. --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'RRIP_1991A' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Cksum AA 55 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 18E8 6376 -diff --git a/tests/isodata/dragonflybsd/dragonflybsd5.2.0/dfly-x86_64-5.2.0_REL.iso.txt b/tests/isodata/dragonflybsd/dragonflybsd5.2.0/dfly-x86_64-5.2.0_REL.iso.txt -deleted file mode 100644 -index f8ddb35..0000000 ---- a/tests/isodata/dragonflybsd/dragonflybsd5.2.0/dfly-x86_64-5.2.0_REL.iso.txt -+++ /dev/null -@@ -1,33 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: DragonFly --Volume id: DragonFly v5.2.0 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO9660/HFS/UDF FILESYSTEM BUILDER & CDRECORD CD/DVD/BluRay CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 434095 --El Torito VD version 1 found, boot catalog is in sector 5921 -- --Joliet with UCS level 3 found. --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'RRIP_1991A' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Cksum AA 55 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1722 5922 -diff --git a/tests/isodata/dragonflybsd/dragonflybsd5.2.1/dfly-x86_64-5.2.1_REL.iso.txt b/tests/isodata/dragonflybsd/dragonflybsd5.2.1/dfly-x86_64-5.2.1_REL.iso.txt -deleted file mode 100644 -index f243d0d..0000000 ---- a/tests/isodata/dragonflybsd/dragonflybsd5.2.1/dfly-x86_64-5.2.1_REL.iso.txt -+++ /dev/null -@@ -1,33 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: DragonFly --Volume id: DragonFly v5.2.1 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO9660/HFS/UDF FILESYSTEM BUILDER & CDRECORD CD/DVD/BluRay CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 436735 --El Torito VD version 1 found, boot catalog is in sector 6029 -- --Joliet with UCS level 3 found. --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'RRIP_1991A' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Cksum AA 55 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 178E 6030 -diff --git a/tests/isodata/dragonflybsd/dragonflybsd5.2.2/dfly-x86_64-5.2.2_REL.iso.txt b/tests/isodata/dragonflybsd/dragonflybsd5.2.2/dfly-x86_64-5.2.2_REL.iso.txt -deleted file mode 100644 -index 92b56e3..0000000 ---- a/tests/isodata/dragonflybsd/dragonflybsd5.2.2/dfly-x86_64-5.2.2_REL.iso.txt -+++ /dev/null -@@ -1,34 +0,0 @@ --Setting input-charset to 'UTF-8' from locale. --CD-ROM is in ISO 9660 format --System id: DragonFly --Volume id: DragonFly v5.2.2 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO9660/HFS/UDF FILESYSTEM BUILDER & CDRECORD CD/DVD/BluRay CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 437022 --El Torito VD version 1 found, boot catalog is in sector 6029 -- --Joliet with UCS level 3 found. --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'RRIP_1991A' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Cksum AA 55 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 178E 6030 -diff --git a/tests/isodata/dragonflybsd/dragonflybsd5.4.0/dfly-x86_64-5.4.0_REL.iso.txt b/tests/isodata/dragonflybsd/dragonflybsd5.4.0/dfly-x86_64-5.4.0_REL.iso.txt -deleted file mode 100644 -index 7c73d7a..0000000 ---- a/tests/isodata/dragonflybsd/dragonflybsd5.4.0/dfly-x86_64-5.4.0_REL.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: DragonFly --Volume id: DragonFly v5.4.0 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO9660/HFS/UDF FILESYSTEM BUILDER & CDRECORD CD/DVD/BluRay CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 506386 --El Torito VD version 1 found, boot catalog is in sector 6319 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 18B0 6320 -diff --git a/tests/isodata/dragonflybsd/dragonflybsd5.4.1/dfly-x86_64-5.4.1_REL.iso.txt b/tests/isodata/dragonflybsd/dragonflybsd5.4.1/dfly-x86_64-5.4.1_REL.iso.txt -deleted file mode 100644 -index 30aa5ee..0000000 ---- a/tests/isodata/dragonflybsd/dragonflybsd5.4.1/dfly-x86_64-5.4.1_REL.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: DragonFly --Volume id: DragonFly v5.4.1 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO9660/HFS/UDF FILESYSTEM BUILDER & CDRECORD CD/DVD/BluRay CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 506430 --El Torito VD version 1 found, boot catalog is in sector 6319 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 18B0 6320 -diff --git a/tests/isodata/eos/eos3.4/eos-eos3.4-amd64-amd64.180515-041823.base.iso.txt b/tests/isodata/eos/eos3.4/eos-eos3.4-amd64-amd64.180515-041823.base.iso.txt -deleted file mode 100644 -index 3429c89..0000000 ---- a/tests/isodata/eos/eos3.4/eos-eos3.4-amd64-amd64.180515-041823.base.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Endless-OS-3-4-0-base --Volume set id: --Publisher id: ENDLESS COMPUTERS --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 911817 --El Torito VD version 1 found, boot catalog is in sector 64 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff DE0E3 909539 -diff --git a/tests/isodata/eos/eos3.4/eos-eos3.4-amd64-amd64.180515-044004.es.iso.txt b/tests/isodata/eos/eos3.4/eos-eos3.4-amd64-amd64.180515-044004.es.iso.txt -deleted file mode 100644 -index 8e20b03..0000000 ---- a/tests/isodata/eos/eos3.4/eos-eos3.4-amd64-amd64.180515-044004.es.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Endless-OS-3-4-0-es --Volume set id: --Publisher id: ENDLESS COMPUTERS --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 7165456 --El Torito VD version 1 found, boot catalog is in sector 64 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 6D4D29 7163177 -diff --git a/tests/isodata/eos/eos3.4/eos-eos3.4-amd64-amd64.180515-044248.bn.iso.txt b/tests/isodata/eos/eos3.4/eos-eos3.4-amd64-amd64.180515-044248.bn.iso.txt -deleted file mode 100644 -index 71da571..0000000 ---- a/tests/isodata/eos/eos3.4/eos-eos3.4-amd64-amd64.180515-044248.bn.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Endless-OS-3-4-0-bn --Volume set id: --Publisher id: ENDLESS COMPUTERS --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 6328990 --El Torito VD version 1 found, boot catalog is in sector 64 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 6089B7 6326711 -diff --git a/tests/isodata/eos/eos3.4/eos-eos3.4-amd64-amd64.180515-044927.es_GT.iso.txt b/tests/isodata/eos/eos3.4/eos-eos3.4-amd64-amd64.180515-044927.es_GT.iso.txt -deleted file mode 100644 -index 1e8fd7e..0000000 ---- a/tests/isodata/eos/eos3.4/eos-eos3.4-amd64-amd64.180515-044927.es_GT.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Endless-OS-3-4-0-es_GT --Volume set id: --Publisher id: ENDLESS COMPUTERS --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 7635073 --El Torito VD version 1 found, boot catalog is in sector 64 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 74779B 7632795 -diff --git a/tests/isodata/eos/eos3.4/eos-eos3.4-amd64-amd64.180515-050141.en.iso.txt b/tests/isodata/eos/eos3.4/eos-eos3.4-amd64-amd64.180515-050141.en.iso.txt -deleted file mode 100644 -index 42e6575..0000000 ---- a/tests/isodata/eos/eos3.4/eos-eos3.4-amd64-amd64.180515-050141.en.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Endless-OS-3-4-0-en --Volume set id: --Publisher id: ENDLESS COMPUTERS --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 7823573 --El Torito VD version 1 found, boot catalog is in sector 64 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 7757EF 7821295 -diff --git a/tests/isodata/eos/eos3.4/eos-eos3.4-amd64-amd64.180515-054338.ar.iso.txt b/tests/isodata/eos/eos3.4/eos-eos3.4-amd64-amd64.180515-054338.ar.iso.txt -deleted file mode 100644 -index 33858c7..0000000 ---- a/tests/isodata/eos/eos3.4/eos-eos3.4-amd64-amd64.180515-054338.ar.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Endless-OS-3-4-0-ar --Volume set id: --Publisher id: ENDLESS COMPUTERS --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 4504772 --El Torito VD version 1 found, boot catalog is in sector 64 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 44B3DD 4502493 -diff --git a/tests/isodata/eos/eos3.4/eos-eos3.4-amd64-amd64.180515-055726.fr.iso.txt b/tests/isodata/eos/eos3.4/eos-eos3.4-amd64-amd64.180515-055726.fr.iso.txt -deleted file mode 100644 -index 7dd72f8..0000000 ---- a/tests/isodata/eos/eos3.4/eos-eos3.4-amd64-amd64.180515-055726.fr.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Endless-OS-3-4-0-fr --Volume set id: --Publisher id: ENDLESS COMPUTERS --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 4797252 --El Torito VD version 1 found, boot catalog is in sector 64 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 492A5D 4794973 -diff --git a/tests/isodata/eos/eos3.4/eos-eos3.4-amd64-amd64.180515-061343.es_MX.iso.txt b/tests/isodata/eos/eos3.4/eos-eos3.4-amd64-amd64.180515-061343.es_MX.iso.txt -deleted file mode 100644 -index 6ec4745..0000000 ---- a/tests/isodata/eos/eos3.4/eos-eos3.4-amd64-amd64.180515-061343.es_MX.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Endless-OS-3-4-0-es_MX --Volume set id: --Publisher id: ENDLESS COMPUTERS --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 7177164 --El Torito VD version 1 found, boot catalog is in sector 64 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 6D7AE5 7174885 -diff --git a/tests/isodata/eos/eos3.4/eos-eos3.4-amd64-amd64.180515-062519.id.iso.txt b/tests/isodata/eos/eos3.4/eos-eos3.4-amd64-amd64.180515-062519.id.iso.txt -deleted file mode 100644 -index b95f166..0000000 ---- a/tests/isodata/eos/eos3.4/eos-eos3.4-amd64-amd64.180515-062519.id.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Endless-OS-3-4-0-id --Volume set id: --Publisher id: ENDLESS COMPUTERS --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 8237980 --El Torito VD version 1 found, boot catalog is in sector 64 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 7DAAB5 8235701 -diff --git a/tests/isodata/eos/eos3.4/eos-eos3.4-amd64-amd64.180515-064146.th.iso.txt b/tests/isodata/eos/eos3.4/eos-eos3.4-amd64-amd64.180515-064146.th.iso.txt -deleted file mode 100644 -index 0da96ec..0000000 ---- a/tests/isodata/eos/eos3.4/eos-eos3.4-amd64-amd64.180515-064146.th.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Endless-OS-3-4-0-th --Volume set id: --Publisher id: ENDLESS COMPUTERS --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 3841359 --El Torito VD version 1 found, boot catalog is in sector 64 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 3A9468 3839080 -diff --git a/tests/isodata/eos/eos3.4/eos-eos3.4-amd64-amd64.180515-070619.vi.iso.txt b/tests/isodata/eos/eos3.4/eos-eos3.4-amd64-amd64.180515-070619.vi.iso.txt -deleted file mode 100644 -index a593573..0000000 ---- a/tests/isodata/eos/eos3.4/eos-eos3.4-amd64-amd64.180515-070619.vi.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Endless-OS-3-4-0-vi --Volume set id: --Publisher id: ENDLESS COMPUTERS --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 4064929 --El Torito VD version 1 found, boot catalog is in sector 64 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 3DFDBB 4062651 -diff --git a/tests/isodata/eos/eos3.4/eos-eos3.4-amd64-amd64.180515-071821.zh_CN.iso.txt b/tests/isodata/eos/eos3.4/eos-eos3.4-amd64-amd64.180515-071821.zh_CN.iso.txt -deleted file mode 100644 -index ac7914f..0000000 ---- a/tests/isodata/eos/eos3.4/eos-eos3.4-amd64-amd64.180515-071821.zh_CN.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Endless-OS-3-4-0-zh_CN --Volume set id: --Publisher id: ENDLESS COMPUTERS --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 3310778 --El Torito VD version 1 found, boot catalog is in sector 64 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 327BD4 3308500 -diff --git a/tests/isodata/fedora/fedora1/yarrow-i386-disc1.iso.txt b/tests/isodata/fedora/fedora1/yarrow-i386-disc1.iso.txt -deleted file mode 100644 -index 58973c7..0000000 ---- a/tests/isodata/fedora/fedora1/yarrow-i386-disc1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC/1 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: FC/1 i386 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 322432 --El Torito VD version 1 found, boot catalog is in sector 208 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 692 1682 -diff --git a/tests/isodata/fedora/fedora1/yarrow-i386-disc2.iso.txt b/tests/isodata/fedora/fedora1/yarrow-i386-disc2.iso.txt -deleted file mode 100644 -index 9d9f1e6..0000000 ---- a/tests/isodata/fedora/fedora1/yarrow-i386-disc2.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC/1 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: FC/1 i386 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 325936 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora1/yarrow-i386-disc3.iso.txt b/tests/isodata/fedora/fedora1/yarrow-i386-disc3.iso.txt -deleted file mode 100644 -index cda6541..0000000 ---- a/tests/isodata/fedora/fedora1/yarrow-i386-disc3.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC/1 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: FC/1 i386 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 315168 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora1/yarrow-i386-dvd.iso.txt b/tests/isodata/fedora/fedora1/yarrow-i386-dvd.iso.txt -deleted file mode 100644 -index 9066bc4..0000000 ---- a/tests/isodata/fedora/fedora1/yarrow-i386-dvd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC/1 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: FC/1 i386 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1935136 --El Torito VD version 1 found, boot catalog is in sector 431 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 771 1905 -diff --git a/tests/isodata/fedora/fedora10/F10-i686-Live-KDE.iso.txt b/tests/isodata/fedora/fedora10/F10-i686-Live-KDE.iso.txt -deleted file mode 100644 -index 2c41a51..0000000 ---- a/tests/isodata/fedora/fedora10/F10-i686-Live-KDE.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: F10-i686-Live-KDE --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 347610 --El Torito VD version 1 found, boot catalog is in sector 40 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 29 41 -diff --git a/tests/isodata/fedora/fedora10/F10-i686-Live.iso.txt b/tests/isodata/fedora/fedora10/F10-i686-Live.iso.txt -deleted file mode 100644 -index 2a4d27e..0000000 ---- a/tests/isodata/fedora/fedora10/F10-i686-Live.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: F10-i686-Live --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 348832 --El Torito VD version 1 found, boot catalog is in sector 40 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 29 41 -diff --git a/tests/isodata/fedora/fedora10/F10-x86_64-Live-KDE.iso.txt b/tests/isodata/fedora/fedora10/F10-x86_64-Live-KDE.iso.txt -deleted file mode 100644 -index 023a1b7..0000000 ---- a/tests/isodata/fedora/fedora10/F10-x86_64-Live-KDE.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: F10-x86_64-Live-KDE --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 350206 --El Torito VD version 1 found, boot catalog is in sector 40 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 29 41 -diff --git a/tests/isodata/fedora/fedora10/F10-x86_64-Live.iso.txt b/tests/isodata/fedora/fedora10/F10-x86_64-Live.iso.txt -deleted file mode 100644 -index 7df76b6..0000000 ---- a/tests/isodata/fedora/fedora10/F10-x86_64-Live.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: F10-x86_64-Live --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 350235 --El Torito VD version 1 found, boot catalog is in sector 40 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 29 41 -diff --git a/tests/isodata/fedora/fedora10/Fedora-10-i386-DVD.iso.txt b/tests/isodata/fedora/fedora10/Fedora-10-i386-DVD.iso.txt -deleted file mode 100644 -index 39f6fc1..0000000 ---- a/tests/isodata/fedora/fedora10/Fedora-10-i386-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 10 i386 DVD --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1788366 --El Torito VD version 1 found, boot catalog is in sector 356 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 165 357 -diff --git a/tests/isodata/fedora/fedora10/Fedora-10-i386-disc1.iso.txt b/tests/isodata/fedora/fedora10/Fedora-10-i386-disc1.iso.txt -deleted file mode 100644 -index b9f8179..0000000 ---- a/tests/isodata/fedora/fedora10/Fedora-10-i386-disc1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 10 i386 Disc 1 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 351811 --El Torito VD version 1 found, boot catalog is in sector 103 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 68 104 -diff --git a/tests/isodata/fedora/fedora10/Fedora-10-i386-disc2.iso.txt b/tests/isodata/fedora/fedora10/Fedora-10-i386-disc2.iso.txt -deleted file mode 100644 -index 2759d09..0000000 ---- a/tests/isodata/fedora/fedora10/Fedora-10-i386-disc2.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 10 i386 Disc 2 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 344993 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora10/Fedora-10-i386-disc3.iso.txt b/tests/isodata/fedora/fedora10/Fedora-10-i386-disc3.iso.txt -deleted file mode 100644 -index 3afbe79..0000000 ---- a/tests/isodata/fedora/fedora10/Fedora-10-i386-disc3.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 10 i386 Disc 3 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 345974 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora10/Fedora-10-i386-disc4.iso.txt b/tests/isodata/fedora/fedora10/Fedora-10-i386-disc4.iso.txt -deleted file mode 100644 -index 738ceef..0000000 ---- a/tests/isodata/fedora/fedora10/Fedora-10-i386-disc4.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 10 i386 Disc 4 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 353537 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora10/Fedora-10-i386-disc5.iso.txt b/tests/isodata/fedora/fedora10/Fedora-10-i386-disc5.iso.txt -deleted file mode 100644 -index cb8de26..0000000 ---- a/tests/isodata/fedora/fedora10/Fedora-10-i386-disc5.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 10 i386 Disc 5 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 351713 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora10/Fedora-10-i386-disc6.iso.txt b/tests/isodata/fedora/fedora10/Fedora-10-i386-disc6.iso.txt -deleted file mode 100644 -index f29569f..0000000 ---- a/tests/isodata/fedora/fedora10/Fedora-10-i386-disc6.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 10 i386 Disc 6 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 41011 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora10/Fedora-10-ppc-DVD.iso.txt b/tests/isodata/fedora/fedora10/Fedora-10-ppc-DVD.iso.txt -deleted file mode 100644 -index 6532ce7..0000000 ---- a/tests/isodata/fedora/fedora10/Fedora-10-ppc-DVD.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: PPC --Volume id: Fedora 10 ppc DVD --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2196176 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora10/Fedora-10-ppc-disc1.iso.txt b/tests/isodata/fedora/fedora10/Fedora-10-ppc-disc1.iso.txt -deleted file mode 100644 -index 230d10e..0000000 ---- a/tests/isodata/fedora/fedora10/Fedora-10-ppc-disc1.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: PPC --Volume id: Fedora 10 ppc Disc 1 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 356268 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora10/Fedora-10-ppc-disc2.iso.txt b/tests/isodata/fedora/fedora10/Fedora-10-ppc-disc2.iso.txt -deleted file mode 100644 -index 331bac0..0000000 ---- a/tests/isodata/fedora/fedora10/Fedora-10-ppc-disc2.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 10 ppc Disc 2 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 345986 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora10/Fedora-10-ppc-disc3.iso.txt b/tests/isodata/fedora/fedora10/Fedora-10-ppc-disc3.iso.txt -deleted file mode 100644 -index 3f41d0a..0000000 ---- a/tests/isodata/fedora/fedora10/Fedora-10-ppc-disc3.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 10 ppc Disc 3 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 348863 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora10/Fedora-10-ppc-disc4.iso.txt b/tests/isodata/fedora/fedora10/Fedora-10-ppc-disc4.iso.txt -deleted file mode 100644 -index d3d52b1..0000000 ---- a/tests/isodata/fedora/fedora10/Fedora-10-ppc-disc4.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 10 ppc Disc 4 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 335917 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora10/Fedora-10-ppc-disc5.iso.txt b/tests/isodata/fedora/fedora10/Fedora-10-ppc-disc5.iso.txt -deleted file mode 100644 -index e4536a7..0000000 ---- a/tests/isodata/fedora/fedora10/Fedora-10-ppc-disc5.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 10 ppc Disc 5 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 349616 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora10/Fedora-10-ppc-disc6.iso.txt b/tests/isodata/fedora/fedora10/Fedora-10-ppc-disc6.iso.txt -deleted file mode 100644 -index 0ee8ee3..0000000 ---- a/tests/isodata/fedora/fedora10/Fedora-10-ppc-disc6.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 10 ppc Disc 6 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 349934 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora10/Fedora-10-ppc-disc7.iso.txt b/tests/isodata/fedora/fedora10/Fedora-10-ppc-disc7.iso.txt -deleted file mode 100644 -index 971dc25..0000000 ---- a/tests/isodata/fedora/fedora10/Fedora-10-ppc-disc7.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 10 ppc Disc 7 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 46368 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora10/Fedora-10-x86_64-DVD.iso.txt b/tests/isodata/fedora/fedora10/Fedora-10-x86_64-DVD.iso.txt -deleted file mode 100644 -index d32569e..0000000 ---- a/tests/isodata/fedora/fedora10/Fedora-10-x86_64-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 10 x86_64 DVD --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2037248 --El Torito VD version 1 found, boot catalog is in sector 442 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1BB 443 -diff --git a/tests/isodata/fedora/fedora10/Fedora-10-x86_64-disc1.iso.txt b/tests/isodata/fedora/fedora10/Fedora-10-x86_64-disc1.iso.txt -deleted file mode 100644 -index 85ff336..0000000 ---- a/tests/isodata/fedora/fedora10/Fedora-10-x86_64-disc1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 10 x86_64 Disc 1 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 352379 --El Torito VD version 1 found, boot catalog is in sector 121 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 7A 122 -diff --git a/tests/isodata/fedora/fedora10/Fedora-10-x86_64-disc2.iso.txt b/tests/isodata/fedora/fedora10/Fedora-10-x86_64-disc2.iso.txt -deleted file mode 100644 -index ba40a26..0000000 ---- a/tests/isodata/fedora/fedora10/Fedora-10-x86_64-disc2.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 10 x86_64 Disc 2 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 353156 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora10/Fedora-10-x86_64-disc3.iso.txt b/tests/isodata/fedora/fedora10/Fedora-10-x86_64-disc3.iso.txt -deleted file mode 100644 -index 23c3c50..0000000 ---- a/tests/isodata/fedora/fedora10/Fedora-10-x86_64-disc3.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 10 x86_64 Disc 3 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 352431 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora10/Fedora-10-x86_64-disc4.iso.txt b/tests/isodata/fedora/fedora10/Fedora-10-x86_64-disc4.iso.txt -deleted file mode 100644 -index df42204..0000000 ---- a/tests/isodata/fedora/fedora10/Fedora-10-x86_64-disc4.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 10 x86_64 Disc 4 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 352199 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora10/Fedora-10-x86_64-disc5.iso.txt b/tests/isodata/fedora/fedora10/Fedora-10-x86_64-disc5.iso.txt -deleted file mode 100644 -index 03f5145..0000000 ---- a/tests/isodata/fedora/fedora10/Fedora-10-x86_64-disc5.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 10 x86_64 Disc 5 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 353751 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora10/Fedora-10-x86_64-disc6.iso.txt b/tests/isodata/fedora/fedora10/Fedora-10-x86_64-disc6.iso.txt -deleted file mode 100644 -index 1f133eb..0000000 ---- a/tests/isodata/fedora/fedora10/Fedora-10-x86_64-disc6.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 10 x86_64 Disc 6 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 273644 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora11/Fedora-11-i386-DVD.iso.txt b/tests/isodata/fedora/fedora11/Fedora-11-i386-DVD.iso.txt -deleted file mode 100644 -index 2c2ffb4..0000000 ---- a/tests/isodata/fedora/fedora11/Fedora-11-i386-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 11 i386 DVD --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1798745 --El Torito VD version 1 found, boot catalog is in sector 366 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 16F 367 -diff --git a/tests/isodata/fedora/fedora11/Fedora-11-i386-disc1.iso.txt b/tests/isodata/fedora/fedora11/Fedora-11-i386-disc1.iso.txt -deleted file mode 100644 -index 7a4b72d..0000000 ---- a/tests/isodata/fedora/fedora11/Fedora-11-i386-disc1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 11 i386 Disc 1 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 355386 --El Torito VD version 1 found, boot catalog is in sector 143 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 90 144 -diff --git a/tests/isodata/fedora/fedora11/Fedora-11-i386-disc2.iso.txt b/tests/isodata/fedora/fedora11/Fedora-11-i386-disc2.iso.txt -deleted file mode 100644 -index 558f4b7..0000000 ---- a/tests/isodata/fedora/fedora11/Fedora-11-i386-disc2.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 11 i386 Disc 2 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 353963 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora11/Fedora-11-i386-disc3.iso.txt b/tests/isodata/fedora/fedora11/Fedora-11-i386-disc3.iso.txt -deleted file mode 100644 -index d2de929..0000000 ---- a/tests/isodata/fedora/fedora11/Fedora-11-i386-disc3.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 11 i386 Disc 3 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 352373 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora11/Fedora-11-i386-disc4.iso.txt b/tests/isodata/fedora/fedora11/Fedora-11-i386-disc4.iso.txt -deleted file mode 100644 -index 3077c34..0000000 ---- a/tests/isodata/fedora/fedora11/Fedora-11-i386-disc4.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 11 i386 Disc 4 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 355838 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora11/Fedora-11-i386-disc5.iso.txt b/tests/isodata/fedora/fedora11/Fedora-11-i386-disc5.iso.txt -deleted file mode 100644 -index e382947..0000000 ---- a/tests/isodata/fedora/fedora11/Fedora-11-i386-disc5.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 11 i386 Disc 5 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 350466 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora11/Fedora-11-i386-disc6.iso.txt b/tests/isodata/fedora/fedora11/Fedora-11-i386-disc6.iso.txt -deleted file mode 100644 -index 51d0bbe..0000000 ---- a/tests/isodata/fedora/fedora11/Fedora-11-i386-disc6.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 11 i386 Disc 6 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 31545 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora11/Fedora-11-i686-Live-KDE.iso.txt b/tests/isodata/fedora/fedora11/Fedora-11-i686-Live-KDE.iso.txt -deleted file mode 100644 -index e5daa13..0000000 ---- a/tests/isodata/fedora/fedora11/Fedora-11-i686-Live-KDE.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-11-i686-Live-KDE --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 351209 --El Torito VD version 1 found, boot catalog is in sector 40 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 29 41 -diff --git a/tests/isodata/fedora/fedora11/Fedora-11-i686-Live.iso.txt b/tests/isodata/fedora/fedora11/Fedora-11-i686-Live.iso.txt -deleted file mode 100644 -index 0b711ff..0000000 ---- a/tests/isodata/fedora/fedora11/Fedora-11-i686-Live.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-11-i686-Live --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 352329 --El Torito VD version 1 found, boot catalog is in sector 40 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 29 41 -diff --git a/tests/isodata/fedora/fedora11/Fedora-11-ppc-DVD.iso.txt b/tests/isodata/fedora/fedora11/Fedora-11-ppc-DVD.iso.txt -deleted file mode 100644 -index bc16dda..0000000 ---- a/tests/isodata/fedora/fedora11/Fedora-11-ppc-DVD.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: PPC --Volume id: Fedora 11 ppc DVD --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2249460 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora11/Fedora-11-ppc-disc1.iso.txt b/tests/isodata/fedora/fedora11/Fedora-11-ppc-disc1.iso.txt -deleted file mode 100644 -index 019a823..0000000 ---- a/tests/isodata/fedora/fedora11/Fedora-11-ppc-disc1.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: PPC --Volume id: Fedora 11 ppc Disc 1 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 354360 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora11/Fedora-11-ppc-disc2.iso.txt b/tests/isodata/fedora/fedora11/Fedora-11-ppc-disc2.iso.txt -deleted file mode 100644 -index 7584009..0000000 ---- a/tests/isodata/fedora/fedora11/Fedora-11-ppc-disc2.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 11 ppc Disc 2 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 351194 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora11/Fedora-11-ppc-disc3.iso.txt b/tests/isodata/fedora/fedora11/Fedora-11-ppc-disc3.iso.txt -deleted file mode 100644 -index e350db4..0000000 ---- a/tests/isodata/fedora/fedora11/Fedora-11-ppc-disc3.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 11 ppc Disc 3 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 354880 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora11/Fedora-11-ppc-disc4.iso.txt b/tests/isodata/fedora/fedora11/Fedora-11-ppc-disc4.iso.txt -deleted file mode 100644 -index c0d8564..0000000 ---- a/tests/isodata/fedora/fedora11/Fedora-11-ppc-disc4.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 11 ppc Disc 4 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 352931 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora11/Fedora-11-ppc-disc5.iso.txt b/tests/isodata/fedora/fedora11/Fedora-11-ppc-disc5.iso.txt -deleted file mode 100644 -index ac82657..0000000 ---- a/tests/isodata/fedora/fedora11/Fedora-11-ppc-disc5.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 11 ppc Disc 5 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 346017 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora11/Fedora-11-ppc-disc6.iso.txt b/tests/isodata/fedora/fedora11/Fedora-11-ppc-disc6.iso.txt -deleted file mode 100644 -index 1fec907..0000000 ---- a/tests/isodata/fedora/fedora11/Fedora-11-ppc-disc6.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 11 ppc Disc 6 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 351089 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora11/Fedora-11-ppc-disc7.iso.txt b/tests/isodata/fedora/fedora11/Fedora-11-ppc-disc7.iso.txt -deleted file mode 100644 -index 69d621f..0000000 ---- a/tests/isodata/fedora/fedora11/Fedora-11-ppc-disc7.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 11 ppc Disc 7 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 89116 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora11/Fedora-11-x86_64-DVD.iso.txt b/tests/isodata/fedora/fedora11/Fedora-11-x86_64-DVD.iso.txt -deleted file mode 100644 -index 058c7f7..0000000 ---- a/tests/isodata/fedora/fedora11/Fedora-11-x86_64-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 11 x86_64 DVD --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2084045 --El Torito VD version 1 found, boot catalog is in sector 456 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1C9 457 -diff --git a/tests/isodata/fedora/fedora11/Fedora-11-x86_64-Live-KDE.iso.txt b/tests/isodata/fedora/fedora11/Fedora-11-x86_64-Live-KDE.iso.txt -deleted file mode 100644 -index 49790d9..0000000 ---- a/tests/isodata/fedora/fedora11/Fedora-11-x86_64-Live-KDE.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-11-x86_64-Live-KDE --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 355027 --El Torito VD version 1 found, boot catalog is in sector 40 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 29 41 -diff --git a/tests/isodata/fedora/fedora11/Fedora-11-x86_64-Live.iso.txt b/tests/isodata/fedora/fedora11/Fedora-11-x86_64-Live.iso.txt -deleted file mode 100644 -index 0694fbe..0000000 ---- a/tests/isodata/fedora/fedora11/Fedora-11-x86_64-Live.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-11-x86_64-Live --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 353563 --El Torito VD version 1 found, boot catalog is in sector 40 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 29 41 -diff --git a/tests/isodata/fedora/fedora11/Fedora-11-x86_64-disc1.iso.txt b/tests/isodata/fedora/fedora11/Fedora-11-x86_64-disc1.iso.txt -deleted file mode 100644 -index 2889218..0000000 ---- a/tests/isodata/fedora/fedora11/Fedora-11-x86_64-disc1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 11 x86_64 Disc 1 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 354675 --El Torito VD version 1 found, boot catalog is in sector 165 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff A6 166 -diff --git a/tests/isodata/fedora/fedora11/Fedora-11-x86_64-disc2.iso.txt b/tests/isodata/fedora/fedora11/Fedora-11-x86_64-disc2.iso.txt -deleted file mode 100644 -index 3a1edf5..0000000 ---- a/tests/isodata/fedora/fedora11/Fedora-11-x86_64-disc2.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 11 x86_64 Disc 2 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 354212 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora11/Fedora-11-x86_64-disc3.iso.txt b/tests/isodata/fedora/fedora11/Fedora-11-x86_64-disc3.iso.txt -deleted file mode 100644 -index fe5f781..0000000 ---- a/tests/isodata/fedora/fedora11/Fedora-11-x86_64-disc3.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 11 x86_64 Disc 3 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 355071 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora11/Fedora-11-x86_64-disc4.iso.txt b/tests/isodata/fedora/fedora11/Fedora-11-x86_64-disc4.iso.txt -deleted file mode 100644 -index 33d3231..0000000 ---- a/tests/isodata/fedora/fedora11/Fedora-11-x86_64-disc4.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 11 x86_64 Disc 4 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 353756 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora11/Fedora-11-x86_64-disc5.iso.txt b/tests/isodata/fedora/fedora11/Fedora-11-x86_64-disc5.iso.txt -deleted file mode 100644 -index c273f56..0000000 ---- a/tests/isodata/fedora/fedora11/Fedora-11-x86_64-disc5.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 11 x86_64 Disc 5 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 353560 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora11/Fedora-11-x86_64-disc6.iso.txt b/tests/isodata/fedora/fedora11/Fedora-11-x86_64-disc6.iso.txt -deleted file mode 100644 -index a0ae939..0000000 ---- a/tests/isodata/fedora/fedora11/Fedora-11-x86_64-disc6.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 11 x86_64 Disc 6 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 313174 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora12/Fedora-12-i386-DVD.iso.txt b/tests/isodata/fedora/fedora12/Fedora-12-i386-DVD.iso.txt -deleted file mode 100644 -index 26fa94b..0000000 ---- a/tests/isodata/fedora/fedora12/Fedora-12-i386-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 12 i386 DVD --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1564662 --El Torito VD version 1 found, boot catalog is in sector 388 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 185 389 -diff --git a/tests/isodata/fedora/fedora12/Fedora-12-i386-disc1.iso.txt b/tests/isodata/fedora/fedora12/Fedora-12-i386-disc1.iso.txt -deleted file mode 100644 -index 5e1d222..0000000 ---- a/tests/isodata/fedora/fedora12/Fedora-12-i386-disc1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 12 i386 Disc 1 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 353856 --El Torito VD version 1 found, boot catalog is in sector 170 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff AB 171 -diff --git a/tests/isodata/fedora/fedora12/Fedora-12-i386-disc2.iso.txt b/tests/isodata/fedora/fedora12/Fedora-12-i386-disc2.iso.txt -deleted file mode 100644 -index 69844f2..0000000 ---- a/tests/isodata/fedora/fedora12/Fedora-12-i386-disc2.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 12 i386 Disc 2 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 355483 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora12/Fedora-12-i386-disc3.iso.txt b/tests/isodata/fedora/fedora12/Fedora-12-i386-disc3.iso.txt -deleted file mode 100644 -index 1b8bb85..0000000 ---- a/tests/isodata/fedora/fedora12/Fedora-12-i386-disc3.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 12 i386 Disc 3 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 354962 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora12/Fedora-12-i386-disc4.iso.txt b/tests/isodata/fedora/fedora12/Fedora-12-i386-disc4.iso.txt -deleted file mode 100644 -index d3e9bc6..0000000 ---- a/tests/isodata/fedora/fedora12/Fedora-12-i386-disc4.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 12 i386 Disc 4 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 352753 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora12/Fedora-12-i386-disc5.iso.txt b/tests/isodata/fedora/fedora12/Fedora-12-i386-disc5.iso.txt -deleted file mode 100644 -index b745f04..0000000 ---- a/tests/isodata/fedora/fedora12/Fedora-12-i386-disc5.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 12 i386 Disc 5 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 148077 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora12/Fedora-12-i686-Live-KDE.iso.txt b/tests/isodata/fedora/fedora12/Fedora-12-i686-Live-KDE.iso.txt -deleted file mode 100644 -index 3bffa2b..0000000 ---- a/tests/isodata/fedora/fedora12/Fedora-12-i686-Live-KDE.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-12-i686-Live-KDE --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 348233 --El Torito VD version 1 found, boot catalog is in sector 40 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 29 41 -diff --git a/tests/isodata/fedora/fedora12/Fedora-12-i686-Live.iso.txt b/tests/isodata/fedora/fedora12/Fedora-12-i686-Live.iso.txt -deleted file mode 100644 -index cf3deb8..0000000 ---- a/tests/isodata/fedora/fedora12/Fedora-12-i686-Live.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-12-i686-Live --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 334637 --El Torito VD version 1 found, boot catalog is in sector 40 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 29 41 -diff --git a/tests/isodata/fedora/fedora12/Fedora-12-ppc-DVD.iso.txt b/tests/isodata/fedora/fedora12/Fedora-12-ppc-DVD.iso.txt -deleted file mode 100644 -index c4cab20..0000000 ---- a/tests/isodata/fedora/fedora12/Fedora-12-ppc-DVD.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: PPC --Volume id: Fedora 12 ppc DVD --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1825652 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora12/Fedora-12-ppc-disc1.iso.txt b/tests/isodata/fedora/fedora12/Fedora-12-ppc-disc1.iso.txt -deleted file mode 100644 -index 3821f8a..0000000 ---- a/tests/isodata/fedora/fedora12/Fedora-12-ppc-disc1.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: PPC --Volume id: Fedora 12 ppc Disc 1 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 356124 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora12/Fedora-12-ppc-disc2.iso.txt b/tests/isodata/fedora/fedora12/Fedora-12-ppc-disc2.iso.txt -deleted file mode 100644 -index f53f9cb..0000000 ---- a/tests/isodata/fedora/fedora12/Fedora-12-ppc-disc2.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 12 ppc Disc 2 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 355680 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora12/Fedora-12-ppc-disc3.iso.txt b/tests/isodata/fedora/fedora12/Fedora-12-ppc-disc3.iso.txt -deleted file mode 100644 -index 4183c00..0000000 ---- a/tests/isodata/fedora/fedora12/Fedora-12-ppc-disc3.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 12 ppc Disc 3 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 354664 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora12/Fedora-12-ppc-disc4.iso.txt b/tests/isodata/fedora/fedora12/Fedora-12-ppc-disc4.iso.txt -deleted file mode 100644 -index 5bc46a9..0000000 ---- a/tests/isodata/fedora/fedora12/Fedora-12-ppc-disc4.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 12 ppc Disc 4 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 354841 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora12/Fedora-12-ppc-disc5.iso.txt b/tests/isodata/fedora/fedora12/Fedora-12-ppc-disc5.iso.txt -deleted file mode 100644 -index d102566..0000000 ---- a/tests/isodata/fedora/fedora12/Fedora-12-ppc-disc5.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 12 ppc Disc 5 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 354871 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora12/Fedora-12-ppc-disc6.iso.txt b/tests/isodata/fedora/fedora12/Fedora-12-ppc-disc6.iso.txt -deleted file mode 100644 -index 1d8ae49..0000000 ---- a/tests/isodata/fedora/fedora12/Fedora-12-ppc-disc6.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 12 ppc Disc 6 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 8005 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora12/Fedora-12-x86_64-DVD.iso.txt b/tests/isodata/fedora/fedora12/Fedora-12-x86_64-DVD.iso.txt -deleted file mode 100644 -index b959aec..0000000 ---- a/tests/isodata/fedora/fedora12/Fedora-12-x86_64-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 12 x86_64 DVD --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1727344 --El Torito VD version 1 found, boot catalog is in sector 479 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1E0 480 -diff --git a/tests/isodata/fedora/fedora12/Fedora-12-x86_64-Live-KDE.iso.txt b/tests/isodata/fedora/fedora12/Fedora-12-x86_64-Live-KDE.iso.txt -deleted file mode 100644 -index 6e54914..0000000 ---- a/tests/isodata/fedora/fedora12/Fedora-12-x86_64-Live-KDE.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-12-x86_64-Live-KDE --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 350557 --El Torito VD version 1 found, boot catalog is in sector 40 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 29 41 -diff --git a/tests/isodata/fedora/fedora12/Fedora-12-x86_64-Live.iso.txt b/tests/isodata/fedora/fedora12/Fedora-12-x86_64-Live.iso.txt -deleted file mode 100644 -index b1c347d..0000000 ---- a/tests/isodata/fedora/fedora12/Fedora-12-x86_64-Live.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-12-x86_64-Live --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 335517 --El Torito VD version 1 found, boot catalog is in sector 40 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 29 41 -diff --git a/tests/isodata/fedora/fedora12/Fedora-12-x86_64-disc1.iso.txt b/tests/isodata/fedora/fedora12/Fedora-12-x86_64-disc1.iso.txt -deleted file mode 100644 -index 53f2ac3..0000000 ---- a/tests/isodata/fedora/fedora12/Fedora-12-x86_64-disc1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 12 x86_64 Disc 1 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 355158 --El Torito VD version 1 found, boot catalog is in sector 197 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff C6 198 -diff --git a/tests/isodata/fedora/fedora12/Fedora-12-x86_64-disc2.iso.txt b/tests/isodata/fedora/fedora12/Fedora-12-x86_64-disc2.iso.txt -deleted file mode 100644 -index 9754438..0000000 ---- a/tests/isodata/fedora/fedora12/Fedora-12-x86_64-disc2.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 12 x86_64 Disc 2 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 351453 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora12/Fedora-12-x86_64-disc3.iso.txt b/tests/isodata/fedora/fedora12/Fedora-12-x86_64-disc3.iso.txt -deleted file mode 100644 -index 2c1cede..0000000 ---- a/tests/isodata/fedora/fedora12/Fedora-12-x86_64-disc3.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 12 x86_64 Disc 3 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 354738 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora12/Fedora-12-x86_64-disc4.iso.txt b/tests/isodata/fedora/fedora12/Fedora-12-x86_64-disc4.iso.txt -deleted file mode 100644 -index 0ef4caa..0000000 ---- a/tests/isodata/fedora/fedora12/Fedora-12-x86_64-disc4.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 12 x86_64 Disc 4 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 355434 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora12/Fedora-12-x86_64-disc5.iso.txt b/tests/isodata/fedora/fedora12/Fedora-12-x86_64-disc5.iso.txt -deleted file mode 100644 -index a98f8c7..0000000 ---- a/tests/isodata/fedora/fedora12/Fedora-12-x86_64-disc5.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 12 x86_64 Disc 5 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 310661 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora13/Fedora-13-i386-DVD.iso.txt b/tests/isodata/fedora/fedora13/Fedora-13-i386-DVD.iso.txt -deleted file mode 100644 -index 5a1cb2d..0000000 ---- a/tests/isodata/fedora/fedora13/Fedora-13-i386-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 13 i386 DVD --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1600140 --El Torito VD version 1 found, boot catalog is in sector 393 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 18A 394 -diff --git a/tests/isodata/fedora/fedora13/Fedora-13-i386-disc1.iso.txt b/tests/isodata/fedora/fedora13/Fedora-13-i386-disc1.iso.txt -deleted file mode 100644 -index 4d50e82..0000000 ---- a/tests/isodata/fedora/fedora13/Fedora-13-i386-disc1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 13 i386 Disc 1 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 354822 --El Torito VD version 1 found, boot catalog is in sector 174 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff AF 175 -diff --git a/tests/isodata/fedora/fedora13/Fedora-13-i386-disc2.iso.txt b/tests/isodata/fedora/fedora13/Fedora-13-i386-disc2.iso.txt -deleted file mode 100644 -index 6888597..0000000 ---- a/tests/isodata/fedora/fedora13/Fedora-13-i386-disc2.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 13 i386 Disc 2 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 353752 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora13/Fedora-13-i386-disc3.iso.txt b/tests/isodata/fedora/fedora13/Fedora-13-i386-disc3.iso.txt -deleted file mode 100644 -index 64c26b5..0000000 ---- a/tests/isodata/fedora/fedora13/Fedora-13-i386-disc3.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 13 i386 Disc 3 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 352747 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora13/Fedora-13-i386-disc4.iso.txt b/tests/isodata/fedora/fedora13/Fedora-13-i386-disc4.iso.txt -deleted file mode 100644 -index adb2e98..0000000 ---- a/tests/isodata/fedora/fedora13/Fedora-13-i386-disc4.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 13 i386 Disc 4 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 351038 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora13/Fedora-13-i386-disc5.iso.txt b/tests/isodata/fedora/fedora13/Fedora-13-i386-disc5.iso.txt -deleted file mode 100644 -index 4090089..0000000 ---- a/tests/isodata/fedora/fedora13/Fedora-13-i386-disc5.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 13 i386 Disc 5 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 188557 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora13/Fedora-13-i686-Live-KDE.iso.txt b/tests/isodata/fedora/fedora13/Fedora-13-i686-Live-KDE.iso.txt -deleted file mode 100644 -index c3aa0c2..0000000 ---- a/tests/isodata/fedora/fedora13/Fedora-13-i686-Live-KDE.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-13-i686-Live-KDE --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 357028 --El Torito VD version 1 found, boot catalog is in sector 40 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 29 41 -diff --git a/tests/isodata/fedora/fedora13/Fedora-13-i686-Live.iso.txt b/tests/isodata/fedora/fedora13/Fedora-13-i686-Live.iso.txt -deleted file mode 100644 -index cb98105..0000000 ---- a/tests/isodata/fedora/fedora13/Fedora-13-i686-Live.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-13-i686-Live --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 345564 --El Torito VD version 1 found, boot catalog is in sector 40 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 29 41 -diff --git a/tests/isodata/fedora/fedora13/Fedora-13-x86_64-DVD.iso.txt b/tests/isodata/fedora/fedora13/Fedora-13-x86_64-DVD.iso.txt -deleted file mode 100644 -index d8e264b..0000000 ---- a/tests/isodata/fedora/fedora13/Fedora-13-x86_64-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 13 x86_64 DVD --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1772483 --El Torito VD version 1 found, boot catalog is in sector 488 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1E9 489 -diff --git a/tests/isodata/fedora/fedora13/Fedora-13-x86_64-Live-KDE.iso.txt b/tests/isodata/fedora/fedora13/Fedora-13-x86_64-Live-KDE.iso.txt -deleted file mode 100644 -index caa4513..0000000 ---- a/tests/isodata/fedora/fedora13/Fedora-13-x86_64-Live-KDE.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-13-x86_64-Live-KDE --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 358138 --El Torito VD version 1 found, boot catalog is in sector 40 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 29 41 -diff --git a/tests/isodata/fedora/fedora13/Fedora-13-x86_64-Live.iso.txt b/tests/isodata/fedora/fedora13/Fedora-13-x86_64-Live.iso.txt -deleted file mode 100644 -index bf0b7f2..0000000 ---- a/tests/isodata/fedora/fedora13/Fedora-13-x86_64-Live.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-13-x86_64-Live --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 346475 --El Torito VD version 1 found, boot catalog is in sector 40 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 29 41 -diff --git a/tests/isodata/fedora/fedora13/Fedora-13-x86_64-disc1.iso.txt b/tests/isodata/fedora/fedora13/Fedora-13-x86_64-disc1.iso.txt -deleted file mode 100644 -index 83f832d..0000000 ---- a/tests/isodata/fedora/fedora13/Fedora-13-x86_64-disc1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 13 x86_64 Disc 1 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 355594 --El Torito VD version 1 found, boot catalog is in sector 206 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff CF 207 -diff --git a/tests/isodata/fedora/fedora13/Fedora-13-x86_64-disc2.iso.txt b/tests/isodata/fedora/fedora13/Fedora-13-x86_64-disc2.iso.txt -deleted file mode 100644 -index ef86a90..0000000 ---- a/tests/isodata/fedora/fedora13/Fedora-13-x86_64-disc2.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 13 x86_64 Disc 2 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 355765 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora13/Fedora-13-x86_64-disc3.iso.txt b/tests/isodata/fedora/fedora13/Fedora-13-x86_64-disc3.iso.txt -deleted file mode 100644 -index 272665e..0000000 ---- a/tests/isodata/fedora/fedora13/Fedora-13-x86_64-disc3.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 13 x86_64 Disc 3 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 354977 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora13/Fedora-13-x86_64-disc4.iso.txt b/tests/isodata/fedora/fedora13/Fedora-13-x86_64-disc4.iso.txt -deleted file mode 100644 -index f2d4c6c..0000000 ---- a/tests/isodata/fedora/fedora13/Fedora-13-x86_64-disc4.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 13 x86_64 Disc 4 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 353498 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora13/Fedora-13-x86_64-disc5.iso.txt b/tests/isodata/fedora/fedora13/Fedora-13-x86_64-disc5.iso.txt -deleted file mode 100644 -index 4747e31..0000000 ---- a/tests/isodata/fedora/fedora13/Fedora-13-x86_64-disc5.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 13 x86_64 Disc 5 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 353350 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora14/Fedora-14-i386-DVD.iso.txt b/tests/isodata/fedora/fedora14/Fedora-14-i386-DVD.iso.txt -deleted file mode 100644 -index 31a9415..0000000 ---- a/tests/isodata/fedora/fedora14/Fedora-14-i386-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 14 i386 DVD --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1739137 --El Torito VD version 1 found, boot catalog is in sector 443 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1BC 444 -diff --git a/tests/isodata/fedora/fedora14/Fedora-14-i386-disc1.iso.txt b/tests/isodata/fedora/fedora14/Fedora-14-i386-disc1.iso.txt -deleted file mode 100644 -index 445bdd0..0000000 ---- a/tests/isodata/fedora/fedora14/Fedora-14-i386-disc1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 14 i386 Disc 1 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 344484 --El Torito VD version 1 found, boot catalog is in sector 164 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff A5 165 -diff --git a/tests/isodata/fedora/fedora14/Fedora-14-i386-disc2.iso.txt b/tests/isodata/fedora/fedora14/Fedora-14-i386-disc2.iso.txt -deleted file mode 100644 -index 5c7a222..0000000 ---- a/tests/isodata/fedora/fedora14/Fedora-14-i386-disc2.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 14 i386 Disc 2 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 355500 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora14/Fedora-14-i386-disc3.iso.txt b/tests/isodata/fedora/fedora14/Fedora-14-i386-disc3.iso.txt -deleted file mode 100644 -index 3a24b64..0000000 ---- a/tests/isodata/fedora/fedora14/Fedora-14-i386-disc3.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 14 i386 Disc 3 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 355677 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora14/Fedora-14-i386-disc4.iso.txt b/tests/isodata/fedora/fedora14/Fedora-14-i386-disc4.iso.txt -deleted file mode 100644 -index 1bd01ae..0000000 ---- a/tests/isodata/fedora/fedora14/Fedora-14-i386-disc4.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 14 i386 Disc 4 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 355552 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora14/Fedora-14-i386-disc5.iso.txt b/tests/isodata/fedora/fedora14/Fedora-14-i386-disc5.iso.txt -deleted file mode 100644 -index 26392d3..0000000 ---- a/tests/isodata/fedora/fedora14/Fedora-14-i386-disc5.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 14 i386 Disc 5 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 328571 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora14/Fedora-14-i686-Live-Desktop.iso.txt b/tests/isodata/fedora/fedora14/Fedora-14-i686-Live-Desktop.iso.txt -deleted file mode 100644 -index 309be45..0000000 ---- a/tests/isodata/fedora/fedora14/Fedora-14-i686-Live-Desktop.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-14-i686-Live-Desktop --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 351027 --El Torito VD version 1 found, boot catalog is in sector 40 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 29 41 -diff --git a/tests/isodata/fedora/fedora14/Fedora-14-i686-Live-KDE.iso.txt b/tests/isodata/fedora/fedora14/Fedora-14-i686-Live-KDE.iso.txt -deleted file mode 100644 -index d07a80c..0000000 ---- a/tests/isodata/fedora/fedora14/Fedora-14-i686-Live-KDE.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-14-i686-Live-KDE --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 350976 --El Torito VD version 1 found, boot catalog is in sector 40 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 29 41 -diff --git a/tests/isodata/fedora/fedora14/Fedora-14-x86_64-DVD.iso.txt b/tests/isodata/fedora/fedora14/Fedora-14-x86_64-DVD.iso.txt -deleted file mode 100644 -index e589aca..0000000 ---- a/tests/isodata/fedora/fedora14/Fedora-14-x86_64-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 14 x86_64 DVD --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1719142 --El Torito VD version 1 found, boot catalog is in sector 450 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1C3 451 -diff --git a/tests/isodata/fedora/fedora14/Fedora-14-x86_64-Live-Desktop.iso.txt b/tests/isodata/fedora/fedora14/Fedora-14-x86_64-Live-Desktop.iso.txt -deleted file mode 100644 -index 616206f..0000000 ---- a/tests/isodata/fedora/fedora14/Fedora-14-x86_64-Live-Desktop.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-14-x86_64-Live-Desktop --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 351419 --El Torito VD version 1 found, boot catalog is in sector 40 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 29 41 -diff --git a/tests/isodata/fedora/fedora14/Fedora-14-x86_64-Live-KDE.iso.txt b/tests/isodata/fedora/fedora14/Fedora-14-x86_64-Live-KDE.iso.txt -deleted file mode 100644 -index ec15b3f..0000000 ---- a/tests/isodata/fedora/fedora14/Fedora-14-x86_64-Live-KDE.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-14-x86_64-Live-KDE --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 351234 --El Torito VD version 1 found, boot catalog is in sector 40 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 29 41 -diff --git a/tests/isodata/fedora/fedora14/Fedora-14-x86_64-disc1.iso.txt b/tests/isodata/fedora/fedora14/Fedora-14-x86_64-disc1.iso.txt -deleted file mode 100644 -index fb496e1..0000000 ---- a/tests/isodata/fedora/fedora14/Fedora-14-x86_64-disc1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 14 x86_64 Disc 1 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 354828 --El Torito VD version 1 found, boot catalog is in sector 173 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff AE 174 -diff --git a/tests/isodata/fedora/fedora14/Fedora-14-x86_64-disc2.iso.txt b/tests/isodata/fedora/fedora14/Fedora-14-x86_64-disc2.iso.txt -deleted file mode 100644 -index 563ee03..0000000 ---- a/tests/isodata/fedora/fedora14/Fedora-14-x86_64-disc2.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 14 x86_64 Disc 2 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 355819 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora14/Fedora-14-x86_64-disc3.iso.txt b/tests/isodata/fedora/fedora14/Fedora-14-x86_64-disc3.iso.txt -deleted file mode 100644 -index 7969d77..0000000 ---- a/tests/isodata/fedora/fedora14/Fedora-14-x86_64-disc3.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 14 x86_64 Disc 3 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 353502 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora14/Fedora-14-x86_64-disc4.iso.txt b/tests/isodata/fedora/fedora14/Fedora-14-x86_64-disc4.iso.txt -deleted file mode 100644 -index e339bb0..0000000 ---- a/tests/isodata/fedora/fedora14/Fedora-14-x86_64-disc4.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 14 x86_64 Disc 4 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 352226 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora14/Fedora-14-x86_64-disc5.iso.txt b/tests/isodata/fedora/fedora14/Fedora-14-x86_64-disc5.iso.txt -deleted file mode 100644 -index d291c62..0000000 ---- a/tests/isodata/fedora/fedora14/Fedora-14-x86_64-disc5.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 14 x86_64 Disc 5 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 303511 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora15/Fedora-15-i386-DVD.iso.txt b/tests/isodata/fedora/fedora15/Fedora-15-i386-DVD.iso.txt -deleted file mode 100644 -index 58744df..0000000 ---- a/tests/isodata/fedora/fedora15/Fedora-15-i386-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 15 i386 DVD --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1782449 --El Torito VD version 1 found, boot catalog is in sector 464 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1D1 465 -diff --git a/tests/isodata/fedora/fedora15/Fedora-15-i686-Live-Desktop.iso.txt b/tests/isodata/fedora/fedora15/Fedora-15-i686-Live-Desktop.iso.txt -deleted file mode 100644 -index 147fcf5..0000000 ---- a/tests/isodata/fedora/fedora15/Fedora-15-i686-Live-Desktop.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-15-i686-Live-Desktop.iso --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 289155 --El Torito VD version 1 found, boot catalog is in sector 40 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 29 41 -diff --git a/tests/isodata/fedora/fedora15/Fedora-15-i686-Live-KDE.iso.txt b/tests/isodata/fedora/fedora15/Fedora-15-i686-Live-KDE.iso.txt -deleted file mode 100644 -index 0058475..0000000 ---- a/tests/isodata/fedora/fedora15/Fedora-15-i686-Live-KDE.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-15-i686-Live-KDE.iso --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 354062 --El Torito VD version 1 found, boot catalog is in sector 40 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 29 41 -diff --git a/tests/isodata/fedora/fedora15/Fedora-15-x86_64-DVD.iso.txt b/tests/isodata/fedora/fedora15/Fedora-15-x86_64-DVD.iso.txt -deleted file mode 100644 -index e8c49e1..0000000 ---- a/tests/isodata/fedora/fedora15/Fedora-15-x86_64-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 15 x86_64 DVD --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1756011 --El Torito VD version 1 found, boot catalog is in sector 474 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 377 887 -diff --git a/tests/isodata/fedora/fedora15/Fedora-15-x86_64-Live-Desktop.iso.txt b/tests/isodata/fedora/fedora15/Fedora-15-x86_64-Live-Desktop.iso.txt -deleted file mode 100644 -index d8eabec..0000000 ---- a/tests/isodata/fedora/fedora15/Fedora-15-x86_64-Live-Desktop.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-15-x86_64-Live-Desktop.is --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 289853 --El Torito VD version 1 found, boot catalog is in sector 40 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 29 41 -diff --git a/tests/isodata/fedora/fedora15/Fedora-15-x86_64-Live-KDE.iso.txt b/tests/isodata/fedora/fedora15/Fedora-15-x86_64-Live-KDE.iso.txt -deleted file mode 100644 -index 1cb1dfd..0000000 ---- a/tests/isodata/fedora/fedora15/Fedora-15-x86_64-Live-KDE.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-15-x86_64-Live-KDE.iso --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 354031 --El Torito VD version 1 found, boot catalog is in sector 40 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 29 41 -diff --git a/tests/isodata/fedora/fedora16/Fedora-16-i386-DVD.iso.txt b/tests/isodata/fedora/fedora16/Fedora-16-i386-DVD.iso.txt -deleted file mode 100644 -index 2503f15..0000000 ---- a/tests/isodata/fedora/fedora16/Fedora-16-i386-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 16 i386 DVD --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1858582 --El Torito VD version 1 found, boot catalog is in sector 488 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1E9 489 -diff --git a/tests/isodata/fedora/fedora16/Fedora-16-i686-Live-Desktop.iso.txt b/tests/isodata/fedora/fedora16/Fedora-16-i686-Live-Desktop.iso.txt -deleted file mode 100644 -index 0279535..0000000 ---- a/tests/isodata/fedora/fedora16/Fedora-16-i686-Live-Desktop.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-16-i686-Live-Desktop.iso --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 309563 --El Torito VD version 1 found, boot catalog is in sector 40 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 29 41 -diff --git a/tests/isodata/fedora/fedora16/Fedora-16-i686-Live-KDE.iso.txt b/tests/isodata/fedora/fedora16/Fedora-16-i686-Live-KDE.iso.txt -deleted file mode 100644 -index a34e60d..0000000 ---- a/tests/isodata/fedora/fedora16/Fedora-16-i686-Live-KDE.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-16-i686-Live-KDE.iso --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 356683 --El Torito VD version 1 found, boot catalog is in sector 40 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 29 41 -diff --git a/tests/isodata/fedora/fedora16/Fedora-16-x86_64-DVD.iso.txt b/tests/isodata/fedora/fedora16/Fedora-16-x86_64-DVD.iso.txt -deleted file mode 100644 -index cf844d4..0000000 ---- a/tests/isodata/fedora/fedora16/Fedora-16-x86_64-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 16 x86_64 DVD --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1834451 --El Torito VD version 1 found, boot catalog is in sector 499 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 3BE 958 -diff --git a/tests/isodata/fedora/fedora16/Fedora-16-x86_64-Live-Desktop.iso.txt b/tests/isodata/fedora/fedora16/Fedora-16-x86_64-Live-Desktop.iso.txt -deleted file mode 100644 -index 28a0f38..0000000 ---- a/tests/isodata/fedora/fedora16/Fedora-16-x86_64-Live-Desktop.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-16-x86_64-Live-Desktop.is --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 309102 --El Torito VD version 1 found, boot catalog is in sector 40 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 29 41 -diff --git a/tests/isodata/fedora/fedora16/Fedora-16-x86_64-Live-KDE.iso.txt b/tests/isodata/fedora/fedora16/Fedora-16-x86_64-Live-KDE.iso.txt -deleted file mode 100644 -index 4c80b1f..0000000 ---- a/tests/isodata/fedora/fedora16/Fedora-16-x86_64-Live-KDE.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-16-x86_64-Live-KDE.iso --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 355916 --El Torito VD version 1 found, boot catalog is in sector 40 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 29 41 -diff --git a/tests/isodata/fedora/fedora17/Fedora-17-i386-DVD.iso.txt b/tests/isodata/fedora/fedora17/Fedora-17-i386-DVD.iso.txt -deleted file mode 100644 -index 5ff03b4..0000000 ---- a/tests/isodata/fedora/fedora17/Fedora-17-i386-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 17 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1910082 --El Torito VD version 1 found, boot catalog is in sector 558 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 22F 559 -diff --git a/tests/isodata/fedora/fedora17/Fedora-17-i686-Live-Desktop.iso.txt b/tests/isodata/fedora/fedora17/Fedora-17-i686-Live-Desktop.iso.txt -deleted file mode 100644 -index 415580a..0000000 ---- a/tests/isodata/fedora/fedora17/Fedora-17-i686-Live-Desktop.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-17-i686-Live-Desktop.iso --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 330740 --El Torito VD version 1 found, boot catalog is in sector 40 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1B7 439 -diff --git a/tests/isodata/fedora/fedora17/Fedora-17-i686-Live-KDE.iso.txt b/tests/isodata/fedora/fedora17/Fedora-17-i686-Live-KDE.iso.txt -deleted file mode 100644 -index fb75f63..0000000 ---- a/tests/isodata/fedora/fedora17/Fedora-17-i686-Live-KDE.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-17-i686-Live-KDE.iso --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 355718 --El Torito VD version 1 found, boot catalog is in sector 40 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1B7 439 -diff --git a/tests/isodata/fedora/fedora17/Fedora-17-x86_64-DVD.iso.txt b/tests/isodata/fedora/fedora17/Fedora-17-x86_64-DVD.iso.txt -deleted file mode 100644 -index 986cf6e..0000000 ---- a/tests/isodata/fedora/fedora17/Fedora-17-x86_64-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 17 x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1872119 --El Torito VD version 1 found, boot catalog is in sector 571 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 585 1413 -diff --git a/tests/isodata/fedora/fedora17/Fedora-17-x86_64-Live-Desktop.iso.txt b/tests/isodata/fedora/fedora17/Fedora-17-x86_64-Live-Desktop.iso.txt -deleted file mode 100644 -index 627b727..0000000 ---- a/tests/isodata/fedora/fedora17/Fedora-17-x86_64-Live-Desktop.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-17-x86_64-Live-Desktop.is --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 330132 --El Torito VD version 1 found, boot catalog is in sector 40 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 145 325 -diff --git a/tests/isodata/fedora/fedora17/Fedora-17-x86_64-Live-KDE.iso.txt b/tests/isodata/fedora/fedora17/Fedora-17-x86_64-Live-KDE.iso.txt -deleted file mode 100644 -index e12799b..0000000 ---- a/tests/isodata/fedora/fedora17/Fedora-17-x86_64-Live-KDE.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-17-x86_64-Live-KDE.iso --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 353903 --El Torito VD version 1 found, boot catalog is in sector 40 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 145 325 -diff --git a/tests/isodata/fedora/fedora18/Fedora-18-i386-DVD.iso.txt b/tests/isodata/fedora/fedora18/Fedora-18-i386-DVD.iso.txt -deleted file mode 100644 -index d86cd16..0000000 ---- a/tests/isodata/fedora/fedora18/Fedora-18-i386-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 18 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2288762 --El Torito VD version 1 found, boot catalog is in sector 673 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2A2 674 -diff --git a/tests/isodata/fedora/fedora18/Fedora-18-i686-Live-Desktop.iso.txt b/tests/isodata/fedora/fedora18/Fedora-18-i686-Live-Desktop.iso.txt -deleted file mode 100644 -index c93f414..0000000 ---- a/tests/isodata/fedora/fedora18/Fedora-18-i686-Live-Desktop.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-18-i686-Live-Desktop.iso --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 454938 --El Torito VD version 1 found, boot catalog is in sector 36 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 25 37 -diff --git a/tests/isodata/fedora/fedora18/Fedora-18-i686-Live-KDE.iso.txt b/tests/isodata/fedora/fedora18/Fedora-18-i686-Live-KDE.iso.txt -deleted file mode 100644 -index f700ab2..0000000 ---- a/tests/isodata/fedora/fedora18/Fedora-18-i686-Live-KDE.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-18-i686-Live-KDE.iso --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 411830 --El Torito VD version 1 found, boot catalog is in sector 36 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 25 37 -diff --git a/tests/isodata/fedora/fedora18/Fedora-18-x86_64-DVD.iso.txt b/tests/isodata/fedora/fedora18/Fedora-18-x86_64-DVD.iso.txt -deleted file mode 100644 -index d2de90f..0000000 ---- a/tests/isodata/fedora/fedora18/Fedora-18-x86_64-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 18 x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2232984 --El Torito VD version 1 found, boot catalog is in sector 686 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 3E0C 15884 -diff --git a/tests/isodata/fedora/fedora18/Fedora-18-x86_64-Live-Desktop.iso.txt b/tests/isodata/fedora/fedora18/Fedora-18-x86_64-Live-Desktop.iso.txt -deleted file mode 100644 -index 8df8729..0000000 ---- a/tests/isodata/fedora/fedora18/Fedora-18-x86_64-Live-Desktop.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-18-x86_64-Live-Desktop.is --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 468691 --El Torito VD version 1 found, boot catalog is in sector 42 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 9C3 2499 -diff --git a/tests/isodata/fedora/fedora18/Fedora-18-x86_64-Live-KDE.iso.txt b/tests/isodata/fedora/fedora18/Fedora-18-x86_64-Live-KDE.iso.txt -deleted file mode 100644 -index abffde4..0000000 ---- a/tests/isodata/fedora/fedora18/Fedora-18-x86_64-Live-KDE.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-18-x86_64-Live-KDE.iso --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 425190 --El Torito VD version 1 found, boot catalog is in sector 42 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 9C3 2499 -diff --git a/tests/isodata/fedora/fedora19/Fedora-19-i386-netinst.iso.txt b/tests/isodata/fedora/fedora19/Fedora-19-i386-netinst.iso.txt -deleted file mode 100644 -index dab2a8d..0000000 ---- a/tests/isodata/fedora/fedora19/Fedora-19-i386-netinst.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 19 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 180667 --El Torito VD version 1 found, boot catalog is in sector 40 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 3D14 15636 -diff --git a/tests/isodata/fedora/fedora19/Fedora-19-x86_64-DVD.iso.txt b/tests/isodata/fedora/fedora19/Fedora-19-x86_64-DVD.iso.txt -deleted file mode 100644 -index 3ad2f70..0000000 ---- a/tests/isodata/fedora/fedora19/Fedora-19-x86_64-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 19 x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2170157 --El Torito VD version 1 found, boot catalog is in sector 659 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 294 660 -diff --git a/tests/isodata/fedora/fedora19/Fedora-Live-Desktop-i686-19-1.iso.txt b/tests/isodata/fedora/fedora19/Fedora-Live-Desktop-i686-19-1.iso.txt -deleted file mode 100644 -index 7cf764a..0000000 ---- a/tests/isodata/fedora/fedora19/Fedora-Live-Desktop-i686-19-1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-Live-Desktop-i686-19-1 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 470060 --El Torito VD version 1 found, boot catalog is in sector 36 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 25 37 -diff --git a/tests/isodata/fedora/fedora19/Fedora-Live-Desktop-x86_64-19-1.iso.txt b/tests/isodata/fedora/fedora19/Fedora-Live-Desktop-x86_64-19-1.iso.txt -deleted file mode 100644 -index 44cb133..0000000 ---- a/tests/isodata/fedora/fedora19/Fedora-Live-Desktop-x86_64-19-1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-Live-Desktop-x86_64-19-1 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 486873 --El Torito VD version 1 found, boot catalog is in sector 42 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 9F6 2550 -diff --git a/tests/isodata/fedora/fedora19/Fedora-Live-KDE-i686-19-1.iso.txt b/tests/isodata/fedora/fedora19/Fedora-Live-KDE-i686-19-1.iso.txt -deleted file mode 100644 -index a24aae1..0000000 ---- a/tests/isodata/fedora/fedora19/Fedora-Live-KDE-i686-19-1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-Live-KDE-i686-19-1 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 431436 --El Torito VD version 1 found, boot catalog is in sector 36 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 25 37 -diff --git a/tests/isodata/fedora/fedora19/Fedora-Live-KDE-x86_64-19-1.iso.txt b/tests/isodata/fedora/fedora19/Fedora-Live-KDE-x86_64-19-1.iso.txt -deleted file mode 100644 -index c1df730..0000000 ---- a/tests/isodata/fedora/fedora19/Fedora-Live-KDE-x86_64-19-1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-Live-KDE-x86_64-19-1 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 449225 --El Torito VD version 1 found, boot catalog is in sector 42 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 9F6 2550 -diff --git a/tests/isodata/fedora/fedora19/Fedora-Live-LXDE-x86_64-19-1.iso.txt b/tests/isodata/fedora/fedora19/Fedora-Live-LXDE-x86_64-19-1.iso.txt -deleted file mode 100644 -index 4634ecc..0000000 ---- a/tests/isodata/fedora/fedora19/Fedora-Live-LXDE-x86_64-19-1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-Live-LXDE-x86_64-19-1 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 353701 --El Torito VD version 1 found, boot catalog is in sector 42 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 9F6 2550 -diff --git a/tests/isodata/fedora/fedora19/Fedora-Live-XFCE-x86_64-19-1.iso.txt b/tests/isodata/fedora/fedora19/Fedora-Live-XFCE-x86_64-19-1.iso.txt -deleted file mode 100644 -index 6874d0d..0000000 ---- a/tests/isodata/fedora/fedora19/Fedora-Live-XFCE-x86_64-19-1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-Live-XFCE-x86_64-19-1 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 317471 --El Torito VD version 1 found, boot catalog is in sector 42 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 9F6 2550 -diff --git a/tests/isodata/fedora/fedora2/FC2-i386-DVD.iso.txt b/tests/isodata/fedora/fedora2/FC2-i386-DVD.iso.txt -deleted file mode 100644 -index 9bb48c4..0000000 ---- a/tests/isodata/fedora/fedora2/FC2-i386-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC/2 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: FC/2 i386 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2134102 --El Torito VD version 1 found, boot catalog is in sector 444 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 668 1640 -diff --git a/tests/isodata/fedora/fedora2/FC2-i386-disc1.iso.txt b/tests/isodata/fedora/fedora2/FC2-i386-disc1.iso.txt -deleted file mode 100644 -index 1107ab4..0000000 ---- a/tests/isodata/fedora/fedora2/FC2-i386-disc1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC/2 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: FC/2 i386 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 325942 --El Torito VD version 1 found, boot catalog is in sector 196 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 570 1392 -diff --git a/tests/isodata/fedora/fedora2/FC2-i386-disc2.iso.txt b/tests/isodata/fedora/fedora2/FC2-i386-disc2.iso.txt -deleted file mode 100644 -index e4060ff..0000000 ---- a/tests/isodata/fedora/fedora2/FC2-i386-disc2.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC/2 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: FC/2 i386 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 325099 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora2/FC2-i386-disc3.iso.txt b/tests/isodata/fedora/fedora2/FC2-i386-disc3.iso.txt -deleted file mode 100644 -index b4c10e7..0000000 ---- a/tests/isodata/fedora/fedora2/FC2-i386-disc3.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC/2 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: FC/2 i386 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 326668 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora2/FC2-i386-disc4.iso.txt b/tests/isodata/fedora/fedora2/FC2-i386-disc4.iso.txt -deleted file mode 100644 -index 0d4399a..0000000 ---- a/tests/isodata/fedora/fedora2/FC2-i386-disc4.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC/2 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: FC/2 i386 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 99481 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora2/FC2-x86_64-DVD.iso.txt b/tests/isodata/fedora/fedora2/FC2-x86_64-DVD.iso.txt -deleted file mode 100644 -index ec21ef4..0000000 ---- a/tests/isodata/fedora/fedora2/FC2-x86_64-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC/2 x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: FC/2 x86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2086473 --El Torito VD version 1 found, boot catalog is in sector 445 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 781 1921 -diff --git a/tests/isodata/fedora/fedora2/FC2-x86_64-disc1.iso.txt b/tests/isodata/fedora/fedora2/FC2-x86_64-disc1.iso.txt -deleted file mode 100644 -index 5e44940..0000000 ---- a/tests/isodata/fedora/fedora2/FC2-x86_64-disc1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC/2 x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: FC/2 x86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 326271 --El Torito VD version 1 found, boot catalog is in sector 194 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 686 1670 -diff --git a/tests/isodata/fedora/fedora2/FC2-x86_64-disc2.iso.txt b/tests/isodata/fedora/fedora2/FC2-x86_64-disc2.iso.txt -deleted file mode 100644 -index 8f00074..0000000 ---- a/tests/isodata/fedora/fedora2/FC2-x86_64-disc2.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC/2 x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: FC/2 x86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 325388 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora2/FC2-x86_64-disc3.iso.txt b/tests/isodata/fedora/fedora2/FC2-x86_64-disc3.iso.txt -deleted file mode 100644 -index 5b4dacd..0000000 ---- a/tests/isodata/fedora/fedora2/FC2-x86_64-disc3.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC/2 x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: FC/2 x86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 320518 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora2/FC2-x86_64-disc4.iso.txt b/tests/isodata/fedora/fedora2/FC2-x86_64-disc4.iso.txt -deleted file mode 100644 -index 0bbff35..0000000 ---- a/tests/isodata/fedora/fedora2/FC2-x86_64-disc4.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC/2 x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: FC/2 x86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 117455 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora20/Fedora-20-i386-DVD.iso.txt b/tests/isodata/fedora/fedora20/Fedora-20-i386-DVD.iso.txt -deleted file mode 100644 -index 70ffbf2..0000000 ---- a/tests/isodata/fedora/fedora20/Fedora-20-i386-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 20 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2284805 --El Torito VD version 1 found, boot catalog is in sector 658 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 293 659 -diff --git a/tests/isodata/fedora/fedora20/Fedora-20-i386-netinst.iso.txt b/tests/isodata/fedora/fedora20/Fedora-20-i386-netinst.iso.txt -deleted file mode 100644 -index d67cb04..0000000 ---- a/tests/isodata/fedora/fedora20/Fedora-20-i386-netinst.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 20 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 182695 --El Torito VD version 1 found, boot catalog is in sector 40 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 407A 16506 -diff --git a/tests/isodata/fedora/fedora20/Fedora-20-ppc64-netinst.iso.txt b/tests/isodata/fedora/fedora20/Fedora-20-ppc64-netinst.iso.txt -deleted file mode 100644 -index b4aa081..0000000 ---- a/tests/isodata/fedora/fedora20/Fedora-20-ppc64-netinst.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: PPC --Volume id: Fedora_20_ppc64 --Volume set id: 20 --Publisher id: --Data preparer id: --Application id: Fedora 20 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 173985 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora20/Fedora-20-x86_64-DVD.iso.txt b/tests/isodata/fedora/fedora20/Fedora-20-x86_64-DVD.iso.txt -deleted file mode 100644 -index c8e45e6..0000000 ---- a/tests/isodata/fedora/fedora20/Fedora-20-x86_64-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 20 x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2247232 --El Torito VD version 1 found, boot catalog is in sector 676 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2A5 677 -diff --git a/tests/isodata/fedora/fedora20/Fedora-20-x86_64-netinst.iso.txt b/tests/isodata/fedora/fedora20/Fedora-20-x86_64-netinst.iso.txt -deleted file mode 100644 -index 4f269cd..0000000 ---- a/tests/isodata/fedora/fedora20/Fedora-20-x86_64-netinst.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 20 x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 164242 --El Torito VD version 1 found, boot catalog is in sector 46 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 423F 16959 -diff --git a/tests/isodata/fedora/fedora20/Fedora-Live-Desktop-i686-20-1.iso.txt b/tests/isodata/fedora/fedora20/Fedora-Live-Desktop-i686-20-1.iso.txt -deleted file mode 100644 -index a7dc8d7..0000000 ---- a/tests/isodata/fedora/fedora20/Fedora-Live-Desktop-i686-20-1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-Live-Desktop-i686-20-1 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 471867 --El Torito VD version 1 found, boot catalog is in sector 36 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 25 37 -diff --git a/tests/isodata/fedora/fedora20/Fedora-Live-Desktop-x86_64-20-1.iso.txt b/tests/isodata/fedora/fedora20/Fedora-Live-Desktop-x86_64-20-1.iso.txt -deleted file mode 100644 -index 4aab969..0000000 ---- a/tests/isodata/fedora/fedora20/Fedora-Live-Desktop-x86_64-20-1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-Live-Desktop-x86_64-20-1 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 487536 --El Torito VD version 1 found, boot catalog is in sector 42 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 9FF 2559 -diff --git a/tests/isodata/fedora/fedora20/Fedora-Live-KDE-i686-20-1.iso.txt b/tests/isodata/fedora/fedora20/Fedora-Live-KDE-i686-20-1.iso.txt -deleted file mode 100644 -index 3c12552..0000000 ---- a/tests/isodata/fedora/fedora20/Fedora-Live-KDE-i686-20-1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-Live-KDE-i686-20-1 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 458566 --El Torito VD version 1 found, boot catalog is in sector 36 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 25 37 -diff --git a/tests/isodata/fedora/fedora20/Fedora-Live-KDE-x86_64-20-1.iso.txt b/tests/isodata/fedora/fedora20/Fedora-Live-KDE-x86_64-20-1.iso.txt -deleted file mode 100644 -index 5f42220..0000000 ---- a/tests/isodata/fedora/fedora20/Fedora-Live-KDE-x86_64-20-1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-Live-KDE-x86_64-20-1 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 474711 --El Torito VD version 1 found, boot catalog is in sector 42 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 9FF 2559 -diff --git a/tests/isodata/fedora/fedora21/Fedora-Cloud-netinst-i386-21.iso.txt b/tests/isodata/fedora/fedora21/Fedora-Cloud-netinst-i386-21.iso.txt -deleted file mode 100644 -index 0d1d5d1..0000000 ---- a/tests/isodata/fedora/fedora21/Fedora-Cloud-netinst-i386-21.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-C-21-i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 246918 --El Torito VD version 1 found, boot catalog is in sector 41 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 5162 20834 -diff --git a/tests/isodata/fedora/fedora21/Fedora-Cloud-netinst-x86_64-21.iso.txt b/tests/isodata/fedora/fedora21/Fedora-Cloud-netinst-x86_64-21.iso.txt -deleted file mode 100644 -index 11ccbd9..0000000 ---- a/tests/isodata/fedora/fedora21/Fedora-Cloud-netinst-x86_64-21.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-C-21-x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 216905 --El Torito VD version 1 found, boot catalog is in sector 47 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 53AD 21421 -diff --git a/tests/isodata/fedora/fedora21/Fedora-Live-Workstation-i686-21-5.iso.txt b/tests/isodata/fedora/fedora21/Fedora-Live-Workstation-i686-21-5.iso.txt -deleted file mode 100644 -index f52683f..0000000 ---- a/tests/isodata/fedora/fedora21/Fedora-Live-Workstation-i686-21-5.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-Live-WS-i686-21-5 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 652313 --El Torito VD version 1 found, boot catalog is in sector 36 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 25 37 -diff --git a/tests/isodata/fedora/fedora21/Fedora-Live-Workstation-x86_64-21-5.iso.txt b/tests/isodata/fedora/fedora21/Fedora-Live-Workstation-x86_64-21-5.iso.txt -deleted file mode 100644 -index ae7cb2e..0000000 ---- a/tests/isodata/fedora/fedora21/Fedora-Live-Workstation-x86_64-21-5.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-Live-WS-x86_64-21-5 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 718507 --El Torito VD version 1 found, boot catalog is in sector 42 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff A11 2577 -diff --git a/tests/isodata/fedora/fedora21/Fedora-Server-DVD-i386-21.iso.txt b/tests/isodata/fedora/fedora21/Fedora-Server-DVD-i386-21.iso.txt -deleted file mode 100644 -index f1717cc..0000000 ---- a/tests/isodata/fedora/fedora21/Fedora-Server-DVD-i386-21.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-S-21-i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1051499 --El Torito VD version 1 found, boot catalog is in sector 435 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1B4 436 -diff --git a/tests/isodata/fedora/fedora21/Fedora-Server-DVD-x86_64-21.iso.txt b/tests/isodata/fedora/fedora21/Fedora-Server-DVD-x86_64-21.iso.txt -deleted file mode 100644 -index 4c1cbfd..0000000 ---- a/tests/isodata/fedora/fedora21/Fedora-Server-DVD-x86_64-21.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-S-21-x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 999666 --El Torito VD version 1 found, boot catalog is in sector 446 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1BF 447 -diff --git a/tests/isodata/fedora/fedora21/Fedora-Server-netinst-i386-21.iso.txt b/tests/isodata/fedora/fedora21/Fedora-Server-netinst-i386-21.iso.txt -deleted file mode 100644 -index f4df422..0000000 ---- a/tests/isodata/fedora/fedora21/Fedora-Server-netinst-i386-21.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-S-21-i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 246779 --El Torito VD version 1 found, boot catalog is in sector 41 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 5162 20834 -diff --git a/tests/isodata/fedora/fedora21/Fedora-Server-netinst-x86_64-21.iso.txt b/tests/isodata/fedora/fedora21/Fedora-Server-netinst-x86_64-21.iso.txt -deleted file mode 100644 -index 04add7e..0000000 ---- a/tests/isodata/fedora/fedora21/Fedora-Server-netinst-x86_64-21.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-S-21-x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 216830 --El Torito VD version 1 found, boot catalog is in sector 47 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 53AD 21421 -diff --git a/tests/isodata/fedora/fedora22/Fedora-Live-Workstation-i686-22-3.iso.txt b/tests/isodata/fedora/fedora22/Fedora-Live-Workstation-i686-22-3.iso.txt -deleted file mode 100644 -index 926a70f..0000000 ---- a/tests/isodata/fedora/fedora22/Fedora-Live-Workstation-i686-22-3.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-Live-WS-i686-22-3 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 682774 --El Torito VD version 1 found, boot catalog is in sector 36 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 25 37 -diff --git a/tests/isodata/fedora/fedora22/Fedora-Live-Workstation-x86_64-22-3.iso.txt b/tests/isodata/fedora/fedora22/Fedora-Live-Workstation-x86_64-22-3.iso.txt -deleted file mode 100644 -index d0dd2c8..0000000 ---- a/tests/isodata/fedora/fedora22/Fedora-Live-Workstation-x86_64-22-3.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-Live-WS-x86_64-22-3 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 698586 --El Torito VD version 1 found, boot catalog is in sector 42 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff A11 2577 -diff --git a/tests/isodata/fedora/fedora22/Fedora-Server-DVD-i386-22.iso.txt b/tests/isodata/fedora/fedora22/Fedora-Server-DVD-i386-22.iso.txt -deleted file mode 100644 -index af40ca2..0000000 ---- a/tests/isodata/fedora/fedora22/Fedora-Server-DVD-i386-22.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-22-i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1140124 --El Torito VD version 1 found, boot catalog is in sector 434 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1B3 435 -diff --git a/tests/isodata/fedora/fedora22/Fedora-Server-DVD-x86_64-22.iso.txt b/tests/isodata/fedora/fedora22/Fedora-Server-DVD-x86_64-22.iso.txt -deleted file mode 100644 -index 2d554e0..0000000 ---- a/tests/isodata/fedora/fedora22/Fedora-Server-DVD-x86_64-22.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-22-x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1082466 --El Torito VD version 1 found, boot catalog is in sector 447 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1C0 448 -diff --git a/tests/isodata/fedora/fedora22/Fedora-Server-netinst-i386-22.iso.txt b/tests/isodata/fedora/fedora22/Fedora-Server-netinst-i386-22.iso.txt -deleted file mode 100644 -index b9ec76d..0000000 ---- a/tests/isodata/fedora/fedora22/Fedora-Server-netinst-i386-22.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-22-i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 260984 --El Torito VD version 1 found, boot catalog is in sector 41 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 5320 21280 -diff --git a/tests/isodata/fedora/fedora22/Fedora-Server-netinst-x86_64-22.iso.txt b/tests/isodata/fedora/fedora22/Fedora-Server-netinst-x86_64-22.iso.txt -deleted file mode 100644 -index 8c79fe6..0000000 ---- a/tests/isodata/fedora/fedora22/Fedora-Server-netinst-x86_64-22.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-22-x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 228877 --El Torito VD version 1 found, boot catalog is in sector 47 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 5552 21842 -diff --git a/tests/isodata/fedora/fedora22/Fedora-Workstation-netinst-i386-22.iso.txt b/tests/isodata/fedora/fedora22/Fedora-Workstation-netinst-i386-22.iso.txt -deleted file mode 100644 -index d7955f8..0000000 ---- a/tests/isodata/fedora/fedora22/Fedora-Workstation-netinst-i386-22.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-22-i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 260997 --El Torito VD version 1 found, boot catalog is in sector 41 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 5320 21280 -diff --git a/tests/isodata/fedora/fedora22/Fedora-Workstation-netinst-x86_64-22.iso.txt b/tests/isodata/fedora/fedora22/Fedora-Workstation-netinst-x86_64-22.iso.txt -deleted file mode 100644 -index 0952ef5..0000000 ---- a/tests/isodata/fedora/fedora22/Fedora-Workstation-netinst-x86_64-22.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-22-x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 228853 --El Torito VD version 1 found, boot catalog is in sector 47 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 5553 21843 -diff --git a/tests/isodata/fedora/fedora23/Fedora-Live-Workstation-i686-23_Beta-1.iso.txt b/tests/isodata/fedora/fedora23/Fedora-Live-Workstation-i686-23_Beta-1.iso.txt -deleted file mode 100644 -index 00240d9..0000000 ---- a/tests/isodata/fedora/fedora23/Fedora-Live-Workstation-i686-23_Beta-1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-Live-WS-i686-23_B-1 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 709990 --El Torito VD version 1 found, boot catalog is in sector 36 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 25 37 -diff --git a/tests/isodata/fedora/fedora23/Fedora-Live-Workstation-x86_64-23_Beta-1.iso.txt b/tests/isodata/fedora/fedora23/Fedora-Live-Workstation-x86_64-23_Beta-1.iso.txt -deleted file mode 100644 -index 5880a32..0000000 ---- a/tests/isodata/fedora/fedora23/Fedora-Live-Workstation-x86_64-23_Beta-1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-Live-WS-x86_64-23_B-1 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 716965 --El Torito VD version 1 found, boot catalog is in sector 42 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 842 2114 -diff --git a/tests/isodata/fedora/fedora23/Fedora-Server-DVD-i386-23.iso.txt b/tests/isodata/fedora/fedora23/Fedora-Server-DVD-i386-23.iso.txt -deleted file mode 100644 -index 27eabb4..0000000 ---- a/tests/isodata/fedora/fedora23/Fedora-Server-DVD-i386-23.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-S-23-i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1101015 --El Torito VD version 1 found, boot catalog is in sector 404 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 195 405 -diff --git a/tests/isodata/fedora/fedora23/Fedora-Server-DVD-x86_64-23.iso.txt b/tests/isodata/fedora/fedora23/Fedora-Server-DVD-x86_64-23.iso.txt -deleted file mode 100644 -index 136c323..0000000 ---- a/tests/isodata/fedora/fedora23/Fedora-Server-DVD-x86_64-23.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-S-23-x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1049359 --El Torito VD version 1 found, boot catalog is in sector 417 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 3651 13905 -diff --git a/tests/isodata/fedora/fedora23/Fedora-Server-netinst-i386-23.iso.txt b/tests/isodata/fedora/fedora23/Fedora-Server-netinst-i386-23.iso.txt -deleted file mode 100644 -index f7a14cd..0000000 ---- a/tests/isodata/fedora/fedora23/Fedora-Server-netinst-i386-23.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-S-23-i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 234159 --El Torito VD version 1 found, boot catalog is in sector 38 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 390FA 233722 -diff --git a/tests/isodata/fedora/fedora23/Fedora-Server-netinst-x86_64-23.iso.txt b/tests/isodata/fedora/fedora23/Fedora-Server-netinst-x86_64-23.iso.txt -deleted file mode 100644 -index 22e13fd..0000000 ---- a/tests/isodata/fedora/fedora23/Fedora-Server-netinst-x86_64-23.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-S-23-x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 212441 --El Torito VD version 1 found, boot catalog is in sector 44 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 3329D 209565 -diff --git a/tests/isodata/fedora/fedora23/Fedora-Workstation-netinst-i386-23_Beta.iso.txt b/tests/isodata/fedora/fedora23/Fedora-Workstation-netinst-i386-23_Beta.iso.txt -deleted file mode 100644 -index 3767783..0000000 ---- a/tests/isodata/fedora/fedora23/Fedora-Workstation-netinst-i386-23_Beta.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-WS-23_B-i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 281215 --El Torito VD version 1 found, boot catalog is in sector 39 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 448C9 280777 -diff --git a/tests/isodata/fedora/fedora23/Fedora-Workstation-netinst-x86_64-23_Beta.iso.txt b/tests/isodata/fedora/fedora23/Fedora-Workstation-netinst-x86_64-23_Beta.iso.txt -deleted file mode 100644 -index bf6053e..0000000 ---- a/tests/isodata/fedora/fedora23/Fedora-Workstation-netinst-x86_64-23_Beta.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-WS-23_B-x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 238732 --El Torito VD version 1 found, boot catalog is in sector 45 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 3994F 235855 -diff --git a/tests/isodata/fedora/fedora24/Fedora-Server-dvd-i386-24-1.2.iso.txt b/tests/isodata/fedora/fedora24/Fedora-Server-dvd-i386-24-1.2.iso.txt -deleted file mode 100644 -index d7708f4..0000000 ---- a/tests/isodata/fedora/fedora24/Fedora-Server-dvd-i386-24-1.2.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-S-dvd-i386-24 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 970905 --El Torito VD version 1 found, boot catalog is in sector 401 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 3D5D2 251346 -diff --git a/tests/isodata/fedora/fedora24/Fedora-Server-dvd-x86_64-24-1.2.iso.txt b/tests/isodata/fedora/fedora24/Fedora-Server-dvd-x86_64-24-1.2.iso.txt -deleted file mode 100644 -index c938171..0000000 ---- a/tests/isodata/fedora/fedora24/Fedora-Server-dvd-x86_64-24-1.2.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-S-dvd-x86_64-24 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 912095 --El Torito VD version 1 found, boot catalog is in sector 414 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 37086 225414 -diff --git a/tests/isodata/fedora/fedora24/Fedora-Server-netinst-i386-24-1.2.iso.txt b/tests/isodata/fedora/fedora24/Fedora-Server-netinst-i386-24-1.2.iso.txt -deleted file mode 100644 -index c853530..0000000 ---- a/tests/isodata/fedora/fedora24/Fedora-Server-netinst-i386-24-1.2.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-S-dvd-i386-24 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 251413 --El Torito VD version 1 found, boot catalog is in sector 38 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 3D461 250977 -diff --git a/tests/isodata/fedora/fedora24/Fedora-Server-netinst-x86_64-24-1.2.iso.txt b/tests/isodata/fedora/fedora24/Fedora-Server-netinst-x86_64-24-1.2.iso.txt -deleted file mode 100644 -index 5f34a49..0000000 ---- a/tests/isodata/fedora/fedora24/Fedora-Server-netinst-x86_64-24-1.2.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-S-dvd-x86_64-24 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 225474 --El Torito VD version 1 found, boot catalog is in sector 44 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 365AA 222634 -diff --git a/tests/isodata/fedora/fedora24/Fedora-Workstation-Live-i386-24-1.2.iso.txt b/tests/isodata/fedora/fedora24/Fedora-Workstation-Live-i386-24-1.2.iso.txt -deleted file mode 100644 -index afc9d07..0000000 ---- a/tests/isodata/fedora/fedora24/Fedora-Workstation-Live-i386-24-1.2.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-WS-Live-24-1-2 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 818269 --El Torito VD version 1 found, boot catalog is in sector 40 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 491B 18715 -diff --git a/tests/isodata/fedora/fedora24/Fedora-Workstation-Live-x86_64-24-1.2.iso.txt b/tests/isodata/fedora/fedora24/Fedora-Workstation-Live-x86_64-24-1.2.iso.txt -deleted file mode 100644 -index 7bef173..0000000 ---- a/tests/isodata/fedora/fedora24/Fedora-Workstation-Live-x86_64-24-1.2.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-WS-Live-24-1-2 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 752441 --El Torito VD version 1 found, boot catalog is in sector 46 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 4A6F 19055 -diff --git a/tests/isodata/fedora/fedora24/Fedora-Workstation-netinst-i386-24-1.2.iso.txt b/tests/isodata/fedora/fedora24/Fedora-Workstation-netinst-i386-24-1.2.iso.txt -deleted file mode 100644 -index 20bb887..0000000 ---- a/tests/isodata/fedora/fedora24/Fedora-Workstation-netinst-i386-24-1.2.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-WS-dvd-i386-24 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 250464 --El Torito VD version 1 found, boot catalog is in sector 38 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 3D0AC 250028 -diff --git a/tests/isodata/fedora/fedora24/Fedora-Workstation-netinst-x86_64-24-1.2.iso.txt b/tests/isodata/fedora/fedora24/Fedora-Workstation-netinst-x86_64-24-1.2.iso.txt -deleted file mode 100644 -index ecaf52c..0000000 ---- a/tests/isodata/fedora/fedora24/Fedora-Workstation-netinst-x86_64-24-1.2.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-WS-dvd-x86_64-24 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 224603 --El Torito VD version 1 found, boot catalog is in sector 44 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 36243 221763 -diff --git a/tests/isodata/fedora/fedora25/Fedora-Server-dvd-i386-25-1.3.iso.txt b/tests/isodata/fedora/fedora25/Fedora-Server-dvd-i386-25-1.3.iso.txt -deleted file mode 100644 -index 02c379a..0000000 ---- a/tests/isodata/fedora/fedora25/Fedora-Server-dvd-i386-25-1.3.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-S-dvd-i386-25 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1031760 --El Torito VD version 1 found, boot catalog is in sector 414 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 3A56B 238955 -diff --git a/tests/isodata/fedora/fedora25/Fedora-Server-dvd-x86_64-25-1.3.iso.txt b/tests/isodata/fedora/fedora25/Fedora-Server-dvd-x86_64-25-1.3.iso.txt -deleted file mode 100644 -index 653ea46..0000000 ---- a/tests/isodata/fedora/fedora25/Fedora-Server-dvd-x86_64-25-1.3.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-S-dvd-x86_64-25 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 985545 --El Torito VD version 1 found, boot catalog is in sector 399 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 3C7A8 247720 -diff --git a/tests/isodata/fedora/fedora25/Fedora-Server-netinst-i386-25-1.3.iso.txt b/tests/isodata/fedora/fedora25/Fedora-Server-netinst-i386-25-1.3.iso.txt -deleted file mode 100644 -index bcfee23..0000000 ---- a/tests/isodata/fedora/fedora25/Fedora-Server-netinst-i386-25-1.3.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-S-dvd-i386-25 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 239011 --El Torito VD version 1 found, boot catalog is in sector 38 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 3A3ED 238573 -diff --git a/tests/isodata/fedora/fedora25/Fedora-Server-netinst-x86_64-25-1.3.iso.txt b/tests/isodata/fedora/fedora25/Fedora-Server-netinst-x86_64-25-1.3.iso.txt -deleted file mode 100644 -index 264e73e..0000000 ---- a/tests/isodata/fedora/fedora25/Fedora-Server-netinst-x86_64-25-1.3.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-S-dvd-x86_64-25 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 247797 --El Torito VD version 1 found, boot catalog is in sector 44 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 3BCDB 244955 -diff --git a/tests/isodata/fedora/fedora25/Fedora-Workstation-Live-i386-25-1.3.iso.txt b/tests/isodata/fedora/fedora25/Fedora-Workstation-Live-i386-25-1.3.iso.txt -deleted file mode 100644 -index e160a82..0000000 ---- a/tests/isodata/fedora/fedora25/Fedora-Workstation-Live-i386-25-1.3.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-WS-Live-25-1-3 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 746938 --El Torito VD version 1 found, boot catalog is in sector 40 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 4A00 18944 -diff --git a/tests/isodata/fedora/fedora25/Fedora-Workstation-Live-x86_64-25-1.3.iso.txt b/tests/isodata/fedora/fedora25/Fedora-Workstation-Live-x86_64-25-1.3.iso.txt -deleted file mode 100644 -index 3325283..0000000 ---- a/tests/isodata/fedora/fedora25/Fedora-Workstation-Live-x86_64-25-1.3.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-WS-Live-25-1-3 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 703180 --El Torito VD version 1 found, boot catalog is in sector 46 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 4B74 19316 -diff --git a/tests/isodata/fedora/fedora25/Fedora-Workstation-netinst-i386-25-1.3.iso.txt b/tests/isodata/fedora/fedora25/Fedora-Workstation-netinst-i386-25-1.3.iso.txt -deleted file mode 100644 -index 1782a48..0000000 ---- a/tests/isodata/fedora/fedora25/Fedora-Workstation-netinst-i386-25-1.3.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-WS-dvd-i386-25 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 265946 --El Torito VD version 1 found, boot catalog is in sector 38 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 40D24 265508 -diff --git a/tests/isodata/fedora/fedora25/Fedora-Workstation-netinst-x86_64-25-1.3.iso.txt b/tests/isodata/fedora/fedora25/Fedora-Workstation-netinst-x86_64-25-1.3.iso.txt -deleted file mode 100644 -index a010381..0000000 ---- a/tests/isodata/fedora/fedora25/Fedora-Workstation-netinst-x86_64-25-1.3.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-WS-dvd-x86_64-25 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 237140 --El Torito VD version 1 found, boot catalog is in sector 44 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 3933A 234298 -diff --git a/tests/isodata/fedora/fedora26/Fedora-Server-dvd-x86_64-26-1.5.iso.txt b/tests/isodata/fedora/fedora26/Fedora-Server-dvd-x86_64-26-1.5.iso.txt -deleted file mode 100644 -index 03d3d4d..0000000 ---- a/tests/isodata/fedora/fedora26/Fedora-Server-dvd-x86_64-26-1.5.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-S-dvd-x86_64-26 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1172237 --El Torito VD version 1 found, boot catalog is in sector 483 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 3C7DE 247774 -diff --git a/tests/isodata/fedora/fedora26/Fedora-Server-netinst-x86_64-26-1.5.iso.txt b/tests/isodata/fedora/fedora26/Fedora-Server-netinst-x86_64-26-1.5.iso.txt -deleted file mode 100644 -index 6b00229..0000000 ---- a/tests/isodata/fedora/fedora26/Fedora-Server-netinst-x86_64-26-1.5.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-S-dvd-x86_64-26 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 247765 --El Torito VD version 1 found, boot catalog is in sector 44 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 3BA6E 244334 -diff --git a/tests/isodata/fedora/fedora26/Fedora-Workstation-Live-x86_64-26-1.5.iso.txt b/tests/isodata/fedora/fedora26/Fedora-Workstation-Live-x86_64-26-1.5.iso.txt -deleted file mode 100644 -index 5df6286..0000000 ---- a/tests/isodata/fedora/fedora26/Fedora-Workstation-Live-x86_64-26-1.5.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-WS-Live-26-1-5 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 763281 --El Torito VD version 1 found, boot catalog is in sector 46 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 5748 22344 -diff --git a/tests/isodata/fedora/fedora26/Fedora-Workstation-netinst-x86_64-26-1.5.iso.txt b/tests/isodata/fedora/fedora26/Fedora-Workstation-netinst-x86_64-26-1.5.iso.txt -deleted file mode 100644 -index c3eea05..0000000 ---- a/tests/isodata/fedora/fedora26/Fedora-Workstation-netinst-x86_64-26-1.5.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-WS-dvd-x86_64-26 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 246513 --El Torito VD version 1 found, boot catalog is in sector 44 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 3B58A 243082 -diff --git a/tests/isodata/fedora/fedora27/Fedora-Server-dvd-x86_64-27-1.6.iso.txt b/tests/isodata/fedora/fedora27/Fedora-Server-dvd-x86_64-27-1.6.iso.txt -deleted file mode 100644 -index 0cadc44..0000000 ---- a/tests/isodata/fedora/fedora27/Fedora-Server-dvd-x86_64-27-1.6.iso.txt -+++ /dev/null -@@ -1,34 +0,0 @@ --Setting input-charset to 'UTF-8' from locale. --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-S-dvd-x86_64-27 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1215880 --El Torito VD version 1 found, boot catalog is in sector 495 -- --Joliet with UCS level 3 found. --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'RRIP_1991A' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Cksum AA 55 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 3FC8B 261259 -diff --git a/tests/isodata/fedora/fedora27/Fedora-Server-netinst-x86_64-27-1.6.iso.txt b/tests/isodata/fedora/fedora27/Fedora-Server-netinst-x86_64-27-1.6.iso.txt -deleted file mode 100644 -index ab2d48e..0000000 ---- a/tests/isodata/fedora/fedora27/Fedora-Server-netinst-x86_64-27-1.6.iso.txt -+++ /dev/null -@@ -1,34 +0,0 @@ --Setting input-charset to 'UTF-8' from locale. --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-S-dvd-x86_64-27 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 261239 --El Torito VD version 1 found, boot catalog is in sector 44 -- --Joliet with UCS level 3 found. --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'RRIP_1991A' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Cksum AA 55 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 3EA2A 256554 -diff --git a/tests/isodata/fedora/fedora27/Fedora-Workstation-Live-x86_64-27-1.6.iso.txt b/tests/isodata/fedora/fedora27/Fedora-Workstation-Live-x86_64-27-1.6.iso.txt -deleted file mode 100644 -index 18eff53..0000000 ---- a/tests/isodata/fedora/fedora27/Fedora-Workstation-Live-x86_64-27-1.6.iso.txt -+++ /dev/null -@@ -1,34 +0,0 @@ --Setting input-charset to 'UTF-8' from locale. --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-WS-Live-27-1-6 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 796622 --El Torito VD version 1 found, boot catalog is in sector 46 -- --Joliet with UCS level 3 found. --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'RRIP_1991A' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Cksum AA 55 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 5F13 24339 -diff --git a/tests/isodata/fedora/fedora27/Fedora-Workstation-netinst-x86_64-27-1.6.iso.txt b/tests/isodata/fedora/fedora27/Fedora-Workstation-netinst-x86_64-27-1.6.iso.txt -deleted file mode 100644 -index 5f19c5e..0000000 ---- a/tests/isodata/fedora/fedora27/Fedora-Workstation-netinst-x86_64-27-1.6.iso.txt -+++ /dev/null -@@ -1,34 +0,0 @@ --Setting input-charset to 'UTF-8' from locale. --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-WS-dvd-x86_64-27 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 260042 --El Torito VD version 1 found, boot catalog is in sector 44 -- --Joliet with UCS level 3 found. --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'RRIP_1991A' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Cksum AA 55 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 3E57D 255357 -diff --git a/tests/isodata/fedora/fedora27/Fedora-WorkstationOstree-ostree-x86_64-27-1.6.iso.txt b/tests/isodata/fedora/fedora27/Fedora-WorkstationOstree-ostree-x86_64-27-1.6.iso.txt -deleted file mode 100644 -index df01e50..0000000 ---- a/tests/isodata/fedora/fedora27/Fedora-WorkstationOstree-ostree-x86_64-27-1.6.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-WSOstree-ostree-x86_64-27 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 931544 --El Torito VD version 1 found, boot catalog is in sector 44 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff E248B 926859 -diff --git a/tests/isodata/fedora/fedora28/Fedora-Server-dvd-x86_64-28-1.1.iso.txt b/tests/isodata/fedora/fedora28/Fedora-Server-dvd-x86_64-28-1.1.iso.txt -deleted file mode 100644 -index 5fc55ac..0000000 ---- a/tests/isodata/fedora/fedora28/Fedora-Server-dvd-x86_64-28-1.1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-S-dvd-x86_64-28 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1417496 --El Torito VD version 1 found, boot catalog is in sector 499 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 48C5B 298075 -diff --git a/tests/isodata/fedora/fedora28/Fedora-Server-netinst-x86_64-28-1.1.iso.txt b/tests/isodata/fedora/fedora28/Fedora-Server-netinst-x86_64-28-1.1.iso.txt -deleted file mode 100644 -index bbfbe82..0000000 ---- a/tests/isodata/fedora/fedora28/Fedora-Server-netinst-x86_64-28-1.1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-S-dvd-x86_64-28 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 298051 --El Torito VD version 1 found, boot catalog is in sector 44 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 47957 293207 -diff --git a/tests/isodata/fedora/fedora28/Fedora-Workstation-Live-x86_64-28-1.1.iso.txt b/tests/isodata/fedora/fedora28/Fedora-Workstation-Live-x86_64-28-1.1.iso.txt -deleted file mode 100644 -index aed5d0b..0000000 ---- a/tests/isodata/fedora/fedora28/Fedora-Workstation-Live-x86_64-28-1.1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-WS-Live-28-1-1 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 872512 --El Torito VD version 1 found, boot catalog is in sector 46 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 6434 25652 -diff --git a/tests/isodata/fedora/fedora29/Fedora-Everything-netinst-x86_64-29-1.2.iso.txt b/tests/isodata/fedora/fedora29/Fedora-Everything-netinst-x86_64-29-1.2.iso.txt -deleted file mode 100644 -index 13f45a3..0000000 ---- a/tests/isodata/fedora/fedora29/Fedora-Everything-netinst-x86_64-29-1.2.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-E-dvd-x86_64-29 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 303211 --El Torito VD version 1 found, boot catalog is in sector 44 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 48C39 298041 -diff --git a/tests/isodata/fedora/fedora29/Fedora-Server-dvd-x86_64-29-1.2.iso.txt b/tests/isodata/fedora/fedora29/Fedora-Server-dvd-x86_64-29-1.2.iso.txt -deleted file mode 100644 -index da7e85e..0000000 ---- a/tests/isodata/fedora/fedora29/Fedora-Server-dvd-x86_64-29-1.2.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-S-dvd-x86_64-29 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1524465 --El Torito VD version 1 found, boot catalog is in sector 519 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 4A124 303396 -diff --git a/tests/isodata/fedora/fedora29/Fedora-Server-netinst-x86_64-29-1.2.iso.txt b/tests/isodata/fedora/fedora29/Fedora-Server-netinst-x86_64-29-1.2.iso.txt -deleted file mode 100644 -index 43996bb..0000000 ---- a/tests/isodata/fedora/fedora29/Fedora-Server-netinst-x86_64-29-1.2.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-S-dvd-x86_64-29 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 303352 --El Torito VD version 1 found, boot catalog is in sector 44 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 48CC6 298182 -diff --git a/tests/isodata/fedora/fedora29/Fedora-Workstation-netinst-x86_64-29-1.2.iso.txt b/tests/isodata/fedora/fedora29/Fedora-Workstation-netinst-x86_64-29-1.2.iso.txt -deleted file mode 100644 -index 1876cee..0000000 ---- a/tests/isodata/fedora/fedora29/Fedora-Workstation-netinst-x86_64-29-1.2.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-WS-dvd-x86_64-29 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 303405 --El Torito VD version 1 found, boot catalog is in sector 44 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 48CFB 298235 -diff --git a/tests/isodata/fedora/fedora3/FC3-i386-DVD.iso.txt b/tests/isodata/fedora/fedora3/FC3-i386-DVD.iso.txt -deleted file mode 100644 -index 1a94ef8..0000000 ---- a/tests/isodata/fedora/fedora3/FC3-i386-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC/3 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: FC/3 i386 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1204302 --El Torito VD version 1 found, boot catalog is in sector 244 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff F5 245 -diff --git a/tests/isodata/fedora/fedora3/FC3-i386-disc1.iso.txt b/tests/isodata/fedora/fedora3/FC3-i386-disc1.iso.txt -deleted file mode 100644 -index 1366c5d..0000000 ---- a/tests/isodata/fedora/fedora3/FC3-i386-disc1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC/3 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: FC/3 i386 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 315912 --El Torito VD version 1 found, boot catalog is in sector 109 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 6E 110 -diff --git a/tests/isodata/fedora/fedora3/FC3-i386-disc2.iso.txt b/tests/isodata/fedora/fedora3/FC3-i386-disc2.iso.txt -deleted file mode 100644 -index d8160f3..0000000 ---- a/tests/isodata/fedora/fedora3/FC3-i386-disc2.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC/3 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: FC/3 i386 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 326426 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora3/FC3-i386-disc3.iso.txt b/tests/isodata/fedora/fedora3/FC3-i386-disc3.iso.txt -deleted file mode 100644 -index b509588..0000000 ---- a/tests/isodata/fedora/fedora3/FC3-i386-disc3.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC/3 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: FC/3 i386 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 325927 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora3/FC3-i386-disc4.iso.txt b/tests/isodata/fedora/fedora3/FC3-i386-disc4.iso.txt -deleted file mode 100644 -index c291e3f..0000000 ---- a/tests/isodata/fedora/fedora3/FC3-i386-disc4.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC/3 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: FC/3 i386 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 197639 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora3/FC3-x86_64-DVD.iso.txt b/tests/isodata/fedora/fedora3/FC3-x86_64-DVD.iso.txt -deleted file mode 100644 -index 40e7b4f..0000000 ---- a/tests/isodata/fedora/fedora3/FC3-x86_64-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC/3 x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: FC/3 x86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1288705 --El Torito VD version 1 found, boot catalog is in sector 276 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 115 277 -diff --git a/tests/isodata/fedora/fedora3/FC3-x86_64-disc1.iso.txt b/tests/isodata/fedora/fedora3/FC3-x86_64-disc1.iso.txt -deleted file mode 100644 -index 9c04437..0000000 ---- a/tests/isodata/fedora/fedora3/FC3-x86_64-disc1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC/3 x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: FC/3 x86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 326239 --El Torito VD version 1 found, boot catalog is in sector 123 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 7C 124 -diff --git a/tests/isodata/fedora/fedora3/FC3-x86_64-disc2.iso.txt b/tests/isodata/fedora/fedora3/FC3-x86_64-disc2.iso.txt -deleted file mode 100644 -index b40a2b1..0000000 ---- a/tests/isodata/fedora/fedora3/FC3-x86_64-disc2.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC/3 x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: FC/3 x86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 326722 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora3/FC3-x86_64-disc3.iso.txt b/tests/isodata/fedora/fedora3/FC3-x86_64-disc3.iso.txt -deleted file mode 100644 -index 0b41992..0000000 ---- a/tests/isodata/fedora/fedora3/FC3-x86_64-disc3.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC/3 x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: FC/3 x86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 326378 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora3/FC3-x86_64-disc4.iso.txt b/tests/isodata/fedora/fedora3/FC3-x86_64-disc4.iso.txt -deleted file mode 100644 -index d44971b..0000000 ---- a/tests/isodata/fedora/fedora3/FC3-x86_64-disc4.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC/3 x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: FC/3 x86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 309986 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora4/FC4-i386-DVD.iso.txt b/tests/isodata/fedora/fedora4/FC4-i386-DVD.iso.txt -deleted file mode 100644 -index b250e78..0000000 ---- a/tests/isodata/fedora/fedora4/FC4-i386-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC/4 i386 DVD #9 --Volume set id: --Publisher id: --Data preparer id: --Application id: FC/4 i386 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1343058 --El Torito VD version 1 found, boot catalog is in sector 270 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 10F 271 -diff --git a/tests/isodata/fedora/fedora4/FC4-i386-disc1.iso.txt b/tests/isodata/fedora/fedora4/FC4-i386-disc1.iso.txt -deleted file mode 100644 -index c48dbe1..0000000 ---- a/tests/isodata/fedora/fedora4/FC4-i386-disc1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC/4 i386 ftp #1 --Volume set id: --Publisher id: --Data preparer id: --Application id: FC/4 i386 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 324919 --El Torito VD version 1 found, boot catalog is in sector 113 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 72 114 -diff --git a/tests/isodata/fedora/fedora4/FC4-i386-disc2.iso.txt b/tests/isodata/fedora/fedora4/FC4-i386-disc2.iso.txt -deleted file mode 100644 -index 59d3f4f..0000000 ---- a/tests/isodata/fedora/fedora4/FC4-i386-disc2.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC/4 i386 ftp #2 --Volume set id: --Publisher id: --Data preparer id: --Application id: FC/4 i386 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 326518 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora4/FC4-i386-disc3.iso.txt b/tests/isodata/fedora/fedora4/FC4-i386-disc3.iso.txt -deleted file mode 100644 -index b17cb2c..0000000 ---- a/tests/isodata/fedora/fedora4/FC4-i386-disc3.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC/4 i386 ftp #3 --Volume set id: --Publisher id: --Data preparer id: --Application id: FC/4 i386 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 326638 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora4/FC4-i386-disc4.iso.txt b/tests/isodata/fedora/fedora4/FC4-i386-disc4.iso.txt -deleted file mode 100644 -index f7b6586..0000000 ---- a/tests/isodata/fedora/fedora4/FC4-i386-disc4.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC/4 i386 ftp #4 --Volume set id: --Publisher id: --Data preparer id: --Application id: FC/4 i386 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 322516 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora4/FC4-ppc-DVD.iso.txt b/tests/isodata/fedora/fedora4/FC4-ppc-DVD.iso.txt -deleted file mode 100644 -index 65177eb..0000000 ---- a/tests/isodata/fedora/fedora4/FC4-ppc-DVD.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: PPC --Volume id: RED_HAT --Volume set id: 4 --Publisher id: --Data preparer id: --Application id: FC/4 ppc --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1509126 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora4/FC4-ppc-disc1.iso.txt b/tests/isodata/fedora/fedora4/FC4-ppc-disc1.iso.txt -deleted file mode 100644 -index 386df63..0000000 ---- a/tests/isodata/fedora/fedora4/FC4-ppc-disc1.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: PPC --Volume id: RED_HAT --Volume set id: 4 --Publisher id: --Data preparer id: --Application id: FC/4 ppc --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 323115 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora4/FC4-ppc-disc2.iso.txt b/tests/isodata/fedora/fedora4/FC4-ppc-disc2.iso.txt -deleted file mode 100644 -index 91d887c..0000000 ---- a/tests/isodata/fedora/fedora4/FC4-ppc-disc2.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RED_HAT --Volume set id: --Publisher id: --Data preparer id: --Application id: FC/4 ppc --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 313641 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora4/FC4-ppc-disc3.iso.txt b/tests/isodata/fedora/fedora4/FC4-ppc-disc3.iso.txt -deleted file mode 100644 -index 662ab40..0000000 ---- a/tests/isodata/fedora/fedora4/FC4-ppc-disc3.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RED_HAT --Volume set id: --Publisher id: --Data preparer id: --Application id: FC/4 ppc --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 300206 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora4/FC4-ppc-disc4.iso.txt b/tests/isodata/fedora/fedora4/FC4-ppc-disc4.iso.txt -deleted file mode 100644 -index 5c1f468..0000000 ---- a/tests/isodata/fedora/fedora4/FC4-ppc-disc4.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RED_HAT --Volume set id: --Publisher id: --Data preparer id: --Application id: FC/4 ppc --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 323665 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora4/FC4-ppc-disc5.iso.txt b/tests/isodata/fedora/fedora4/FC4-ppc-disc5.iso.txt -deleted file mode 100644 -index 417df5b..0000000 ---- a/tests/isodata/fedora/fedora4/FC4-ppc-disc5.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RED_HAT --Volume set id: --Publisher id: --Data preparer id: --Application id: FC/4 ppc --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 225903 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora4/FC4-x86_64-DVD.iso.txt b/tests/isodata/fedora/fedora4/FC4-x86_64-DVD.iso.txt -deleted file mode 100644 -index e77a5e3..0000000 ---- a/tests/isodata/fedora/fedora4/FC4-x86_64-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC/4 x86_64 DVD #9 --Volume set id: --Publisher id: --Data preparer id: --Application id: FC/4 x86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1432056 --El Torito VD version 1 found, boot catalog is in sector 294 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 127 295 -diff --git a/tests/isodata/fedora/fedora4/FC4-x86_64-disc1.iso.txt b/tests/isodata/fedora/fedora4/FC4-x86_64-disc1.iso.txt -deleted file mode 100644 -index e4c2041..0000000 ---- a/tests/isodata/fedora/fedora4/FC4-x86_64-disc1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC/4 x86_64 ftp #1 --Volume set id: --Publisher id: --Data preparer id: --Application id: FC/4 x86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 326257 --El Torito VD version 1 found, boot catalog is in sector 125 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 7E 126 -diff --git a/tests/isodata/fedora/fedora4/FC4-x86_64-disc2.iso.txt b/tests/isodata/fedora/fedora4/FC4-x86_64-disc2.iso.txt -deleted file mode 100644 -index 02a649d..0000000 ---- a/tests/isodata/fedora/fedora4/FC4-x86_64-disc2.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC/4 x86_64 ftp #2 --Volume set id: --Publisher id: --Data preparer id: --Application id: FC/4 x86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 325634 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora4/FC4-x86_64-disc3.iso.txt b/tests/isodata/fedora/fedora4/FC4-x86_64-disc3.iso.txt -deleted file mode 100644 -index f37b53b..0000000 ---- a/tests/isodata/fedora/fedora4/FC4-x86_64-disc3.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC/4 x86_64 ftp #3 --Volume set id: --Publisher id: --Data preparer id: --Application id: FC/4 x86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 326884 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora4/FC4-x86_64-disc4.iso.txt b/tests/isodata/fedora/fedora4/FC4-x86_64-disc4.iso.txt -deleted file mode 100644 -index e0729a8..0000000 ---- a/tests/isodata/fedora/fedora4/FC4-x86_64-disc4.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC/4 x86_64 ftp #4 --Volume set id: --Publisher id: --Data preparer id: --Application id: FC/4 x86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 325736 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora4/FC4-x86_64-disc5.iso.txt b/tests/isodata/fedora/fedora4/FC4-x86_64-disc5.iso.txt -deleted file mode 100644 -index 53eabf1..0000000 ---- a/tests/isodata/fedora/fedora4/FC4-x86_64-disc5.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC/4 x86_64 ftp #5 --Volume set id: --Publisher id: --Data preparer id: --Application id: FC/4 x86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 84868 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora5/FC-5-i386-DVD.iso.txt b/tests/isodata/fedora/fedora5/FC-5-i386-DVD.iso.txt -deleted file mode 100644 -index 9bd5cca..0000000 ---- a/tests/isodata/fedora/fedora5/FC-5-i386-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC/5 i386 --Volume set id: FC/5 i386 --Publisher id: --Data preparer id: --Application id: FC/5 i386 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1588706 --El Torito VD version 1 found, boot catalog is in sector 352 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 161 353 -diff --git a/tests/isodata/fedora/fedora5/FC-5-i386-disc1.iso.txt b/tests/isodata/fedora/fedora5/FC-5-i386-disc1.iso.txt -deleted file mode 100644 -index 1500898..0000000 ---- a/tests/isodata/fedora/fedora5/FC-5-i386-disc1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC/5 i386 --Volume set id: FC/5 i386 --Publisher id: --Data preparer id: --Application id: FC/5 i386 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 335564 --El Torito VD version 1 found, boot catalog is in sector 140 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 8D 141 -diff --git a/tests/isodata/fedora/fedora5/FC-5-i386-disc2.iso.txt b/tests/isodata/fedora/fedora5/FC-5-i386-disc2.iso.txt -deleted file mode 100644 -index 1774b72..0000000 ---- a/tests/isodata/fedora/fedora5/FC-5-i386-disc2.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC/5 i386 --Volume set id: FC/5 i386 --Publisher id: --Data preparer id: --Application id: FC/5 i386 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 342099 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora5/FC-5-i386-disc3.iso.txt b/tests/isodata/fedora/fedora5/FC-5-i386-disc3.iso.txt -deleted file mode 100644 -index 23b94dd..0000000 ---- a/tests/isodata/fedora/fedora5/FC-5-i386-disc3.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC/5 i386 --Volume set id: FC/5 i386 --Publisher id: --Data preparer id: --Application id: FC/5 i386 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 352059 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora5/FC-5-i386-disc4.iso.txt b/tests/isodata/fedora/fedora5/FC-5-i386-disc4.iso.txt -deleted file mode 100644 -index 0ef9c82..0000000 ---- a/tests/isodata/fedora/fedora5/FC-5-i386-disc4.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC/5 i386 --Volume set id: FC/5 i386 --Publisher id: --Data preparer id: --Application id: FC/5 i386 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 352007 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora5/FC-5-i386-disc5.iso.txt b/tests/isodata/fedora/fedora5/FC-5-i386-disc5.iso.txt -deleted file mode 100644 -index 9a18211..0000000 ---- a/tests/isodata/fedora/fedora5/FC-5-i386-disc5.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC/5 i386 --Volume set id: FC/5 i386 --Publisher id: --Data preparer id: --Application id: FC/5 i386 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 189333 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora5/FC-5-ppc-DVD.iso.txt b/tests/isodata/fedora/fedora5/FC-5-ppc-DVD.iso.txt -deleted file mode 100644 -index 2733ac0..0000000 ---- a/tests/isodata/fedora/fedora5/FC-5-ppc-DVD.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: PPC --Volume id: FEDORA --Volume set id: FC/5 ppc --Publisher id: --Data preparer id: --Application id: FC/5 ppc --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1772970 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora5/FC-5-ppc-disc1.iso.txt b/tests/isodata/fedora/fedora5/FC-5-ppc-disc1.iso.txt -deleted file mode 100644 -index 9517bd3..0000000 ---- a/tests/isodata/fedora/fedora5/FC-5-ppc-disc1.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: PPC --Volume id: FEDORA --Volume set id: FC/5 ppc --Publisher id: --Data preparer id: --Application id: FC/5 ppc --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 339384 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora5/FC-5-ppc-disc2.iso.txt b/tests/isodata/fedora/fedora5/FC-5-ppc-disc2.iso.txt -deleted file mode 100644 -index 5dfe50d..0000000 ---- a/tests/isodata/fedora/fedora5/FC-5-ppc-disc2.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FEDORA --Volume set id: FC/5 ppc --Publisher id: --Data preparer id: --Application id: FC/5 ppc --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 351241 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora5/FC-5-ppc-disc3.iso.txt b/tests/isodata/fedora/fedora5/FC-5-ppc-disc3.iso.txt -deleted file mode 100644 -index fb0ee39..0000000 ---- a/tests/isodata/fedora/fedora5/FC-5-ppc-disc3.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FEDORA --Volume set id: FC/5 ppc --Publisher id: --Data preparer id: --Application id: FC/5 ppc --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 351296 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora5/FC-5-ppc-disc4.iso.txt b/tests/isodata/fedora/fedora5/FC-5-ppc-disc4.iso.txt -deleted file mode 100644 -index a083826..0000000 ---- a/tests/isodata/fedora/fedora5/FC-5-ppc-disc4.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FEDORA --Volume set id: FC/5 ppc --Publisher id: --Data preparer id: --Application id: FC/5 ppc --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 351836 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora5/FC-5-ppc-disc5.iso.txt b/tests/isodata/fedora/fedora5/FC-5-ppc-disc5.iso.txt -deleted file mode 100644 -index 81e89c6..0000000 ---- a/tests/isodata/fedora/fedora5/FC-5-ppc-disc5.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FEDORA --Volume set id: FC/5 ppc --Publisher id: --Data preparer id: --Application id: FC/5 ppc --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 335349 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora5/FC-5-x86_64-DVD.iso.txt b/tests/isodata/fedora/fedora5/FC-5-x86_64-DVD.iso.txt -deleted file mode 100644 -index a92302a..0000000 ---- a/tests/isodata/fedora/fedora5/FC-5-x86_64-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC/5 x86_64 --Volume set id: FC/5 x86_64 --Publisher id: --Data preparer id: --Application id: FC/5 x86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1690737 --El Torito VD version 1 found, boot catalog is in sector 384 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 181 385 -diff --git a/tests/isodata/fedora/fedora5/FC-5-x86_64-disc1.iso.txt b/tests/isodata/fedora/fedora5/FC-5-x86_64-disc1.iso.txt -deleted file mode 100644 -index 2209ede..0000000 ---- a/tests/isodata/fedora/fedora5/FC-5-x86_64-disc1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC/5 x86_64 --Volume set id: FC/5 x86_64 --Publisher id: --Data preparer id: --Application id: FC/5 x86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 326642 --El Torito VD version 1 found, boot catalog is in sector 156 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 9D 157 -diff --git a/tests/isodata/fedora/fedora5/FC-5-x86_64-disc2.iso.txt b/tests/isodata/fedora/fedora5/FC-5-x86_64-disc2.iso.txt -deleted file mode 100644 -index 91022a7..0000000 ---- a/tests/isodata/fedora/fedora5/FC-5-x86_64-disc2.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC/5 x86_64 --Volume set id: FC/5 x86_64 --Publisher id: --Data preparer id: --Application id: FC/5 x86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 350617 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora5/FC-5-x86_64-disc3.iso.txt b/tests/isodata/fedora/fedora5/FC-5-x86_64-disc3.iso.txt -deleted file mode 100644 -index 9418dc5..0000000 ---- a/tests/isodata/fedora/fedora5/FC-5-x86_64-disc3.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC/5 x86_64 --Volume set id: FC/5 x86_64 --Publisher id: --Data preparer id: --Application id: FC/5 x86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 350769 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora5/FC-5-x86_64-disc4.iso.txt b/tests/isodata/fedora/fedora5/FC-5-x86_64-disc4.iso.txt -deleted file mode 100644 -index 3271db5..0000000 ---- a/tests/isodata/fedora/fedora5/FC-5-x86_64-disc4.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC/5 x86_64 --Volume set id: FC/5 x86_64 --Publisher id: --Data preparer id: --Application id: FC/5 x86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 350483 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora5/FC-5-x86_64-disc5.iso.txt b/tests/isodata/fedora/fedora5/FC-5-x86_64-disc5.iso.txt -deleted file mode 100644 -index 9c73c05..0000000 ---- a/tests/isodata/fedora/fedora5/FC-5-x86_64-disc5.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC/5 x86_64 --Volume set id: FC/5 x86_64 --Publisher id: --Data preparer id: --Application id: FC/5 x86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 299723 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora6/FC-6-i386-DVD.iso.txt b/tests/isodata/fedora/fedora6/FC-6-i386-DVD.iso.txt -deleted file mode 100644 -index 94b9c4f..0000000 ---- a/tests/isodata/fedora/fedora6/FC-6-i386-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC/6 i386 DVD --Volume set id: FC/6 i386 --Publisher id: --Data preparer id: --Application id: FC/6 i386 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1721287 --El Torito VD version 1 found, boot catalog is in sector 353 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 162 354 -diff --git a/tests/isodata/fedora/fedora6/FC-6-i386-disc1.iso.txt b/tests/isodata/fedora/fedora6/FC-6-i386-disc1.iso.txt -deleted file mode 100644 -index ba610cc..0000000 ---- a/tests/isodata/fedora/fedora6/FC-6-i386-disc1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC-6 i386 Disc 1 --Volume set id: FC-6 i386 --Publisher id: --Data preparer id: --Application id: FC-6 i386 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 346084 --El Torito VD version 1 found, boot catalog is in sector 131 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 84 132 -diff --git a/tests/isodata/fedora/fedora6/FC-6-i386-disc2.iso.txt b/tests/isodata/fedora/fedora6/FC-6-i386-disc2.iso.txt -deleted file mode 100644 -index 15b1e6b..0000000 ---- a/tests/isodata/fedora/fedora6/FC-6-i386-disc2.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC-6 i386 Disc 2 --Volume set id: FC-6 i386 --Publisher id: --Data preparer id: --Application id: FC-6 i386 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 348750 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora6/FC-6-i386-disc3.iso.txt b/tests/isodata/fedora/fedora6/FC-6-i386-disc3.iso.txt -deleted file mode 100644 -index f9a2b1f..0000000 ---- a/tests/isodata/fedora/fedora6/FC-6-i386-disc3.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC-6 i386 Disc 3 --Volume set id: FC-6 i386 --Publisher id: --Data preparer id: --Application id: FC-6 i386 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 347408 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora6/FC-6-i386-disc4.iso.txt b/tests/isodata/fedora/fedora6/FC-6-i386-disc4.iso.txt -deleted file mode 100644 -index 2f47241..0000000 ---- a/tests/isodata/fedora/fedora6/FC-6-i386-disc4.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC-6 i386 Disc 4 --Volume set id: FC-6 i386 --Publisher id: --Data preparer id: --Application id: FC-6 i386 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 349233 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora6/FC-6-i386-disc5.iso.txt b/tests/isodata/fedora/fedora6/FC-6-i386-disc5.iso.txt -deleted file mode 100644 -index 66bc57a..0000000 ---- a/tests/isodata/fedora/fedora6/FC-6-i386-disc5.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC-6 i386 Disc 5 --Volume set id: FC-6 i386 --Publisher id: --Data preparer id: --Application id: FC-6 i386 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 330656 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora6/FC-6-ppc-DVD.iso.txt b/tests/isodata/fedora/fedora6/FC-6-ppc-DVD.iso.txt -deleted file mode 100644 -index 0cd278a..0000000 ---- a/tests/isodata/fedora/fedora6/FC-6-ppc-DVD.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: PPC --Volume id: FEDORA --Volume set id: FC/6 ppc --Publisher id: --Data preparer id: --Application id: FC/6 ppc --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2092614 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora6/FC-6-ppc-disc1.iso.txt b/tests/isodata/fedora/fedora6/FC-6-ppc-disc1.iso.txt -deleted file mode 100644 -index 959a74b..0000000 ---- a/tests/isodata/fedora/fedora6/FC-6-ppc-disc1.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: PPC --Volume id: FEDORA --Volume set id: FC-6 ppc --Publisher id: --Data preparer id: --Application id: FC-6 ppc --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 356658 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora6/FC-6-ppc-disc2.iso.txt b/tests/isodata/fedora/fedora6/FC-6-ppc-disc2.iso.txt -deleted file mode 100644 -index 9325461..0000000 ---- a/tests/isodata/fedora/fedora6/FC-6-ppc-disc2.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FEDORA --Volume set id: FC-6 ppc --Publisher id: --Data preparer id: --Application id: FC-6 ppc --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 348368 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora6/FC-6-ppc-disc3.iso.txt b/tests/isodata/fedora/fedora6/FC-6-ppc-disc3.iso.txt -deleted file mode 100644 -index 9e95d3d..0000000 ---- a/tests/isodata/fedora/fedora6/FC-6-ppc-disc3.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FEDORA --Volume set id: FC-6 ppc --Publisher id: --Data preparer id: --Application id: FC-6 ppc --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 345990 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora6/FC-6-ppc-disc4.iso.txt b/tests/isodata/fedora/fedora6/FC-6-ppc-disc4.iso.txt -deleted file mode 100644 -index 29bcb70..0000000 ---- a/tests/isodata/fedora/fedora6/FC-6-ppc-disc4.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FEDORA --Volume set id: FC-6 ppc --Publisher id: --Data preparer id: --Application id: FC-6 ppc --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 344095 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora6/FC-6-ppc-disc5.iso.txt b/tests/isodata/fedora/fedora6/FC-6-ppc-disc5.iso.txt -deleted file mode 100644 -index e39f09d..0000000 ---- a/tests/isodata/fedora/fedora6/FC-6-ppc-disc5.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FEDORA --Volume set id: FC-6 ppc --Publisher id: --Data preparer id: --Application id: FC-6 ppc --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 348922 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora6/FC-6-ppc-disc6.iso.txt b/tests/isodata/fedora/fedora6/FC-6-ppc-disc6.iso.txt -deleted file mode 100644 -index 9e4f9ed..0000000 ---- a/tests/isodata/fedora/fedora6/FC-6-ppc-disc6.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FEDORA --Volume set id: FC-6 ppc --Publisher id: --Data preparer id: --Application id: FC-6 ppc --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 294976 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora6/FC-6-x86_64-DVD.iso.txt b/tests/isodata/fedora/fedora6/FC-6-x86_64-DVD.iso.txt -deleted file mode 100644 -index 17540a4..0000000 ---- a/tests/isodata/fedora/fedora6/FC-6-x86_64-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC/6 x86_64 DVD --Volume set id: FC/6 x86_64 --Publisher id: --Data preparer id: --Application id: FC/6 x86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1996097 --El Torito VD version 1 found, boot catalog is in sector 452 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1C5 453 -diff --git a/tests/isodata/fedora/fedora6/FC-6-x86_64-disc1.iso.txt b/tests/isodata/fedora/fedora6/FC-6-x86_64-disc1.iso.txt -deleted file mode 100644 -index a37fb9e..0000000 ---- a/tests/isodata/fedora/fedora6/FC-6-x86_64-disc1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC-6 x86_64 Disc 1 --Volume set id: FC-6 x86_64 --Publisher id: --Data preparer id: --Application id: FC-6 x86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 343850 --El Torito VD version 1 found, boot catalog is in sector 147 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 94 148 -diff --git a/tests/isodata/fedora/fedora6/FC-6-x86_64-disc2.iso.txt b/tests/isodata/fedora/fedora6/FC-6-x86_64-disc2.iso.txt -deleted file mode 100644 -index 9cd0142..0000000 ---- a/tests/isodata/fedora/fedora6/FC-6-x86_64-disc2.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC-6 x86_64 Disc 2 --Volume set id: FC-6 x86_64 --Publisher id: --Data preparer id: --Application id: FC-6 x86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 346558 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora6/FC-6-x86_64-disc3.iso.txt b/tests/isodata/fedora/fedora6/FC-6-x86_64-disc3.iso.txt -deleted file mode 100644 -index 83045b3..0000000 ---- a/tests/isodata/fedora/fedora6/FC-6-x86_64-disc3.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC-6 x86_64 Disc 3 --Volume set id: FC-6 x86_64 --Publisher id: --Data preparer id: --Application id: FC-6 x86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 344820 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora6/FC-6-x86_64-disc4.iso.txt b/tests/isodata/fedora/fedora6/FC-6-x86_64-disc4.iso.txt -deleted file mode 100644 -index b5e82bf..0000000 ---- a/tests/isodata/fedora/fedora6/FC-6-x86_64-disc4.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC-6 x86_64 Disc 4 --Volume set id: FC-6 x86_64 --Publisher id: --Data preparer id: --Application id: FC-6 x86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 345446 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora6/FC-6-x86_64-disc5.iso.txt b/tests/isodata/fedora/fedora6/FC-6-x86_64-disc5.iso.txt -deleted file mode 100644 -index ec0ba9d..0000000 ---- a/tests/isodata/fedora/fedora6/FC-6-x86_64-disc5.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC-6 x86_64 Disc 5 --Volume set id: FC-6 x86_64 --Publisher id: --Data preparer id: --Application id: FC-6 x86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 349459 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora6/FC-6-x86_64-disc6.iso.txt b/tests/isodata/fedora/fedora6/FC-6-x86_64-disc6.iso.txt -deleted file mode 100644 -index d82259c..0000000 ---- a/tests/isodata/fedora/fedora6/FC-6-x86_64-disc6.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FC-6 x86_64 Disc 6 --Volume set id: FC-6 x86_64 --Publisher id: --Data preparer id: --Application id: FC-6 x86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 267018 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora7/F-7-i386-DVD.iso.txt b/tests/isodata/fedora/fedora7/F-7-i386-DVD.iso.txt -deleted file mode 100644 -index 8596c9a..0000000 ---- a/tests/isodata/fedora/fedora7/F-7-i386-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 7 i386 DVD --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1416310 --El Torito VD version 1 found, boot catalog is in sector 268 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 10D 269 -diff --git a/tests/isodata/fedora/fedora7/F-7-ppc-DVD.iso.txt b/tests/isodata/fedora/fedora7/F-7-ppc-DVD.iso.txt -deleted file mode 100644 -index fc363d8..0000000 ---- a/tests/isodata/fedora/fedora7/F-7-ppc-DVD.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: PPC --Volume id: Fedora 7 ppc DVD --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1767874 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora7/F-7-x86_64-DVD.iso.txt b/tests/isodata/fedora/fedora7/F-7-x86_64-DVD.iso.txt -deleted file mode 100644 -index f7acfc8..0000000 ---- a/tests/isodata/fedora/fedora7/F-7-x86_64-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 7 x86_64 DVD --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1683582 --El Torito VD version 1 found, boot catalog is in sector 339 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 154 340 -diff --git a/tests/isodata/fedora/fedora7/Fedora-7-KDE-Live-i686.iso.txt b/tests/isodata/fedora/fedora7/Fedora-7-KDE-Live-i686.iso.txt -deleted file mode 100644 -index cbcfe77..0000000 ---- a/tests/isodata/fedora/fedora7/Fedora-7-KDE-Live-i686.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-7-KDE-Live-i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 351494 --El Torito VD version 1 found, boot catalog is in sector 36 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 25 37 -diff --git a/tests/isodata/fedora/fedora7/Fedora-7-KDE-Live-x86_64.iso.txt b/tests/isodata/fedora/fedora7/Fedora-7-KDE-Live-x86_64.iso.txt -deleted file mode 100644 -index eca3571..0000000 ---- a/tests/isodata/fedora/fedora7/Fedora-7-KDE-Live-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-7-KDE-Live-x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 425607 --El Torito VD version 1 found, boot catalog is in sector 36 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 25 37 -diff --git a/tests/isodata/fedora/fedora7/Fedora-7-Live-i686.iso.txt b/tests/isodata/fedora/fedora7/Fedora-7-Live-i686.iso.txt -deleted file mode 100644 -index 2688e93..0000000 ---- a/tests/isodata/fedora/fedora7/Fedora-7-Live-i686.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-7-Live-i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 358119 --El Torito VD version 1 found, boot catalog is in sector 36 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 25 37 -diff --git a/tests/isodata/fedora/fedora7/Fedora-7-Live-x86_64.iso.txt b/tests/isodata/fedora/fedora7/Fedora-7-Live-x86_64.iso.txt -deleted file mode 100644 -index cc929d0..0000000 ---- a/tests/isodata/fedora/fedora7/Fedora-7-Live-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-7-Live-x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 399002 --El Torito VD version 1 found, boot catalog is in sector 36 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 25 37 -diff --git a/tests/isodata/fedora/fedora8/Fedora-8-Live-KDE-i686.iso.txt b/tests/isodata/fedora/fedora8/Fedora-8-Live-KDE-i686.iso.txt -deleted file mode 100644 -index 316680f..0000000 ---- a/tests/isodata/fedora/fedora8/Fedora-8-Live-KDE-i686.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-8-Live-KDE-i686 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 357514 --El Torito VD version 1 found, boot catalog is in sector 36 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 25 37 -diff --git a/tests/isodata/fedora/fedora8/Fedora-8-Live-KDE-x86_64.iso.txt b/tests/isodata/fedora/fedora8/Fedora-8-Live-KDE-x86_64.iso.txt -deleted file mode 100644 -index a5d031f..0000000 ---- a/tests/isodata/fedora/fedora8/Fedora-8-Live-KDE-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-8-Live-KDE-x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 412241 --El Torito VD version 1 found, boot catalog is in sector 36 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 25 37 -diff --git a/tests/isodata/fedora/fedora8/Fedora-8-Live-i686.iso.txt b/tests/isodata/fedora/fedora8/Fedora-8-Live-i686.iso.txt -deleted file mode 100644 -index 510faac..0000000 ---- a/tests/isodata/fedora/fedora8/Fedora-8-Live-i686.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-8-Live-i686 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 356976 --El Torito VD version 1 found, boot catalog is in sector 36 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 25 37 -diff --git a/tests/isodata/fedora/fedora8/Fedora-8-Live-ppc.iso.txt b/tests/isodata/fedora/fedora8/Fedora-8-Live-ppc.iso.txt -deleted file mode 100644 -index 2a5cc05..0000000 ---- a/tests/isodata/fedora/fedora8/Fedora-8-Live-ppc.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-8-Live-ppc --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 357882 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora8/Fedora-8-Live-x86_64.iso.txt b/tests/isodata/fedora/fedora8/Fedora-8-Live-x86_64.iso.txt -deleted file mode 100644 -index efc7c6b..0000000 ---- a/tests/isodata/fedora/fedora8/Fedora-8-Live-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-8-Live-x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 392515 --El Torito VD version 1 found, boot catalog is in sector 36 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 25 37 -diff --git a/tests/isodata/fedora/fedora8/Fedora-8-i386-DVD.iso.txt b/tests/isodata/fedora/fedora8/Fedora-8-i386-DVD.iso.txt -deleted file mode 100644 -index 306647d..0000000 ---- a/tests/isodata/fedora/fedora8/Fedora-8-i386-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 8 i386 DVD --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1672241 --El Torito VD version 1 found, boot catalog is in sector 540 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 21D 541 -diff --git a/tests/isodata/fedora/fedora8/Fedora-8-ppc-DVD.iso.txt b/tests/isodata/fedora/fedora8/Fedora-8-ppc-DVD.iso.txt -deleted file mode 100644 -index 55942a4..0000000 ---- a/tests/isodata/fedora/fedora8/Fedora-8-ppc-DVD.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: PPC --Volume id: Fedora 8 ppc DVD --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2011058 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora8/Fedora-8-x86_64-DVD.iso.txt b/tests/isodata/fedora/fedora8/Fedora-8-x86_64-DVD.iso.txt -deleted file mode 100644 -index f120d7d..0000000 ---- a/tests/isodata/fedora/fedora8/Fedora-8-x86_64-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 8 x86_64 DVD --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1892777 --El Torito VD version 1 found, boot catalog is in sector 615 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 268 616 -diff --git a/tests/isodata/fedora/fedora9/Fedora-9-i386-DVD.iso.txt b/tests/isodata/fedora/fedora9/Fedora-9-i386-DVD.iso.txt -deleted file mode 100644 -index 283d47b..0000000 ---- a/tests/isodata/fedora/fedora9/Fedora-9-i386-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 9 i386 DVD --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1748379 --El Torito VD version 1 found, boot catalog is in sector 331 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 14C 332 -diff --git a/tests/isodata/fedora/fedora9/Fedora-9-i386-disc1.iso.txt b/tests/isodata/fedora/fedora9/Fedora-9-i386-disc1.iso.txt -deleted file mode 100644 -index 404ed82..0000000 ---- a/tests/isodata/fedora/fedora9/Fedora-9-i386-disc1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 9 i386 Disc 1 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 311784 --El Torito VD version 1 found, boot catalog is in sector 94 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 5F 95 -diff --git a/tests/isodata/fedora/fedora9/Fedora-9-i386-disc2.iso.txt b/tests/isodata/fedora/fedora9/Fedora-9-i386-disc2.iso.txt -deleted file mode 100644 -index 6ac1fbe..0000000 ---- a/tests/isodata/fedora/fedora9/Fedora-9-i386-disc2.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 9 i386 Disc 2 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 326212 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora9/Fedora-9-i386-disc3.iso.txt b/tests/isodata/fedora/fedora9/Fedora-9-i386-disc3.iso.txt -deleted file mode 100644 -index 02418ef..0000000 ---- a/tests/isodata/fedora/fedora9/Fedora-9-i386-disc3.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 9 i386 Disc 3 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 318406 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora9/Fedora-9-i386-disc4.iso.txt b/tests/isodata/fedora/fedora9/Fedora-9-i386-disc4.iso.txt -deleted file mode 100644 -index 6545790..0000000 ---- a/tests/isodata/fedora/fedora9/Fedora-9-i386-disc4.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 9 i386 Disc 4 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 326195 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora9/Fedora-9-i386-disc5.iso.txt b/tests/isodata/fedora/fedora9/Fedora-9-i386-disc5.iso.txt -deleted file mode 100644 -index ba47746..0000000 ---- a/tests/isodata/fedora/fedora9/Fedora-9-i386-disc5.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 9 i386 Disc 5 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 324647 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora9/Fedora-9-i386-disc6.iso.txt b/tests/isodata/fedora/fedora9/Fedora-9-i386-disc6.iso.txt -deleted file mode 100644 -index e82451e..0000000 ---- a/tests/isodata/fedora/fedora9/Fedora-9-i386-disc6.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 9 i386 Disc 6 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 141828 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora9/Fedora-9-i686-Live-KDE.iso.txt b/tests/isodata/fedora/fedora9/Fedora-9-i686-Live-KDE.iso.txt -deleted file mode 100644 -index 216f2f2..0000000 ---- a/tests/isodata/fedora/fedora9/Fedora-9-i686-Live-KDE.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-9-Live-KDE-i686 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 353992 --El Torito VD version 1 found, boot catalog is in sector 36 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 25 37 -diff --git a/tests/isodata/fedora/fedora9/Fedora-9-i686-Live.iso.txt b/tests/isodata/fedora/fedora9/Fedora-9-i686-Live.iso.txt -deleted file mode 100644 -index aca45db..0000000 ---- a/tests/isodata/fedora/fedora9/Fedora-9-i686-Live.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-9-Live-i686 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 353575 --El Torito VD version 1 found, boot catalog is in sector 36 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 25 37 -diff --git a/tests/isodata/fedora/fedora9/Fedora-9-ppc-DVD.iso.txt b/tests/isodata/fedora/fedora9/Fedora-9-ppc-DVD.iso.txt -deleted file mode 100644 -index 3ca8b41..0000000 ---- a/tests/isodata/fedora/fedora9/Fedora-9-ppc-DVD.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: PPC --Volume id: Fedora 9 ppc DVD --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2156770 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora9/Fedora-9-ppc-disc1.iso.txt b/tests/isodata/fedora/fedora9/Fedora-9-ppc-disc1.iso.txt -deleted file mode 100644 -index 0112f9d..0000000 ---- a/tests/isodata/fedora/fedora9/Fedora-9-ppc-disc1.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: PPC --Volume id: Fedora 9 ppc Disc 1 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 317185 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora9/Fedora-9-ppc-disc2.iso.txt b/tests/isodata/fedora/fedora9/Fedora-9-ppc-disc2.iso.txt -deleted file mode 100644 -index 6de384b..0000000 ---- a/tests/isodata/fedora/fedora9/Fedora-9-ppc-disc2.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 9 ppc Disc 2 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 324114 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora9/Fedora-9-ppc-disc3.iso.txt b/tests/isodata/fedora/fedora9/Fedora-9-ppc-disc3.iso.txt -deleted file mode 100644 -index 450421d..0000000 ---- a/tests/isodata/fedora/fedora9/Fedora-9-ppc-disc3.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 9 ppc Disc 3 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 324915 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora9/Fedora-9-ppc-disc4.iso.txt b/tests/isodata/fedora/fedora9/Fedora-9-ppc-disc4.iso.txt -deleted file mode 100644 -index f948ce3..0000000 ---- a/tests/isodata/fedora/fedora9/Fedora-9-ppc-disc4.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 9 ppc Disc 4 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 323002 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora9/Fedora-9-ppc-disc5.iso.txt b/tests/isodata/fedora/fedora9/Fedora-9-ppc-disc5.iso.txt -deleted file mode 100644 -index 6bc3a8d..0000000 ---- a/tests/isodata/fedora/fedora9/Fedora-9-ppc-disc5.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 9 ppc Disc 5 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 325917 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora9/Fedora-9-ppc-disc6.iso.txt b/tests/isodata/fedora/fedora9/Fedora-9-ppc-disc6.iso.txt -deleted file mode 100644 -index a0cae1c..0000000 ---- a/tests/isodata/fedora/fedora9/Fedora-9-ppc-disc6.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 9 ppc Disc 6 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 320273 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora9/Fedora-9-ppc-disc7.iso.txt b/tests/isodata/fedora/fedora9/Fedora-9-ppc-disc7.iso.txt -deleted file mode 100644 -index 5f281b0..0000000 ---- a/tests/isodata/fedora/fedora9/Fedora-9-ppc-disc7.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 9 ppc Disc 7 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 155905 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora9/Fedora-9-x86_64-DVD.iso.txt b/tests/isodata/fedora/fedora9/Fedora-9-x86_64-DVD.iso.txt -deleted file mode 100644 -index 118cc6f..0000000 ---- a/tests/isodata/fedora/fedora9/Fedora-9-x86_64-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 9 x86_64 DVD --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2033055 --El Torito VD version 1 found, boot catalog is in sector 416 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1A1 417 -diff --git a/tests/isodata/fedora/fedora9/Fedora-9-x86_64-Live-KDE.iso.txt b/tests/isodata/fedora/fedora9/Fedora-9-x86_64-Live-KDE.iso.txt -deleted file mode 100644 -index fb42dfd..0000000 ---- a/tests/isodata/fedora/fedora9/Fedora-9-x86_64-Live-KDE.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-9-Live-KDE-x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 356090 --El Torito VD version 1 found, boot catalog is in sector 36 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 25 37 -diff --git a/tests/isodata/fedora/fedora9/Fedora-9-x86_64-Live.iso.txt b/tests/isodata/fedora/fedora9/Fedora-9-x86_64-Live.iso.txt -deleted file mode 100644 -index 3b75c0e..0000000 ---- a/tests/isodata/fedora/fedora9/Fedora-9-x86_64-Live.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-9-Live-x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 355063 --El Torito VD version 1 found, boot catalog is in sector 36 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 25 37 -diff --git a/tests/isodata/fedora/fedora9/Fedora-9-x86_64-disc1.iso.txt b/tests/isodata/fedora/fedora9/Fedora-9-x86_64-disc1.iso.txt -deleted file mode 100644 -index 8ab014d..0000000 ---- a/tests/isodata/fedora/fedora9/Fedora-9-x86_64-disc1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 9 x86_64 Disc 1 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 311316 --El Torito VD version 1 found, boot catalog is in sector 109 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 6E 110 -diff --git a/tests/isodata/fedora/fedora9/Fedora-9-x86_64-disc2.iso.txt b/tests/isodata/fedora/fedora9/Fedora-9-x86_64-disc2.iso.txt -deleted file mode 100644 -index 108bb1d..0000000 ---- a/tests/isodata/fedora/fedora9/Fedora-9-x86_64-disc2.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 9 x86_64 Disc 2 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 325856 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora9/Fedora-9-x86_64-disc3.iso.txt b/tests/isodata/fedora/fedora9/Fedora-9-x86_64-disc3.iso.txt -deleted file mode 100644 -index 4833b7c..0000000 ---- a/tests/isodata/fedora/fedora9/Fedora-9-x86_64-disc3.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 9 x86_64 Disc 3 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 326638 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora9/Fedora-9-x86_64-disc4.iso.txt b/tests/isodata/fedora/fedora9/Fedora-9-x86_64-disc4.iso.txt -deleted file mode 100644 -index 1de1d7f..0000000 ---- a/tests/isodata/fedora/fedora9/Fedora-9-x86_64-disc4.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 9 x86_64 Disc 4 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 326479 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora9/Fedora-9-x86_64-disc5.iso.txt b/tests/isodata/fedora/fedora9/Fedora-9-x86_64-disc5.iso.txt -deleted file mode 100644 -index 3cc7caa..0000000 ---- a/tests/isodata/fedora/fedora9/Fedora-9-x86_64-disc5.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 9 x86_64 Disc 5 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 324094 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora9/Fedora-9-x86_64-disc6.iso.txt b/tests/isodata/fedora/fedora9/Fedora-9-x86_64-disc6.iso.txt -deleted file mode 100644 -index 55f4efe..0000000 ---- a/tests/isodata/fedora/fedora9/Fedora-9-x86_64-disc6.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 9 x86_64 Disc 6 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 322506 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/fedora9/Fedora-9-x86_64-disc7.iso.txt b/tests/isodata/fedora/fedora9/Fedora-9-x86_64-disc7.iso.txt -deleted file mode 100644 -index 5e4363e..0000000 ---- a/tests/isodata/fedora/fedora9/Fedora-9-x86_64-disc7.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora 9 x86_64 Disc 7 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 96547 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/fedora/silverblue28/Fedora-AtomicWorkstation-ostree-x86_64-28-1.1.iso.txt b/tests/isodata/fedora/silverblue28/Fedora-AtomicWorkstation-ostree-x86_64-28-1.1.iso.txt -deleted file mode 100644 -index 6380eee..0000000 ---- a/tests/isodata/fedora/silverblue28/Fedora-AtomicWorkstation-ostree-x86_64-28-1.1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-AW-ostree-x86_64-28 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1020825 --El Torito VD version 1 found, boot catalog is in sector 44 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff F80AD 1015981 -diff --git a/tests/isodata/fedora/silverblue29/Fedora-Silverblue-ostree-x86_64-29-1.2.iso.txt b/tests/isodata/fedora/silverblue29/Fedora-Silverblue-ostree-x86_64-29-1.2.iso.txt -deleted file mode 100644 -index 89f8603..0000000 ---- a/tests/isodata/fedora/silverblue29/Fedora-Silverblue-ostree-x86_64-29-1.2.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Fedora-SB-ostree-x86_64-29 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1031435 --El Torito VD version 1 found, boot catalog is in sector 44 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff FA8D9 1026265 -diff --git a/tests/isodata/freebsd/freebsd10.1/FreeBSD-10.1-RELEASE-amd64-dvd1.iso.txt b/tests/isodata/freebsd/freebsd10.1/FreeBSD-10.1-RELEASE-amd64-dvd1.iso.txt -deleted file mode 100644 -index 3116f4d..0000000 ---- a/tests/isodata/freebsd/freebsd10.1/FreeBSD-10.1-RELEASE-amd64-dvd1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: FreeBSD --Volume id: 10_1_RELEASE_AMD64_DVD --Volume set id: --Publisher id: THE FREEBSD PROJECT. HTTP://WWW.FREEBSD.ORG/ --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1262071 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 14 20 -diff --git a/tests/isodata/freebsd/freebsd10.2/FreeBSD-10.2-RELEASE-amd64-dvd1.iso.txt b/tests/isodata/freebsd/freebsd10.2/FreeBSD-10.2-RELEASE-amd64-dvd1.iso.txt -deleted file mode 100644 -index 03bd433..0000000 ---- a/tests/isodata/freebsd/freebsd10.2/FreeBSD-10.2-RELEASE-amd64-dvd1.iso.txt -+++ /dev/null -@@ -1,33 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: FreeBSD --Volume id: 10_2_RELEASE_AMD64_DVD --Volume set id: --Publisher id: THE FREEBSD PROJECT. HTTP://WWW.FREEBSD.ORG/ --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1337128 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -- --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'IEEE_P1282' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Cksum AA 55 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 14 20 -diff --git a/tests/isodata/freebsd/freebsd10.3/FreeBSD-10.3-RELEASE-amd64-dvd1.iso.txt b/tests/isodata/freebsd/freebsd10.3/FreeBSD-10.3-RELEASE-amd64-dvd1.iso.txt -deleted file mode 100644 -index b2df49f..0000000 ---- a/tests/isodata/freebsd/freebsd10.3/FreeBSD-10.3-RELEASE-amd64-dvd1.iso.txt -+++ /dev/null -@@ -1,33 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: FreeBSD --Volume id: 10_3_RELEASE_AMD64_DVD --Volume set id: --Publisher id: THE FREEBSD PROJECT. HTTP://WWW.FREEBSD.ORG/ --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1349294 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -- --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'IEEE_P1282' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Cksum AA 55 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 14 20 -diff --git a/tests/isodata/freebsd/freebsd10.4/FreeBSD-10.4-RELEASE-amd64-disc1.iso.txt b/tests/isodata/freebsd/freebsd10.4/FreeBSD-10.4-RELEASE-amd64-disc1.iso.txt -deleted file mode 100644 -index c0ae09d..0000000 ---- a/tests/isodata/freebsd/freebsd10.4/FreeBSD-10.4-RELEASE-amd64-disc1.iso.txt -+++ /dev/null -@@ -1,33 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: FreeBSD --Volume id: 10_4_RELEASE_AMD64_CD --Volume set id: --Publisher id: THE FREEBSD PROJECT. HTTP://WWW.FREEBSD.ORG/ --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 313305 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -- --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'IEEE_P1282' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Cksum AA 55 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 14 20 -diff --git a/tests/isodata/freebsd/freebsd10.4/FreeBSD-10.4-RELEASE-amd64-dvd1.iso.txt b/tests/isodata/freebsd/freebsd10.4/FreeBSD-10.4-RELEASE-amd64-dvd1.iso.txt -deleted file mode 100644 -index e7c27a3..0000000 ---- a/tests/isodata/freebsd/freebsd10.4/FreeBSD-10.4-RELEASE-amd64-dvd1.iso.txt -+++ /dev/null -@@ -1,33 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: FreeBSD --Volume id: 10_4_RELEASE_AMD64_DVD --Volume set id: --Publisher id: THE FREEBSD PROJECT. HTTP://WWW.FREEBSD.ORG/ --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1484567 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -- --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'IEEE_P1282' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Cksum AA 55 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 14 20 -diff --git a/tests/isodata/freebsd/freebsd10.4/FreeBSD-10.4-RELEASE-i386-disc1.iso.txt b/tests/isodata/freebsd/freebsd10.4/FreeBSD-10.4-RELEASE-i386-disc1.iso.txt -deleted file mode 100644 -index a582b20..0000000 ---- a/tests/isodata/freebsd/freebsd10.4/FreeBSD-10.4-RELEASE-i386-disc1.iso.txt -+++ /dev/null -@@ -1,33 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: FreeBSD --Volume id: 10_4_RELEASE_I386_CD --Volume set id: --Publisher id: THE FREEBSD PROJECT. HTTP://WWW.FREEBSD.ORG/ --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 277985 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -- --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'IEEE_P1282' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Cksum AA 55 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 14 20 -diff --git a/tests/isodata/freebsd/freebsd10.4/FreeBSD-10.4-RELEASE-i386-dvd1.iso.txt b/tests/isodata/freebsd/freebsd10.4/FreeBSD-10.4-RELEASE-i386-dvd1.iso.txt -deleted file mode 100644 -index 8e913b4..0000000 ---- a/tests/isodata/freebsd/freebsd10.4/FreeBSD-10.4-RELEASE-i386-dvd1.iso.txt -+++ /dev/null -@@ -1,33 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: FreeBSD --Volume id: 10_4_RELEASE_I386_DVD --Volume set id: --Publisher id: THE FREEBSD PROJECT. HTTP://WWW.FREEBSD.ORG/ --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1373155 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -- --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'IEEE_P1282' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Cksum AA 55 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 14 20 -diff --git a/tests/isodata/freebsd/freebsd11.0/FreeBSD-11.0-RELEASE-amd64-disc1.iso.txt b/tests/isodata/freebsd/freebsd11.0/FreeBSD-11.0-RELEASE-amd64-disc1.iso.txt -deleted file mode 100644 -index a4f46bb..0000000 ---- a/tests/isodata/freebsd/freebsd11.0/FreeBSD-11.0-RELEASE-amd64-disc1.iso.txt -+++ /dev/null -@@ -1,33 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: FreeBSD --Volume id: 11_0_RELEASE_P1_AMD64_CD --Volume set id: --Publisher id: THE FREEBSD PROJECT. HTTP://WWW.FREEBSD.ORG/ --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 335954 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -- --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'IEEE_P1282' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Cksum AA 55 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 14 20 -diff --git a/tests/isodata/freebsd/freebsd11.0/FreeBSD-11.0-RELEASE-amd64-dvd1.iso.txt b/tests/isodata/freebsd/freebsd11.0/FreeBSD-11.0-RELEASE-amd64-dvd1.iso.txt -deleted file mode 100644 -index 3561418..0000000 ---- a/tests/isodata/freebsd/freebsd11.0/FreeBSD-11.0-RELEASE-amd64-dvd1.iso.txt -+++ /dev/null -@@ -1,33 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: FreeBSD --Volume id: 11_0_RELEASE_P1_AMD64_DVD --Volume set id: --Publisher id: THE FREEBSD PROJECT. HTTP://WWW.FREEBSD.ORG/ --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1430708 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -- --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'IEEE_P1282' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Cksum AA 55 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 14 20 -diff --git a/tests/isodata/freebsd/freebsd11.0/FreeBSD-11.0-RELEASE-i386-disc1.iso.txt b/tests/isodata/freebsd/freebsd11.0/FreeBSD-11.0-RELEASE-i386-disc1.iso.txt -deleted file mode 100644 -index c1d6db2..0000000 ---- a/tests/isodata/freebsd/freebsd11.0/FreeBSD-11.0-RELEASE-i386-disc1.iso.txt -+++ /dev/null -@@ -1,33 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: FreeBSD --Volume id: 11_0_RELEASE_P1_I386_CD --Volume set id: --Publisher id: THE FREEBSD PROJECT. HTTP://WWW.FREEBSD.ORG/ --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 293706 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -- --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'IEEE_P1282' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Cksum AA 55 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 14 20 -diff --git a/tests/isodata/freebsd/freebsd11.0/FreeBSD-11.0-RELEASE-i386-dvd1.iso.txt b/tests/isodata/freebsd/freebsd11.0/FreeBSD-11.0-RELEASE-i386-dvd1.iso.txt -deleted file mode 100644 -index 7c3809b..0000000 ---- a/tests/isodata/freebsd/freebsd11.0/FreeBSD-11.0-RELEASE-i386-dvd1.iso.txt -+++ /dev/null -@@ -1,33 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: FreeBSD --Volume id: 11_0_RELEASE_P1_I386_DVD --Volume set id: --Publisher id: THE FREEBSD PROJECT. HTTP://WWW.FREEBSD.ORG/ --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1291396 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -- --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'IEEE_P1282' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Cksum AA 55 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 14 20 -diff --git a/tests/isodata/freebsd/freebsd11.1/FreeBSD-11.1-RELEASE-amd64-disc1.iso.txt b/tests/isodata/freebsd/freebsd11.1/FreeBSD-11.1-RELEASE-amd64-disc1.iso.txt -deleted file mode 100644 -index 0d4bcae..0000000 ---- a/tests/isodata/freebsd/freebsd11.1/FreeBSD-11.1-RELEASE-amd64-disc1.iso.txt -+++ /dev/null -@@ -1,33 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: FreeBSD --Volume id: 11_1_RELEASE_AMD64_CD --Volume set id: --Publisher id: THE FREEBSD PROJECT. HTTP://WWW.FREEBSD.ORG/ --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 353218 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -- --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'IEEE_P1282' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Cksum AA 55 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 14 20 -diff --git a/tests/isodata/freebsd/freebsd11.1/FreeBSD-11.1-RELEASE-amd64-dvd1.iso.txt b/tests/isodata/freebsd/freebsd11.1/FreeBSD-11.1-RELEASE-amd64-dvd1.iso.txt -deleted file mode 100644 -index a66e925..0000000 ---- a/tests/isodata/freebsd/freebsd11.1/FreeBSD-11.1-RELEASE-amd64-dvd1.iso.txt -+++ /dev/null -@@ -1,33 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: FreeBSD --Volume id: 11_1_RELEASE_AMD64_DVD --Volume set id: --Publisher id: THE FREEBSD PROJECT. HTTP://WWW.FREEBSD.ORG/ --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1634843 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -- --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'IEEE_P1282' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Cksum AA 55 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 14 20 -diff --git a/tests/isodata/freebsd/freebsd11.1/FreeBSD-11.1-RELEASE-i386-disc1.iso.txt b/tests/isodata/freebsd/freebsd11.1/FreeBSD-11.1-RELEASE-i386-disc1.iso.txt -deleted file mode 100644 -index 7701eac..0000000 ---- a/tests/isodata/freebsd/freebsd11.1/FreeBSD-11.1-RELEASE-i386-disc1.iso.txt -+++ /dev/null -@@ -1,33 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: FreeBSD --Volume id: 11_1_RELEASE_I386_CD --Volume set id: --Publisher id: THE FREEBSD PROJECT. HTTP://WWW.FREEBSD.ORG/ --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 301753 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -- --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'IEEE_P1282' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Cksum AA 55 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 14 20 -diff --git a/tests/isodata/freebsd/freebsd11.1/FreeBSD-11.1-RELEASE-i386-dvd1.iso.txt b/tests/isodata/freebsd/freebsd11.1/FreeBSD-11.1-RELEASE-i386-dvd1.iso.txt -deleted file mode 100644 -index 20dda39..0000000 ---- a/tests/isodata/freebsd/freebsd11.1/FreeBSD-11.1-RELEASE-i386-dvd1.iso.txt -+++ /dev/null -@@ -1,33 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: FreeBSD --Volume id: 11_1_RELEASE_I386_DVD --Volume set id: --Publisher id: THE FREEBSD PROJECT. HTTP://WWW.FREEBSD.ORG/ --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1467791 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -- --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'IEEE_P1282' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Cksum AA 55 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 14 20 -diff --git a/tests/isodata/freebsd/freebsd11.2/FreeBSD-11.2-RELEASE-amd64-disc1.iso.txt b/tests/isodata/freebsd/freebsd11.2/FreeBSD-11.2-RELEASE-amd64-disc1.iso.txt -deleted file mode 100644 -index 8b887fd..0000000 ---- a/tests/isodata/freebsd/freebsd11.2/FreeBSD-11.2-RELEASE-amd64-disc1.iso.txt -+++ /dev/null -@@ -1,33 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: FreeBSD --Volume id: 11_2_RELEASE_AMD64_CD --Volume set id: --Publisher id: THE FREEBSD PROJECT. HTTP://WWW.FREEBSD.ORG/ --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 342412 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -- --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'IEEE_P1282' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Cksum AA 55 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1A4 420 -diff --git a/tests/isodata/freebsd/freebsd11.2/FreeBSD-11.2-RELEASE-amd64-dvd1.iso.txt b/tests/isodata/freebsd/freebsd11.2/FreeBSD-11.2-RELEASE-amd64-dvd1.iso.txt -deleted file mode 100644 -index e13bdae..0000000 ---- a/tests/isodata/freebsd/freebsd11.2/FreeBSD-11.2-RELEASE-amd64-dvd1.iso.txt -+++ /dev/null -@@ -1,33 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: FreeBSD --Volume id: 11_2_RELEASE_AMD64_DVD --Volume set id: --Publisher id: THE FREEBSD PROJECT. HTTP://WWW.FREEBSD.ORG/ --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1563513 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -- --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'IEEE_P1282' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Cksum AA 55 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1A4 420 -diff --git a/tests/isodata/freebsd/freebsd11.2/FreeBSD-11.2-RELEASE-i386-disc1.iso.txt b/tests/isodata/freebsd/freebsd11.2/FreeBSD-11.2-RELEASE-i386-disc1.iso.txt -deleted file mode 100644 -index 13cc515..0000000 ---- a/tests/isodata/freebsd/freebsd11.2/FreeBSD-11.2-RELEASE-i386-disc1.iso.txt -+++ /dev/null -@@ -1,33 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: FreeBSD --Volume id: 11_2_RELEASE_I386_CD --Volume set id: --Publisher id: THE FREEBSD PROJECT. HTTP://WWW.FREEBSD.ORG/ --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 295666 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -- --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'IEEE_P1282' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Cksum AA 55 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 14 20 -diff --git a/tests/isodata/freebsd/freebsd11.2/FreeBSD-11.2-RELEASE-i386-dvd1.iso.txt b/tests/isodata/freebsd/freebsd11.2/FreeBSD-11.2-RELEASE-i386-dvd1.iso.txt -deleted file mode 100644 -index 8dac59a..0000000 ---- a/tests/isodata/freebsd/freebsd11.2/FreeBSD-11.2-RELEASE-i386-dvd1.iso.txt -+++ /dev/null -@@ -1,33 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: FreeBSD --Volume id: 11_2_RELEASE_I386_DVD --Volume set id: --Publisher id: THE FREEBSD PROJECT. HTTP://WWW.FREEBSD.ORG/ --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1395641 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -- --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'IEEE_P1282' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Cksum AA 55 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 14 20 -diff --git a/tests/isodata/freebsd/freebsd12.0/FreeBSD-12.0-RELEASE-amd64-disc1.iso.txt b/tests/isodata/freebsd/freebsd12.0/FreeBSD-12.0-RELEASE-amd64-disc1.iso.txt -deleted file mode 100644 -index f733bb2..0000000 ---- a/tests/isodata/freebsd/freebsd12.0/FreeBSD-12.0-RELEASE-amd64-disc1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: FreeBSD --Volume id: 12_0_RELEASE_AMD64_CD --Volume set id: --Publisher id: THE FREEBSD PROJECT. HTTPS://WWW.FREEBSD.ORG/ --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 435625 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1A4 420 -diff --git a/tests/isodata/freebsd/freebsd12.0/FreeBSD-12.0-RELEASE-amd64-dvd1.iso.txt b/tests/isodata/freebsd/freebsd12.0/FreeBSD-12.0-RELEASE-amd64-dvd1.iso.txt -deleted file mode 100644 -index 0eb99df..0000000 ---- a/tests/isodata/freebsd/freebsd12.0/FreeBSD-12.0-RELEASE-amd64-dvd1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: FreeBSD --Volume id: 12_0_RELEASE_AMD64_DVD --Volume set id: --Publisher id: THE FREEBSD PROJECT. HTTPS://WWW.FREEBSD.ORG/ --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1896665 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1A4 420 -diff --git a/tests/isodata/freebsd/freebsd12.0/FreeBSD-12.0-RELEASE-i386-disc1.iso.txt b/tests/isodata/freebsd/freebsd12.0/FreeBSD-12.0-RELEASE-i386-disc1.iso.txt -deleted file mode 100644 -index cdb355c..0000000 ---- a/tests/isodata/freebsd/freebsd12.0/FreeBSD-12.0-RELEASE-i386-disc1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: FreeBSD --Volume id: 12_0_RELEASE_I386_CD --Volume set id: --Publisher id: THE FREEBSD PROJECT. HTTPS://WWW.FREEBSD.ORG/ --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 370003 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 14 20 -diff --git a/tests/isodata/freebsd/freebsd12.0/FreeBSD-12.0-RELEASE-i386-dvd1.iso.txt b/tests/isodata/freebsd/freebsd12.0/FreeBSD-12.0-RELEASE-i386-dvd1.iso.txt -deleted file mode 100644 -index 587a628..0000000 ---- a/tests/isodata/freebsd/freebsd12.0/FreeBSD-12.0-RELEASE-i386-dvd1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: FreeBSD --Volume id: 12_0_RELEASE_I386_DVD --Volume set id: --Publisher id: THE FREEBSD PROJECT. HTTPS://WWW.FREEBSD.ORG/ --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1632817 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 14 20 -diff --git a/tests/isodata/freedos/freedos1.2/FD12CD.iso.txt b/tests/isodata/freedos/freedos1.2/FD12CD.iso.txt -deleted file mode 100644 -index 5205591..0000000 ---- a/tests/isodata/freedos/freedos1.2/FD12CD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FD-SETUP --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 214247 --El Torito VD version 1 found, boot catalog is in sector 69 --NO Joliet present --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 46 70 -diff --git a/tests/isodata/freedos/freedos1.2/FD12LGCY.iso.txt b/tests/isodata/freedos/freedos1.2/FD12LGCY.iso.txt -deleted file mode 100644 -index 44ea185..0000000 ---- a/tests/isodata/freedos/freedos1.2/FD12LGCY.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: FDI-CD --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 214188 --El Torito VD version 1 found, boot catalog is in sector 68 --NO Joliet present --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 2 (1.44MB Floppy) -- Load segment 0 -- Sys type 0 -- Nsect 1 -- Bootoff 45 69 -diff --git a/tests/isodata/gentoo/gentoo/install-amd64-minimal-20190212T214502Z.iso.txt b/tests/isodata/gentoo/gentoo/install-amd64-minimal-20190212T214502Z.iso.txt -deleted file mode 100644 -index 09743ac..0000000 ---- a/tests/isodata/gentoo/gentoo/install-amd64-minimal-20190212T214502Z.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Gentoo amd64 20190212T214502Z --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO9660/HFS/UDF FILESYSTEM BUILDER & CDRECORD CD/DVD/BluRay CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 131578 --El Torito VD version 1 found, boot catalog is in sector 39 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff CC4 3268 -diff --git a/tests/isodata/gentoo/gentoo/install-x86-minimal-20190214T185527Z.iso.txt b/tests/isodata/gentoo/gentoo/install-x86-minimal-20190214T185527Z.iso.txt -deleted file mode 100644 -index e2ec44a..0000000 ---- a/tests/isodata/gentoo/gentoo/install-x86-minimal-20190214T185527Z.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Gentoo x86 20190214T185527Z --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO9660/HFS/UDF FILESYSTEM BUILDER & CDRECORD CD/DVD/BluRay CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 117277 --El Torito VD version 1 found, boot catalog is in sector 39 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff CC4 3268 -diff --git a/tests/isodata/gnome/gnome3.8/GNOME-3.7.92.iso.txt b/tests/isodata/gnome/gnome3.8/GNOME-3.7.92.iso.txt -deleted file mode 100644 -index a44a6f1..0000000 ---- a/tests/isodata/gnome/gnome3.8/GNOME-3.7.92.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: GNOME38-LiveCD --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 414527 --El Torito VD version 1 found, boot catalog is in sector 36 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 25 37 -diff --git a/tests/isodata/haiku/haikunightly/haiku-nightly-anyboot.iso.txt b/tests/isodata/haiku/haikunightly/haiku-nightly-anyboot.iso.txt -deleted file mode 100644 -index 1031567..0000000 ---- a/tests/isodata/haiku/haikunightly/haiku-nightly-anyboot.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: bootimg --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1624 --El Torito VD version 1 found, boot catalog is in sector 32 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 3 (2.88MB Floppy) -- Load segment 0 -- Sys type 0 -- Nsect 1 -- Bootoff 21 33 -diff --git a/tests/isodata/haiku/haikur1alpha1/haiku-r1alpha1.iso.txt b/tests/isodata/haiku/haikur1alpha1/haiku-r1alpha1.iso.txt -deleted file mode 100644 -index 805c497..0000000 ---- a/tests/isodata/haiku/haikur1alpha1/haiku-r1alpha1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: FreeBSD --Volume id: Haiku --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 194485 --El Torito VD version 1 found, boot catalog is in sector 1607 --NO Joliet present --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 3 (2.88MB Floppy) -- Load segment 0 -- Sys type 0 -- Nsect 1 -- Bootoff 648 1608 -diff --git a/tests/isodata/haiku/haikur1alpha2/haiku-r1alpha2-sources.iso.txt b/tests/isodata/haiku/haikur1alpha2/haiku-r1alpha2-sources.iso.txt -deleted file mode 100644 -index 7f2dd40..0000000 ---- a/tests/isodata/haiku/haikur1alpha2/haiku-r1alpha2-sources.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: FreeBSD --Volume id: Haiku --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 339981 --El Torito VD version 1 found, boot catalog is in sector 2102 --NO Joliet present --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 3 (2.88MB Floppy) -- Load segment 0 -- Sys type 0 -- Nsect 1 -- Bootoff 837 2103 -diff --git a/tests/isodata/haiku/haikur1alpha3/haiku-r1alpha3.iso.txt b/tests/isodata/haiku/haikur1alpha3/haiku-r1alpha3.iso.txt -deleted file mode 100644 -index d859591..0000000 ---- a/tests/isodata/haiku/haikur1alpha3/haiku-r1alpha3.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: FreeBSD --Volume id: Haiku --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 287810 --El Torito VD version 1 found, boot catalog is in sector 2682 --NO Joliet present --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 3 (2.88MB Floppy) -- Load segment 0 -- Sys type 0 -- Nsect 1 -- Bootoff A7B 2683 -diff --git a/tests/isodata/haiku/haikur1alpha4.1/haiku-r1alpha4.iso.txt b/tests/isodata/haiku/haikur1alpha4.1/haiku-r1alpha4.iso.txt -deleted file mode 100644 -index c9162e7..0000000 ---- a/tests/isodata/haiku/haikur1alpha4.1/haiku-r1alpha4.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: FreeBSD --Volume id: Haiku --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 300345 --El Torito VD version 1 found, boot catalog is in sector 2781 --NO Joliet present --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 3 (2.88MB Floppy) -- Load segment 0 -- Sys type 0 -- Nsect 1 -- Bootoff ADE 2782 -diff --git a/tests/isodata/mageia/mageia1/mageia-dual-1.iso.txt b/tests/isodata/mageia/mageia1/mageia-dual-1.iso.txt -deleted file mode 100644 -index a1c4326..0000000 ---- a/tests/isodata/mageia/mageia1/mageia-dual-1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: Mageia.Org --Volume id: mageia-dual-1 --Volume set id: Mageia.Org mageia-dual - 1 --Publisher id: Mageia.Org --Data preparer id: Mageia.Org BCD --Application id: mageia-dual - 1 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 351409 --El Torito VD version 1 found, boot catalog is in sector 305 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Mageia.Org' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 132 306 -diff --git a/tests/isodata/mageia/mageia1/mageia-dvd-1-i586.iso.txt b/tests/isodata/mageia/mageia1/mageia-dvd-1-i586.iso.txt -deleted file mode 100644 -index f51393f..0000000 ---- a/tests/isodata/mageia/mageia1/mageia-dvd-1-i586.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: Mageia --Volume id: 1-i586 --Volume set id: Mageia - 1 - i586 DVD --Publisher id: Mageia.Org --Data preparer id: Mageia BCD --Application id: Mageia - 1 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1923289 --El Torito VD version 1 found, boot catalog is in sector 711 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Mageia.Org' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2C8 712 -diff --git a/tests/isodata/mageia/mageia1/mageia-livecd-1-GNOME-europe1-americas-cdrom-i586.iso.txt b/tests/isodata/mageia/mageia1/mageia-livecd-1-GNOME-europe1-americas-cdrom-i586.iso.txt -deleted file mode 100644 -index 65e1f03..0000000 ---- a/tests/isodata/mageia/mageia1/mageia-livecd-1-GNOME-europe1-americas-cdrom-i586.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Livecd-1-GNOME --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 317417 --El Torito VD version 1 found, boot catalog is in sector 48 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 113 275 -diff --git a/tests/isodata/mageia/mageia1/mageia-livecd-1-KDE4-europe1-americas-cdrom-i586.iso.txt b/tests/isodata/mageia/mageia1/mageia-livecd-1-KDE4-europe1-americas-cdrom-i586.iso.txt -deleted file mode 100644 -index bc3fb41..0000000 ---- a/tests/isodata/mageia/mageia1/mageia-livecd-1-KDE4-europe1-americas-cdrom-i586.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Livecd-1-KDE4 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 354084 --El Torito VD version 1 found, boot catalog is in sector 48 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 113 275 -diff --git a/tests/isodata/mageia/mageia2/Mageia-2-dual-CD.iso.txt b/tests/isodata/mageia/mageia2/Mageia-2-dual-CD.iso.txt -deleted file mode 100644 -index fba04ec..0000000 ---- a/tests/isodata/mageia/mageia2/Mageia-2-dual-CD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: Mageia.Org --Volume id: Mageia-2 --Volume set id: Mageia.Org Mageia - 2 --Publisher id: Mageia.Org --Data preparer id: Mageia.Org BCD --Application id: Mageia - 2 rc --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 350041 --El Torito VD version 1 found, boot catalog is in sector 312 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Mageia.Org' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 139 313 -diff --git a/tests/isodata/mageia/mageia2/Mageia-2-i586-DVD.iso.txt b/tests/isodata/mageia/mageia2/Mageia-2-i586-DVD.iso.txt -deleted file mode 100644 -index 9b621ac..0000000 ---- a/tests/isodata/mageia/mageia2/Mageia-2-i586-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: Mageia --Volume id: Mageia-2-i586 --Volume set id: Mageia 2 - i586 DVD --Publisher id: Mageia --Data preparer id: Mageia BCD --Application id: Mageia 2 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1782360 --El Torito VD version 1 found, boot catalog is in sector 680 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Mageia' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2A9 681 -diff --git a/tests/isodata/mageia/mageia3/Mageia-3-LiveCD-GNOME-en-i586-CD.iso.txt b/tests/isodata/mageia/mageia3/Mageia-3-LiveCD-GNOME-en-i586-CD.iso.txt -deleted file mode 100644 -index e15719e..0000000 ---- a/tests/isodata/mageia/mageia3/Mageia-3-LiveCD-GNOME-en-i586-CD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Mageia-3-GNOME-LiveCD --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 356761 --El Torito VD version 1 found, boot catalog is in sector 49 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1D5 469 -diff --git a/tests/isodata/mageia/mageia3/Mageia-3-LiveCD-KDE4-en-i586-CD.iso.txt b/tests/isodata/mageia/mageia3/Mageia-3-LiveCD-KDE4-en-i586-CD.iso.txt -deleted file mode 100644 -index e165277..0000000 ---- a/tests/isodata/mageia/mageia3/Mageia-3-LiveCD-KDE4-en-i586-CD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Mageia-3-KDE4-LiveCD --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 355127 --El Torito VD version 1 found, boot catalog is in sector 49 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1D5 469 -diff --git a/tests/isodata/mageia/mageia3/Mageia-3-LiveDVD-GNOME-i586-DVD.iso.txt b/tests/isodata/mageia/mageia3/Mageia-3-LiveDVD-GNOME-i586-DVD.iso.txt -deleted file mode 100644 -index 629a456..0000000 ---- a/tests/isodata/mageia/mageia3/Mageia-3-LiveDVD-GNOME-i586-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Mageia-3-GNOME-LiveDVD --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 724899 --El Torito VD version 1 found, boot catalog is in sector 49 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1D5 469 -diff --git a/tests/isodata/mageia/mageia3/Mageia-3-LiveDVD-GNOME-x86_64-DVD.iso.txt b/tests/isodata/mageia/mageia3/Mageia-3-LiveDVD-GNOME-x86_64-DVD.iso.txt -deleted file mode 100644 -index 4cec0ec..0000000 ---- a/tests/isodata/mageia/mageia3/Mageia-3-LiveDVD-GNOME-x86_64-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Mageia-3-GNOME-LiveDVD --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 742056 --El Torito VD version 1 found, boot catalog is in sector 57 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1DD 477 -diff --git a/tests/isodata/mageia/mageia3/Mageia-3-LiveDVD-KDE4-i586-DVD.iso.txt b/tests/isodata/mageia/mageia3/Mageia-3-LiveDVD-KDE4-i586-DVD.iso.txt -deleted file mode 100644 -index f671289..0000000 ---- a/tests/isodata/mageia/mageia3/Mageia-3-LiveDVD-KDE4-i586-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Mageia-3-KDE4-LiveDVD --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 747086 --El Torito VD version 1 found, boot catalog is in sector 49 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1D5 469 -diff --git a/tests/isodata/mageia/mageia3/Mageia-3-LiveDVD-KDE4-x86_64-DVD.iso.txt b/tests/isodata/mageia/mageia3/Mageia-3-LiveDVD-KDE4-x86_64-DVD.iso.txt -deleted file mode 100644 -index 7efc7fa..0000000 ---- a/tests/isodata/mageia/mageia3/Mageia-3-LiveDVD-KDE4-x86_64-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Mageia-3-KDE4-LiveDVD --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 763166 --El Torito VD version 1 found, boot catalog is in sector 57 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1DD 477 -diff --git a/tests/isodata/mageia/mageia3/Mageia-3-dual-CD.iso.txt b/tests/isodata/mageia/mageia3/Mageia-3-dual-CD.iso.txt -deleted file mode 100644 -index d75cacc..0000000 ---- a/tests/isodata/mageia/mageia3/Mageia-3-dual-CD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: Mageia.Org --Volume id: Mageia-3 --Volume set id: Mageia.Org Mageia - 3 --Publisher id: Mageia.Org --Data preparer id: Mageia.Org BCD --Application id: Mageia - 3 RC --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 357631 --El Torito VD version 1 found, boot catalog is in sector 322 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Mageia.Org' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 143 323 -diff --git a/tests/isodata/mageia/mageia3/Mageia-3-i586-DVD.iso.txt b/tests/isodata/mageia/mageia3/Mageia-3-i586-DVD.iso.txt -deleted file mode 100644 -index 7e4e270..0000000 ---- a/tests/isodata/mageia/mageia3/Mageia-3-i586-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: Mageia --Volume id: Mageia-3-i586 --Volume set id: Mageia 3 - i586 DVD --Publisher id: Mageia --Data preparer id: Mageia BCD --Application id: Mageia 3 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1945830 --El Torito VD version 1 found, boot catalog is in sector 673 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Mageia' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2A2 674 -diff --git a/tests/isodata/mageia/mageia3/Mageia-3-x86_64-DVD.iso.txt b/tests/isodata/mageia/mageia3/Mageia-3-x86_64-DVD.iso.txt -deleted file mode 100644 -index 8ea4538..0000000 ---- a/tests/isodata/mageia/mageia3/Mageia-3-x86_64-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: Mageia --Volume id: Mageia-3-x86_64 --Volume set id: Mageia 3 - x86_64 DVD --Publisher id: Mageia --Data preparer id: Mageia BCD --Application id: Mageia 3 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1922645 --El Torito VD version 1 found, boot catalog is in sector 673 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Mageia' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2A2 674 -diff --git a/tests/isodata/mageia/mageia4/Mageia-4-LiveCD-GNOME-en-i586-CD.iso.txt b/tests/isodata/mageia/mageia4/Mageia-4-LiveCD-GNOME-en-i586-CD.iso.txt -deleted file mode 100644 -index 063319f..0000000 ---- a/tests/isodata/mageia/mageia4/Mageia-4-LiveCD-GNOME-en-i586-CD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Mageia-4-GNOME-LiveCD --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 335695 --El Torito VD version 1 found, boot catalog is in sector 49 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1C5 453 -diff --git a/tests/isodata/mageia/mageia4/Mageia-4-LiveCD-KDE4-en-i586-CD.iso.txt b/tests/isodata/mageia/mageia4/Mageia-4-LiveCD-KDE4-en-i586-CD.iso.txt -deleted file mode 100644 -index 9123332..0000000 ---- a/tests/isodata/mageia/mageia4/Mageia-4-LiveCD-KDE4-en-i586-CD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Mageia-4-KDE4-LiveCD --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 332276 --El Torito VD version 1 found, boot catalog is in sector 49 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1C5 453 -diff --git a/tests/isodata/mageia/mageia4/Mageia-4-LiveDVD-GNOME-i586-DVD.iso.txt b/tests/isodata/mageia/mageia4/Mageia-4-LiveDVD-GNOME-i586-DVD.iso.txt -deleted file mode 100644 -index 93f0b97..0000000 ---- a/tests/isodata/mageia/mageia4/Mageia-4-LiveDVD-GNOME-i586-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Mageia-4-GNOME-LiveDVD --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 713728 --El Torito VD version 1 found, boot catalog is in sector 49 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1C5 453 -diff --git a/tests/isodata/mageia/mageia4/Mageia-4-LiveDVD-GNOME-x86_64-DVD.iso.txt b/tests/isodata/mageia/mageia4/Mageia-4-LiveDVD-GNOME-x86_64-DVD.iso.txt -deleted file mode 100644 -index f383320..0000000 ---- a/tests/isodata/mageia/mageia4/Mageia-4-LiveDVD-GNOME-x86_64-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Mageia-4-GNOME-LiveDVD --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 741346 --El Torito VD version 1 found, boot catalog is in sector 57 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1CD 461 -diff --git a/tests/isodata/mageia/mageia4/Mageia-4-LiveDVD-KDE4-i586-DVD.iso.txt b/tests/isodata/mageia/mageia4/Mageia-4-LiveDVD-KDE4-i586-DVD.iso.txt -deleted file mode 100644 -index 3dc6c14..0000000 ---- a/tests/isodata/mageia/mageia4/Mageia-4-LiveDVD-KDE4-i586-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Mageia-4-KDE4-LiveDVD --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 752819 --El Torito VD version 1 found, boot catalog is in sector 49 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1C5 453 -diff --git a/tests/isodata/mageia/mageia4/Mageia-4-LiveDVD-KDE4-x86_64-DVD.iso.txt b/tests/isodata/mageia/mageia4/Mageia-4-LiveDVD-KDE4-x86_64-DVD.iso.txt -deleted file mode 100644 -index a40799b..0000000 ---- a/tests/isodata/mageia/mageia4/Mageia-4-LiveDVD-KDE4-x86_64-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Mageia-4-KDE4-LiveDVD --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 780836 --El Torito VD version 1 found, boot catalog is in sector 57 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1CD 461 -diff --git a/tests/isodata/mageia/mageia4/Mageia-4-dual-DVD.iso.txt b/tests/isodata/mageia/mageia4/Mageia-4-dual-DVD.iso.txt -deleted file mode 100644 -index 6f0dab5..0000000 ---- a/tests/isodata/mageia/mageia4/Mageia-4-dual-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: Mageia.Org --Volume id: Mageia-4 --Volume set id: Mageia.Org Mageia - 4 --Publisher id: Mageia.Org --Data preparer id: Mageia.Org BCD --Application id: Mageia - 4 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 526334 --El Torito VD version 1 found, boot catalog is in sector 356 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Mageia.Org' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 165 357 -diff --git a/tests/isodata/mageia/mageia4/Mageia-4-i586-DVD.iso.txt b/tests/isodata/mageia/mageia4/Mageia-4-i586-DVD.iso.txt -deleted file mode 100644 -index d25f00b..0000000 ---- a/tests/isodata/mageia/mageia4/Mageia-4-i586-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: Mageia --Volume id: Mageia-4-i586 --Volume set id: Mageia 4 - i586 DVD --Publisher id: Mageia --Data preparer id: Mageia BCD --Application id: Mageia 4 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1894830 --El Torito VD version 1 found, boot catalog is in sector 688 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Mageia' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2B1 689 -diff --git a/tests/isodata/mageia/mageia4/Mageia-4-x86_64-DVD.iso.txt b/tests/isodata/mageia/mageia4/Mageia-4-x86_64-DVD.iso.txt -deleted file mode 100644 -index b11c1a4..0000000 ---- a/tests/isodata/mageia/mageia4/Mageia-4-x86_64-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: Mageia --Volume id: Mageia-4-x86_64 --Volume set id: Mageia 4 - x86_64 DVD --Publisher id: Mageia --Data preparer id: Mageia BCD --Application id: Mageia 4 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1899080 --El Torito VD version 1 found, boot catalog is in sector 704 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Mageia' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 38C1 14529 -diff --git a/tests/isodata/mageia/mageia4/Mageia-4.1-LiveCD-GNOME-en-i586-CD.iso.txt b/tests/isodata/mageia/mageia4/Mageia-4.1-LiveCD-GNOME-en-i586-CD.iso.txt -deleted file mode 100644 -index 2ec03c5..0000000 ---- a/tests/isodata/mageia/mageia4/Mageia-4.1-LiveCD-GNOME-en-i586-CD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Mageia-4.1-GNOME-LiveCD --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 334419 --El Torito VD version 1 found, boot catalog is in sector 49 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1C1 449 -diff --git a/tests/isodata/mageia/mageia4/Mageia-4.1-LiveCD-KDE4-en-i586-CD.iso.txt b/tests/isodata/mageia/mageia4/Mageia-4.1-LiveCD-KDE4-en-i586-CD.iso.txt -deleted file mode 100644 -index 51c8ff7..0000000 ---- a/tests/isodata/mageia/mageia4/Mageia-4.1-LiveCD-KDE4-en-i586-CD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Mageia-4.1-KDE4-LiveCD --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 336513 --El Torito VD version 1 found, boot catalog is in sector 49 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1C1 449 -diff --git a/tests/isodata/mageia/mageia4/Mageia-4.1-LiveDVD-GNOME-i586-DVD.iso.txt b/tests/isodata/mageia/mageia4/Mageia-4.1-LiveDVD-GNOME-i586-DVD.iso.txt -deleted file mode 100644 -index b475958..0000000 ---- a/tests/isodata/mageia/mageia4/Mageia-4.1-LiveDVD-GNOME-i586-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Mageia-4.1-GNOME-LiveDVD --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 718387 --El Torito VD version 1 found, boot catalog is in sector 49 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1C1 449 -diff --git a/tests/isodata/mageia/mageia4/Mageia-4.1-LiveDVD-GNOME-x86_64-DVD.iso.txt b/tests/isodata/mageia/mageia4/Mageia-4.1-LiveDVD-GNOME-x86_64-DVD.iso.txt -deleted file mode 100644 -index 7e81aac..0000000 ---- a/tests/isodata/mageia/mageia4/Mageia-4.1-LiveDVD-GNOME-x86_64-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Mageia-4.1-GNOME-LiveDVD --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 746261 --El Torito VD version 1 found, boot catalog is in sector 57 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1C9 457 -diff --git a/tests/isodata/mageia/mageia4/Mageia-4.1-LiveDVD-KDE4-i586-DVD.iso.txt b/tests/isodata/mageia/mageia4/Mageia-4.1-LiveDVD-KDE4-i586-DVD.iso.txt -deleted file mode 100644 -index ef2226e..0000000 ---- a/tests/isodata/mageia/mageia4/Mageia-4.1-LiveDVD-KDE4-i586-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Mageia-4.1-KDE4-LiveDVD --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 754457 --El Torito VD version 1 found, boot catalog is in sector 49 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1C1 449 -diff --git a/tests/isodata/mageia/mageia4/Mageia-4.1-LiveDVD-KDE4-x86_64-DVD.iso.txt b/tests/isodata/mageia/mageia4/Mageia-4.1-LiveDVD-KDE4-x86_64-DVD.iso.txt -deleted file mode 100644 -index 732c4c3..0000000 ---- a/tests/isodata/mageia/mageia4/Mageia-4.1-LiveDVD-KDE4-x86_64-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Mageia-4.1-KDE4-LiveDVD --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 784997 --El Torito VD version 1 found, boot catalog is in sector 57 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1C9 457 -diff --git a/tests/isodata/mageia/mageia4/Mageia-4.1-dual-DVD.iso.txt b/tests/isodata/mageia/mageia4/Mageia-4.1-dual-DVD.iso.txt -deleted file mode 100644 -index aedd9bf..0000000 ---- a/tests/isodata/mageia/mageia4/Mageia-4.1-dual-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: Mageia.Org --Volume id: Mageia-4.1 --Volume set id: Mageia.Org Mageia - 4.1 --Publisher id: Mageia.Org --Data preparer id: Mageia.Org BCD --Application id: Mageia - 4.1 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 526099 --El Torito VD version 1 found, boot catalog is in sector 358 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Mageia.Org' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 167 359 -diff --git a/tests/isodata/mageia/mageia4/Mageia-4.1-i586-DVD.iso.txt b/tests/isodata/mageia/mageia4/Mageia-4.1-i586-DVD.iso.txt -deleted file mode 100644 -index d0e396d..0000000 ---- a/tests/isodata/mageia/mageia4/Mageia-4.1-i586-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: Mageia --Volume id: Mageia-4.1-i586 --Volume set id: Mageia 4.1 - i586 DVD --Publisher id: Mageia --Data preparer id: Mageia BCD --Application id: Mageia 4.1 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1835748 --El Torito VD version 1 found, boot catalog is in sector 687 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Mageia' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2B0 688 -diff --git a/tests/isodata/mageia/mageia4/Mageia-4.1-x86_64-DVD.iso.txt b/tests/isodata/mageia/mageia4/Mageia-4.1-x86_64-DVD.iso.txt -deleted file mode 100644 -index 50d5ee3..0000000 ---- a/tests/isodata/mageia/mageia4/Mageia-4.1-x86_64-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: Mageia --Volume id: Mageia-4.1-x86_64 --Volume set id: Mageia 4.1 - x86_64 DVD --Publisher id: Mageia --Data preparer id: Mageia BCD --Application id: Mageia 4.1 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1849992 --El Torito VD version 1 found, boot catalog is in sector 704 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Mageia' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 38C1 14529 -diff --git a/tests/isodata/mageia/mageia5/Mageia-5-LiveCD-GNOME-en-i586-CD.iso.txt b/tests/isodata/mageia/mageia5/Mageia-5-LiveCD-GNOME-en-i586-CD.iso.txt -deleted file mode 100644 -index eb9f8c7..0000000 ---- a/tests/isodata/mageia/mageia5/Mageia-5-LiveCD-GNOME-en-i586-CD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Mageia-5-GNOME-LiveCD --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.3.8 2014.06.28.071001, LIBISOBURN-1.3.8, LIBISOFS-1.3.8, LIBBURN-1.3.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 351082 --El Torito VD version 1 found, boot catalog is in sector 45 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2E 46 -diff --git a/tests/isodata/mageia/mageia5/Mageia-5-LiveCD-KDE4-en-i586-CD.iso.txt b/tests/isodata/mageia/mageia5/Mageia-5-LiveCD-KDE4-en-i586-CD.iso.txt -deleted file mode 100644 -index 33d3ac6..0000000 ---- a/tests/isodata/mageia/mageia5/Mageia-5-LiveCD-KDE4-en-i586-CD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Mageia-5-KDE4-LiveCD --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.3.8 2014.06.28.071001, LIBISOBURN-1.3.8, LIBISOFS-1.3.8, LIBBURN-1.3.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 357948 --El Torito VD version 1 found, boot catalog is in sector 45 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2E 46 -diff --git a/tests/isodata/mageia/mageia5/Mageia-5-LiveDVD-GNOME-i586-DVD.iso.txt b/tests/isodata/mageia/mageia5/Mageia-5-LiveDVD-GNOME-i586-DVD.iso.txt -deleted file mode 100644 -index bc0e25b..0000000 ---- a/tests/isodata/mageia/mageia5/Mageia-5-LiveDVD-GNOME-i586-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Mageia-5-GNOME-LiveDVD --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.3.8 2014.06.28.071001, LIBISOBURN-1.3.8, LIBISOFS-1.3.8, LIBBURN-1.3.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 769070 --El Torito VD version 1 found, boot catalog is in sector 45 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2E 46 -diff --git a/tests/isodata/mageia/mageia5/Mageia-5-LiveDVD-GNOME-x86_64-DVD.iso.txt b/tests/isodata/mageia/mageia5/Mageia-5-LiveDVD-GNOME-x86_64-DVD.iso.txt -deleted file mode 100644 -index 67c5e54..0000000 ---- a/tests/isodata/mageia/mageia5/Mageia-5-LiveDVD-GNOME-x86_64-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Mageia-5-GNOME-LiveDVD --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.3.8 2014.06.28.071001, LIBISOBURN-1.3.8, LIBISOFS-1.3.8, LIBBURN-1.3.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 794159 --El Torito VD version 1 found, boot catalog is in sector 55 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 38 56 -diff --git a/tests/isodata/mageia/mageia5/Mageia-5-LiveDVD-KDE4-i586-DVD.iso.txt b/tests/isodata/mageia/mageia5/Mageia-5-LiveDVD-KDE4-i586-DVD.iso.txt -deleted file mode 100644 -index 0746b55..0000000 ---- a/tests/isodata/mageia/mageia5/Mageia-5-LiveDVD-KDE4-i586-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Mageia-5-KDE4-LiveDVD --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.3.8 2014.06.28.071001, LIBISOBURN-1.3.8, LIBISOFS-1.3.8, LIBBURN-1.3.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 871530 --El Torito VD version 1 found, boot catalog is in sector 45 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2E 46 -diff --git a/tests/isodata/mageia/mageia5/Mageia-5-LiveDVD-KDE4-x86_64-DVD.iso.txt b/tests/isodata/mageia/mageia5/Mageia-5-LiveDVD-KDE4-x86_64-DVD.iso.txt -deleted file mode 100644 -index 593762f..0000000 ---- a/tests/isodata/mageia/mageia5/Mageia-5-LiveDVD-KDE4-x86_64-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Mageia-5-KDE4-LiveDVD --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.3.8 2014.06.28.071001, LIBISOBURN-1.3.8, LIBISOFS-1.3.8, LIBBURN-1.3.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 894774 --El Torito VD version 1 found, boot catalog is in sector 55 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 38 56 -diff --git a/tests/isodata/mageia/mageia5/Mageia-5-dual-DVD.iso.txt b/tests/isodata/mageia/mageia5/Mageia-5-dual-DVD.iso.txt -deleted file mode 100644 -index 5edcd19..0000000 ---- a/tests/isodata/mageia/mageia5/Mageia-5-dual-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: MAGEIA.ORG --Volume id: Mageia-5 --Volume set id: Mageia.Org Mageia - 5 --Publisher id: MAGEIA.ORG --Data preparer id: MAGEIA.ORG BCD --Application id: MAGEIA - 5 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 628777 --El Torito VD version 1 found, boot catalog is in sector 373 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 176 374 -diff --git a/tests/isodata/mageia/mageia5/Mageia-5-i586-DVD.iso.txt b/tests/isodata/mageia/mageia5/Mageia-5-i586-DVD.iso.txt -deleted file mode 100644 -index bfeaf70..0000000 ---- a/tests/isodata/mageia/mageia5/Mageia-5-i586-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: MAGEIA --Volume id: Mageia-5-i586 --Volume set id: Mageia 5 - i586 DVD --Publisher id: MAGEIA --Data preparer id: MAGEIA BCD --Application id: MAGEIA 5 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1761672 --El Torito VD version 1 found, boot catalog is in sector 643 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 284 644 -diff --git a/tests/isodata/mageia/mageia5/Mageia-5-x86_64-DVD.iso.txt b/tests/isodata/mageia/mageia5/Mageia-5-x86_64-DVD.iso.txt -deleted file mode 100644 -index 85a6c5c..0000000 ---- a/tests/isodata/mageia/mageia5/Mageia-5-x86_64-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: MAGEIA --Volume id: Mageia-5-x86_64 --Volume set id: Mageia 5 - x86_64 DVD --Publisher id: MAGEIA --Data preparer id: MAGEIA BCD --Application id: MAGEIA 5 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1913102 --El Torito VD version 1 found, boot catalog is in sector 659 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 294 660 -diff --git a/tests/isodata/mageia/mageia6/Mageia-6-LiveDVD-GNOME-x86_64-DVD.iso.txt b/tests/isodata/mageia/mageia6/Mageia-6-LiveDVD-GNOME-x86_64-DVD.iso.txt -deleted file mode 100644 -index d825b69..0000000 ---- a/tests/isodata/mageia/mageia6/Mageia-6-LiveDVD-GNOME-x86_64-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Mageia-6-GNOME-LiveDVD --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.3.8 2014.06.28.071001, LIBISOBURN-1.3.8, LIBISOFS-1.3.8, LIBBURN-1.3.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1060621 --El Torito VD version 1 found, boot catalog is in sector 55 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 38 56 -diff --git a/tests/isodata/mageia/mageia6/Mageia-6-LiveDVD-Plasma-x86_64-DVD.iso.txt b/tests/isodata/mageia/mageia6/Mageia-6-LiveDVD-Plasma-x86_64-DVD.iso.txt -deleted file mode 100644 -index 24b8fa5..0000000 ---- a/tests/isodata/mageia/mageia6/Mageia-6-LiveDVD-Plasma-x86_64-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Mageia-6-Plasma-LiveDVD --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.3.8 2014.06.28.071001, LIBISOBURN-1.3.8, LIBISOFS-1.3.8, LIBBURN-1.3.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1282379 --El Torito VD version 1 found, boot catalog is in sector 55 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 38 56 -diff --git a/tests/isodata/mageia/mageia6/Mageia-6-LiveDVD-Xfce-i586-DVD.iso.txt b/tests/isodata/mageia/mageia6/Mageia-6-LiveDVD-Xfce-i586-DVD.iso.txt -deleted file mode 100644 -index 7f25adb..0000000 ---- a/tests/isodata/mageia/mageia6/Mageia-6-LiveDVD-Xfce-i586-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Mageia-6-Xfce-LiveDVD --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.3.8 2014.06.28.071001, LIBISOBURN-1.3.8, LIBISOFS-1.3.8, LIBBURN-1.3.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 968203 --El Torito VD version 1 found, boot catalog is in sector 45 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2E 46 -diff --git a/tests/isodata/mageia/mageia6/Mageia-6-LiveDVD-Xfce-x86_64-DVD.iso.txt b/tests/isodata/mageia/mageia6/Mageia-6-LiveDVD-Xfce-x86_64-DVD.iso.txt -deleted file mode 100644 -index 27612ad..0000000 ---- a/tests/isodata/mageia/mageia6/Mageia-6-LiveDVD-Xfce-x86_64-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Mageia-6-Xfce-LiveDVD --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.3.8 2014.06.28.071001, LIBISOBURN-1.3.8, LIBISOFS-1.3.8, LIBBURN-1.3.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 980055 --El Torito VD version 1 found, boot catalog is in sector 55 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 38 56 -diff --git a/tests/isodata/mageia/mageia6/Mageia-6-i586-DVD.iso.txt b/tests/isodata/mageia/mageia6/Mageia-6-i586-DVD.iso.txt -deleted file mode 100644 -index 9a374de..0000000 ---- a/tests/isodata/mageia/mageia6/Mageia-6-i586-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: MAGEIA --Volume id: Mageia-6-i586 --Volume set id: Mageia 6 - i586 DVD --Publisher id: MAGEIA --Data preparer id: MAGEIA BCD --Application id: MAGEIA 6 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1914602 --El Torito VD version 1 found, boot catalog is in sector 659 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 294 660 -diff --git a/tests/isodata/mageia/mageia6/Mageia-6-x86_64-DVD.iso.txt b/tests/isodata/mageia/mageia6/Mageia-6-x86_64-DVD.iso.txt -deleted file mode 100644 -index e048039..0000000 ---- a/tests/isodata/mageia/mageia6/Mageia-6-x86_64-DVD.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: MAGEIA --Volume id: Mageia-6-x86_64 --Volume set id: Mageia 6 - x86_64 DVD --Publisher id: MAGEIA --Data preparer id: MAGEIA BCD --Application id: MAGEIA 6 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1905742 --El Torito VD version 1 found, boot catalog is in sector 677 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff AA6 2726 -diff --git a/tests/isodata/netbsd/netbsd6.0/NetBSD-6.0-amd64-boot-com.iso.txt b/tests/isodata/netbsd/netbsd6.0/NetBSD-6.0-amd64-boot-com.iso.txt -deleted file mode 100644 -index 6da8b2a..0000000 ---- a/tests/isodata/netbsd/netbsd6.0/NetBSD-6.0-amd64-boot-com.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: NetBSD --Volume id: NETBSD_60 --Volume set id: --Publisher id: THE_NETBSD_PROJECT --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 23736 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -diff --git a/tests/isodata/netbsd/netbsd6.0/NetBSD-6.0-amd64-boot.iso.txt b/tests/isodata/netbsd/netbsd6.0/NetBSD-6.0-amd64-boot.iso.txt -deleted file mode 100644 -index 6da8b2a..0000000 ---- a/tests/isodata/netbsd/netbsd6.0/NetBSD-6.0-amd64-boot.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: NetBSD --Volume id: NETBSD_60 --Volume set id: --Publisher id: THE_NETBSD_PROJECT --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 23736 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -diff --git a/tests/isodata/netbsd/netbsd6.0/NetBSD-6.0-amd64.iso.txt b/tests/isodata/netbsd/netbsd6.0/NetBSD-6.0-amd64.iso.txt -deleted file mode 100644 -index 8c9d8ed..0000000 ---- a/tests/isodata/netbsd/netbsd6.0/NetBSD-6.0-amd64.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: NetBSD --Volume id: NETBSD_60 --Volume set id: --Publisher id: THE_NETBSD_PROJECT --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 168821 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -diff --git a/tests/isodata/netbsd/netbsd6.0/NetBSD-6.0-i386-boot-com.iso.txt b/tests/isodata/netbsd/netbsd6.0/NetBSD-6.0-i386-boot-com.iso.txt -deleted file mode 100644 -index f5ca773..0000000 ---- a/tests/isodata/netbsd/netbsd6.0/NetBSD-6.0-i386-boot-com.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: NetBSD --Volume id: NETBSD_60 --Volume set id: --Publisher id: THE_NETBSD_PROJECT --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 21825 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -diff --git a/tests/isodata/netbsd/netbsd6.0/NetBSD-6.0-i386-boot.iso.txt b/tests/isodata/netbsd/netbsd6.0/NetBSD-6.0-i386-boot.iso.txt -deleted file mode 100644 -index f5ca773..0000000 ---- a/tests/isodata/netbsd/netbsd6.0/NetBSD-6.0-i386-boot.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: NetBSD --Volume id: NETBSD_60 --Volume set id: --Publisher id: THE_NETBSD_PROJECT --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 21825 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -diff --git a/tests/isodata/netbsd/netbsd6.0/NetBSD-6.0-i386.iso.txt b/tests/isodata/netbsd/netbsd6.0/NetBSD-6.0-i386.iso.txt -deleted file mode 100644 -index 6fec4a7..0000000 ---- a/tests/isodata/netbsd/netbsd6.0/NetBSD-6.0-i386.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: NetBSD --Volume id: NETBSD_60 --Volume set id: --Publisher id: THE_NETBSD_PROJECT --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 160024 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -diff --git a/tests/isodata/netbsd/netbsd6.1/NetBSD-6.1-amd64-boot-com.iso.txt b/tests/isodata/netbsd/netbsd6.1/NetBSD-6.1-amd64-boot-com.iso.txt -deleted file mode 100644 -index e7d1767..0000000 ---- a/tests/isodata/netbsd/netbsd6.1/NetBSD-6.1-amd64-boot-com.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: NetBSD --Volume id: NETBSD_61 --Volume set id: --Publisher id: THE_NETBSD_PROJECT --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 23828 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -diff --git a/tests/isodata/netbsd/netbsd6.1/NetBSD-6.1-amd64-boot.iso.txt b/tests/isodata/netbsd/netbsd6.1/NetBSD-6.1-amd64-boot.iso.txt -deleted file mode 100644 -index e7d1767..0000000 ---- a/tests/isodata/netbsd/netbsd6.1/NetBSD-6.1-amd64-boot.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: NetBSD --Volume id: NETBSD_61 --Volume set id: --Publisher id: THE_NETBSD_PROJECT --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 23828 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -diff --git a/tests/isodata/netbsd/netbsd6.1/NetBSD-6.1-amd64.iso.txt b/tests/isodata/netbsd/netbsd6.1/NetBSD-6.1-amd64.iso.txt -deleted file mode 100644 -index 1954b96..0000000 ---- a/tests/isodata/netbsd/netbsd6.1/NetBSD-6.1-amd64.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: NetBSD --Volume id: NETBSD_61 --Volume set id: --Publisher id: THE_NETBSD_PROJECT --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 169251 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -diff --git a/tests/isodata/netbsd/netbsd6.1/NetBSD-6.1-i386-boot-com.iso.txt b/tests/isodata/netbsd/netbsd6.1/NetBSD-6.1-i386-boot-com.iso.txt -deleted file mode 100644 -index f13c5ec..0000000 ---- a/tests/isodata/netbsd/netbsd6.1/NetBSD-6.1-i386-boot-com.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: NetBSD --Volume id: NETBSD_61 --Volume set id: --Publisher id: THE_NETBSD_PROJECT --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 21896 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -diff --git a/tests/isodata/netbsd/netbsd6.1/NetBSD-6.1-i386-boot.iso.txt b/tests/isodata/netbsd/netbsd6.1/NetBSD-6.1-i386-boot.iso.txt -deleted file mode 100644 -index f13c5ec..0000000 ---- a/tests/isodata/netbsd/netbsd6.1/NetBSD-6.1-i386-boot.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: NetBSD --Volume id: NETBSD_61 --Volume set id: --Publisher id: THE_NETBSD_PROJECT --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 21896 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -diff --git a/tests/isodata/netbsd/netbsd6.1/NetBSD-6.1-i386.iso.txt b/tests/isodata/netbsd/netbsd6.1/NetBSD-6.1-i386.iso.txt -deleted file mode 100644 -index 7928474..0000000 ---- a/tests/isodata/netbsd/netbsd6.1/NetBSD-6.1-i386.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: NetBSD --Volume id: NETBSD_61 --Volume set id: --Publisher id: THE_NETBSD_PROJECT --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 160498 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -diff --git a/tests/isodata/netbsd/netbsd7.0/NetBSD-7.0-amd64-boot-com.iso.txt b/tests/isodata/netbsd/netbsd7.0/NetBSD-7.0-amd64-boot-com.iso.txt -deleted file mode 100644 -index 7733bc9..0000000 ---- a/tests/isodata/netbsd/netbsd7.0/NetBSD-7.0-amd64-boot-com.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: NetBSD --Volume id: NETBSD_70 --Volume set id: --Publisher id: THE_NETBSD_PROJECT --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 41469 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -diff --git a/tests/isodata/netbsd/netbsd7.0/NetBSD-7.0-amd64-boot.iso.txt b/tests/isodata/netbsd/netbsd7.0/NetBSD-7.0-amd64-boot.iso.txt -deleted file mode 100644 -index 7733bc9..0000000 ---- a/tests/isodata/netbsd/netbsd7.0/NetBSD-7.0-amd64-boot.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: NetBSD --Volume id: NETBSD_70 --Volume set id: --Publisher id: THE_NETBSD_PROJECT --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 41469 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -diff --git a/tests/isodata/netbsd/netbsd7.0/NetBSD-7.0-amd64.iso.txt b/tests/isodata/netbsd/netbsd7.0/NetBSD-7.0-amd64.iso.txt -deleted file mode 100644 -index 4aec4ea..0000000 ---- a/tests/isodata/netbsd/netbsd7.0/NetBSD-7.0-amd64.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: NetBSD --Volume id: NETBSD_70 --Volume set id: --Publisher id: THE_NETBSD_PROJECT --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 190171 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -diff --git a/tests/isodata/netbsd/netbsd7.0/NetBSD-7.0-i386-boot-com.iso.txt b/tests/isodata/netbsd/netbsd7.0/NetBSD-7.0-i386-boot-com.iso.txt -deleted file mode 100644 -index 3ee1db1..0000000 ---- a/tests/isodata/netbsd/netbsd7.0/NetBSD-7.0-i386-boot-com.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: NetBSD --Volume id: NETBSD_70 --Volume set id: --Publisher id: THE_NETBSD_PROJECT --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 43829 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -diff --git a/tests/isodata/netbsd/netbsd7.0/NetBSD-7.0-i386-boot.iso.txt b/tests/isodata/netbsd/netbsd7.0/NetBSD-7.0-i386-boot.iso.txt -deleted file mode 100644 -index 3ee1db1..0000000 ---- a/tests/isodata/netbsd/netbsd7.0/NetBSD-7.0-i386-boot.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: NetBSD --Volume id: NETBSD_70 --Volume set id: --Publisher id: THE_NETBSD_PROJECT --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 43829 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -diff --git a/tests/isodata/netbsd/netbsd7.0/NetBSD-7.0-i386.iso.txt b/tests/isodata/netbsd/netbsd7.0/NetBSD-7.0-i386.iso.txt -deleted file mode 100644 -index 5b85b61..0000000 ---- a/tests/isodata/netbsd/netbsd7.0/NetBSD-7.0-i386.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: NetBSD --Volume id: NETBSD_70 --Volume set id: --Publisher id: THE_NETBSD_PROJECT --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 207054 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -diff --git a/tests/isodata/netbsd/netbsd7.1.1/NetBSD-7.1.1-amd64-boot-com.iso.txt b/tests/isodata/netbsd/netbsd7.1.1/NetBSD-7.1.1-amd64-boot-com.iso.txt -deleted file mode 100644 -index cc7381c..0000000 ---- a/tests/isodata/netbsd/netbsd7.1.1/NetBSD-7.1.1-amd64-boot-com.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: NetBSD --Volume id: NETBSD_711 --Volume set id: --Publisher id: THE_NETBSD_PROJECT --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 41956 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -diff --git a/tests/isodata/netbsd/netbsd7.1.1/NetBSD-7.1.1-amd64-boot.iso.txt b/tests/isodata/netbsd/netbsd7.1.1/NetBSD-7.1.1-amd64-boot.iso.txt -deleted file mode 100644 -index cc7381c..0000000 ---- a/tests/isodata/netbsd/netbsd7.1.1/NetBSD-7.1.1-amd64-boot.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: NetBSD --Volume id: NETBSD_711 --Volume set id: --Publisher id: THE_NETBSD_PROJECT --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 41956 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -diff --git a/tests/isodata/netbsd/netbsd7.1.1/NetBSD-7.1.1-amd64.iso.txt b/tests/isodata/netbsd/netbsd7.1.1/NetBSD-7.1.1-amd64.iso.txt -deleted file mode 100644 -index e06d732..0000000 ---- a/tests/isodata/netbsd/netbsd7.1.1/NetBSD-7.1.1-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: NetBSD --Volume id: NETBSD_711 --Volume set id: --Publisher id: THE_NETBSD_PROJECT --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 192145 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 14 20 -diff --git a/tests/isodata/netbsd/netbsd7.1.1/NetBSD-7.1.1-i386-boot-com.iso.txt b/tests/isodata/netbsd/netbsd7.1.1/NetBSD-7.1.1-i386-boot-com.iso.txt -deleted file mode 100644 -index 17e87fa..0000000 ---- a/tests/isodata/netbsd/netbsd7.1.1/NetBSD-7.1.1-i386-boot-com.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: NetBSD --Volume id: NETBSD_711 --Volume set id: --Publisher id: THE_NETBSD_PROJECT --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 44321 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -diff --git a/tests/isodata/netbsd/netbsd7.1.1/NetBSD-7.1.1-i386-boot.iso.txt b/tests/isodata/netbsd/netbsd7.1.1/NetBSD-7.1.1-i386-boot.iso.txt -deleted file mode 100644 -index 17e87fa..0000000 ---- a/tests/isodata/netbsd/netbsd7.1.1/NetBSD-7.1.1-i386-boot.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: NetBSD --Volume id: NETBSD_711 --Volume set id: --Publisher id: THE_NETBSD_PROJECT --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 44321 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -diff --git a/tests/isodata/netbsd/netbsd7.1.1/NetBSD-7.1.1-i386.iso.txt b/tests/isodata/netbsd/netbsd7.1.1/NetBSD-7.1.1-i386.iso.txt -deleted file mode 100644 -index f9b8123..0000000 ---- a/tests/isodata/netbsd/netbsd7.1.1/NetBSD-7.1.1-i386.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: NetBSD --Volume id: NETBSD_711 --Volume set id: --Publisher id: THE_NETBSD_PROJECT --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 208849 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -diff --git a/tests/isodata/netbsd/netbsd7.1.2/NetBSD-7.1.2-amd64-boot-com.iso.txt b/tests/isodata/netbsd/netbsd7.1.2/NetBSD-7.1.2-amd64-boot-com.iso.txt -deleted file mode 100644 -index 5d7b41b..0000000 ---- a/tests/isodata/netbsd/netbsd7.1.2/NetBSD-7.1.2-amd64-boot-com.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: NetBSD --Volume id: NETBSD_712 --Volume set id: --Publisher id: THE_NETBSD_PROJECT --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 41957 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 14 20 -diff --git a/tests/isodata/netbsd/netbsd7.1.2/NetBSD-7.1.2-amd64-boot.iso.txt b/tests/isodata/netbsd/netbsd7.1.2/NetBSD-7.1.2-amd64-boot.iso.txt -deleted file mode 100644 -index 09e6c18..0000000 ---- a/tests/isodata/netbsd/netbsd7.1.2/NetBSD-7.1.2-amd64-boot.iso.txt -+++ /dev/null -@@ -1,33 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: NetBSD --Volume id: NETBSD_712 --Volume set id: --Publisher id: THE_NETBSD_PROJECT --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 41957 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -- --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'IEEE_P1282' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Cksum AA 55 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 14 20 -diff --git a/tests/isodata/netbsd/netbsd7.1.2/NetBSD-7.1.2-amd64.iso.txt b/tests/isodata/netbsd/netbsd7.1.2/NetBSD-7.1.2-amd64.iso.txt -deleted file mode 100644 -index 67a65ac..0000000 ---- a/tests/isodata/netbsd/netbsd7.1.2/NetBSD-7.1.2-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: NetBSD --Volume id: NETBSD_712 --Volume set id: --Publisher id: THE_NETBSD_PROJECT --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 192151 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 14 20 -diff --git a/tests/isodata/netbsd/netbsd7.1.2/NetBSD-7.1.2-i386-boot-com.iso.txt b/tests/isodata/netbsd/netbsd7.1.2/NetBSD-7.1.2-i386-boot-com.iso.txt -deleted file mode 100644 -index 3754483..0000000 ---- a/tests/isodata/netbsd/netbsd7.1.2/NetBSD-7.1.2-i386-boot-com.iso.txt -+++ /dev/null -@@ -1,33 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: NetBSD --Volume id: NETBSD_712 --Volume set id: --Publisher id: THE_NETBSD_PROJECT --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 44301 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -- --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'IEEE_P1282' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Cksum AA 55 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 14 20 -diff --git a/tests/isodata/netbsd/netbsd7.1.2/NetBSD-7.1.2-i386-boot.iso.txt b/tests/isodata/netbsd/netbsd7.1.2/NetBSD-7.1.2-i386-boot.iso.txt -deleted file mode 100644 -index 3754483..0000000 ---- a/tests/isodata/netbsd/netbsd7.1.2/NetBSD-7.1.2-i386-boot.iso.txt -+++ /dev/null -@@ -1,33 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: NetBSD --Volume id: NETBSD_712 --Volume set id: --Publisher id: THE_NETBSD_PROJECT --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 44301 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -- --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'IEEE_P1282' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Cksum AA 55 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 14 20 -diff --git a/tests/isodata/netbsd/netbsd7.1.2/NetBSD-7.1.2-i386.iso.txt b/tests/isodata/netbsd/netbsd7.1.2/NetBSD-7.1.2-i386.iso.txt -deleted file mode 100644 -index 2e289d6..0000000 ---- a/tests/isodata/netbsd/netbsd7.1.2/NetBSD-7.1.2-i386.iso.txt -+++ /dev/null -@@ -1,33 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: NetBSD --Volume id: NETBSD_712 --Volume set id: --Publisher id: THE_NETBSD_PROJECT --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 208475 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -- --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'IEEE_P1282' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Cksum AA 55 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 14 20 -diff --git a/tests/isodata/netbsd/netbsd7.1/NetBSD-7.1-amd64-boot-com.iso.txt b/tests/isodata/netbsd/netbsd7.1/NetBSD-7.1-amd64-boot-com.iso.txt -deleted file mode 100644 -index a18c11e..0000000 ---- a/tests/isodata/netbsd/netbsd7.1/NetBSD-7.1-amd64-boot-com.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: NetBSD --Volume id: NETBSD_71 --Volume set id: --Publisher id: THE_NETBSD_PROJECT --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 41544 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -diff --git a/tests/isodata/netbsd/netbsd7.1/NetBSD-7.1-amd64-boot.iso.txt b/tests/isodata/netbsd/netbsd7.1/NetBSD-7.1-amd64-boot.iso.txt -deleted file mode 100644 -index a18c11e..0000000 ---- a/tests/isodata/netbsd/netbsd7.1/NetBSD-7.1-amd64-boot.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: NetBSD --Volume id: NETBSD_71 --Volume set id: --Publisher id: THE_NETBSD_PROJECT --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 41544 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -diff --git a/tests/isodata/netbsd/netbsd7.1/NetBSD-7.1-amd64.iso.txt b/tests/isodata/netbsd/netbsd7.1/NetBSD-7.1-amd64.iso.txt -deleted file mode 100644 -index a5d00a2..0000000 ---- a/tests/isodata/netbsd/netbsd7.1/NetBSD-7.1-amd64.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: NetBSD --Volume id: NETBSD_71 --Volume set id: --Publisher id: THE_NETBSD_PROJECT --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 190898 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -diff --git a/tests/isodata/netbsd/netbsd7.1/NetBSD-7.1-i386-boot-com.iso.txt b/tests/isodata/netbsd/netbsd7.1/NetBSD-7.1-i386-boot-com.iso.txt -deleted file mode 100644 -index ab29d54..0000000 ---- a/tests/isodata/netbsd/netbsd7.1/NetBSD-7.1-i386-boot-com.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: NetBSD --Volume id: NETBSD_71 --Volume set id: --Publisher id: THE_NETBSD_PROJECT --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 43915 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -diff --git a/tests/isodata/netbsd/netbsd7.1/NetBSD-7.1-i386-boot.iso.txt b/tests/isodata/netbsd/netbsd7.1/NetBSD-7.1-i386-boot.iso.txt -deleted file mode 100644 -index 797cbcd..0000000 ---- a/tests/isodata/netbsd/netbsd7.1/NetBSD-7.1-i386-boot.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: NetBSD --Volume id: NETBSD_71 --Volume set id: --Publisher id: THE_NETBSD_PROJECT --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 43915 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 14 20 -diff --git a/tests/isodata/netbsd/netbsd7.1/NetBSD-7.1-i386.iso.txt b/tests/isodata/netbsd/netbsd7.1/NetBSD-7.1-i386.iso.txt -deleted file mode 100644 -index e4e582b..0000000 ---- a/tests/isodata/netbsd/netbsd7.1/NetBSD-7.1-i386.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: NetBSD --Volume id: NETBSD_71 --Volume set id: --Publisher id: THE_NETBSD_PROJECT --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 207863 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -diff --git a/tests/isodata/netbsd/netbsd7.2/NetBSD-7.2-amd64-boot-com.iso.txt b/tests/isodata/netbsd/netbsd7.2/NetBSD-7.2-amd64-boot-com.iso.txt -deleted file mode 100644 -index a02e940..0000000 ---- a/tests/isodata/netbsd/netbsd7.2/NetBSD-7.2-amd64-boot-com.iso.txt -+++ /dev/null -@@ -1,33 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: NetBSD --Volume id: NETBSD_72 --Volume set id: --Publisher id: THE_NETBSD_PROJECT --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 46508 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -- --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'IEEE_P1282' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Cksum AA 55 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 14 20 -diff --git a/tests/isodata/netbsd/netbsd7.2/NetBSD-7.2-amd64-boot.iso.txt b/tests/isodata/netbsd/netbsd7.2/NetBSD-7.2-amd64-boot.iso.txt -deleted file mode 100644 -index a02e940..0000000 ---- a/tests/isodata/netbsd/netbsd7.2/NetBSD-7.2-amd64-boot.iso.txt -+++ /dev/null -@@ -1,33 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: NetBSD --Volume id: NETBSD_72 --Volume set id: --Publisher id: THE_NETBSD_PROJECT --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 46508 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -- --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'IEEE_P1282' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Cksum AA 55 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 14 20 -diff --git a/tests/isodata/netbsd/netbsd7.2/NetBSD-7.2-amd64.iso.txt b/tests/isodata/netbsd/netbsd7.2/NetBSD-7.2-amd64.iso.txt -deleted file mode 100644 -index cb5fb91..0000000 ---- a/tests/isodata/netbsd/netbsd7.2/NetBSD-7.2-amd64.iso.txt -+++ /dev/null -@@ -1,33 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: NetBSD --Volume id: NETBSD_72 --Volume set id: --Publisher id: THE_NETBSD_PROJECT --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 198791 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -- --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'IEEE_P1282' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Cksum AA 55 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 14 20 -diff --git a/tests/isodata/netbsd/netbsd7.2/NetBSD-7.2-i386-boot-com.iso.txt b/tests/isodata/netbsd/netbsd7.2/NetBSD-7.2-i386-boot-com.iso.txt -deleted file mode 100644 -index 9f49fb3..0000000 ---- a/tests/isodata/netbsd/netbsd7.2/NetBSD-7.2-i386-boot-com.iso.txt -+++ /dev/null -@@ -1,33 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: NetBSD --Volume id: NETBSD_72 --Volume set id: --Publisher id: THE_NETBSD_PROJECT --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 48849 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -- --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'IEEE_P1282' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Cksum AA 55 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 14 20 -diff --git a/tests/isodata/netbsd/netbsd7.2/NetBSD-7.2-i386-boot.iso.txt b/tests/isodata/netbsd/netbsd7.2/NetBSD-7.2-i386-boot.iso.txt -deleted file mode 100644 -index 9f49fb3..0000000 ---- a/tests/isodata/netbsd/netbsd7.2/NetBSD-7.2-i386-boot.iso.txt -+++ /dev/null -@@ -1,33 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: NetBSD --Volume id: NETBSD_72 --Volume set id: --Publisher id: THE_NETBSD_PROJECT --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 48849 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -- --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'IEEE_P1282' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Cksum AA 55 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 14 20 -diff --git a/tests/isodata/netbsd/netbsd7.2/NetBSD-7.2-i386.iso.txt b/tests/isodata/netbsd/netbsd7.2/NetBSD-7.2-i386.iso.txt -deleted file mode 100644 -index 4c249d4..0000000 ---- a/tests/isodata/netbsd/netbsd7.2/NetBSD-7.2-i386.iso.txt -+++ /dev/null -@@ -1,33 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: NetBSD --Volume id: NETBSD_72 --Volume set id: --Publisher id: THE_NETBSD_PROJECT --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 214489 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -- --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'IEEE_P1282' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Cksum AA 55 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 14 20 -diff --git a/tests/isodata/netbsd/netbsd8.0/NetBSD-8.0-amd64-boot-com.iso.txt b/tests/isodata/netbsd/netbsd8.0/NetBSD-8.0-amd64-boot-com.iso.txt -deleted file mode 100644 -index 2a2db15..0000000 ---- a/tests/isodata/netbsd/netbsd8.0/NetBSD-8.0-amd64-boot-com.iso.txt -+++ /dev/null -@@ -1,34 +0,0 @@ --Setting input-charset to 'UTF-8' from locale. --CD-ROM is in ISO 9660 format --System id: NetBSD --Volume id: NETBSD_80 --Volume set id: --Publisher id: THE_NETBSD_PROJECT --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 112029 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -- --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'IEEE_P1282' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Cksum AA 55 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 214 532 -diff --git a/tests/isodata/netbsd/netbsd8.0/NetBSD-8.0-amd64-boot.iso.txt b/tests/isodata/netbsd/netbsd8.0/NetBSD-8.0-amd64-boot.iso.txt -deleted file mode 100644 -index 2a2db15..0000000 ---- a/tests/isodata/netbsd/netbsd8.0/NetBSD-8.0-amd64-boot.iso.txt -+++ /dev/null -@@ -1,34 +0,0 @@ --Setting input-charset to 'UTF-8' from locale. --CD-ROM is in ISO 9660 format --System id: NetBSD --Volume id: NETBSD_80 --Volume set id: --Publisher id: THE_NETBSD_PROJECT --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 112029 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -- --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'IEEE_P1282' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Cksum AA 55 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 214 532 -diff --git a/tests/isodata/netbsd/netbsd8.0/NetBSD-8.0-amd64.iso.txt b/tests/isodata/netbsd/netbsd8.0/NetBSD-8.0-amd64.iso.txt -deleted file mode 100644 -index a408a6c..0000000 ---- a/tests/isodata/netbsd/netbsd8.0/NetBSD-8.0-amd64.iso.txt -+++ /dev/null -@@ -1,34 +0,0 @@ --Setting input-charset to 'UTF-8' from locale. --CD-ROM is in ISO 9660 format --System id: NetBSD --Volume id: NETBSD_80 --Volume set id: --Publisher id: THE_NETBSD_PROJECT --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 366468 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -- --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'IEEE_P1282' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Cksum AA 55 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 214 532 -diff --git a/tests/isodata/netbsd/netbsd8.0/NetBSD-8.0-i386-boot-com.iso.txt b/tests/isodata/netbsd/netbsd8.0/NetBSD-8.0-i386-boot-com.iso.txt -deleted file mode 100644 -index e65ff23..0000000 ---- a/tests/isodata/netbsd/netbsd8.0/NetBSD-8.0-i386-boot-com.iso.txt -+++ /dev/null -@@ -1,34 +0,0 @@ --Setting input-charset to 'UTF-8' from locale. --CD-ROM is in ISO 9660 format --System id: NetBSD --Volume id: NETBSD_80 --Volume set id: --Publisher id: THE_NETBSD_PROJECT --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 103122 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -- --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'IEEE_P1282' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Cksum AA 55 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 14 20 -diff --git a/tests/isodata/netbsd/netbsd8.0/NetBSD-8.0-i386-boot.iso.txt b/tests/isodata/netbsd/netbsd8.0/NetBSD-8.0-i386-boot.iso.txt -deleted file mode 100644 -index e65ff23..0000000 ---- a/tests/isodata/netbsd/netbsd8.0/NetBSD-8.0-i386-boot.iso.txt -+++ /dev/null -@@ -1,34 +0,0 @@ --Setting input-charset to 'UTF-8' from locale. --CD-ROM is in ISO 9660 format --System id: NetBSD --Volume id: NETBSD_80 --Volume set id: --Publisher id: THE_NETBSD_PROJECT --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 103122 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -- --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'IEEE_P1282' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Cksum AA 55 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 14 20 -diff --git a/tests/isodata/netbsd/netbsd8.0/NetBSD-8.0-i386.iso.txt b/tests/isodata/netbsd/netbsd8.0/NetBSD-8.0-i386.iso.txt -deleted file mode 100644 -index bcc0c26..0000000 ---- a/tests/isodata/netbsd/netbsd8.0/NetBSD-8.0-i386.iso.txt -+++ /dev/null -@@ -1,34 +0,0 @@ --Setting input-charset to 'UTF-8' from locale. --CD-ROM is in ISO 9660 format --System id: NetBSD --Volume id: NETBSD_80 --Volume set id: --Publisher id: THE_NETBSD_PROJECT --Data preparer id: --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 346414 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -- --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'IEEE_P1282' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Cksum AA 55 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 14 20 -diff --git a/tests/isodata/openbsd/openbsd4.2/openbsd-4.2-amd64.txt b/tests/isodata/openbsd/openbsd4.2/openbsd-4.2-amd64.txt -deleted file mode 100644 -index f05ab3f..0000000 ---- a/tests/isodata/openbsd/openbsd4.2/openbsd-4.2-amd64.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: OpenBSD --Volume id: OpenBSD/amd64 4.2 Install CD --Volume set id: --Publisher id: Copyright (c) 2007 Theo de Raadt, The OpenBSD project --Data preparer id: Theo de Raadt --Application id: OpenBSD 4.2 amd64 Install CD --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 114111 --El Torito VD version 1 found, boot catalog is in sector 22927 --NO Joliet present --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Copyright (c) 2007 Theo' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 7DC8 32200 -diff --git a/tests/isodata/openbsd/openbsd4.2/openbsd-4.2-i386.txt b/tests/isodata/openbsd/openbsd4.2/openbsd-4.2-i386.txt -deleted file mode 100644 -index 9aa84d5..0000000 ---- a/tests/isodata/openbsd/openbsd4.2/openbsd-4.2-i386.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: OpenBSD --Volume id: OpenBSD/i386 4.2 Install CD --Volume set id: --Publisher id: Copyright (c) 2007 Theo de Raadt, The OpenBSD project --Data preparer id: Theo de Raadt --Application id: OpenBSD 4.2 i386 Install CD --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 104274 --El Torito VD version 1 found, boot catalog is in sector 20834 --NO Joliet present --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Copyright (c) 2007 Theo' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 7300 29440 -diff --git a/tests/isodata/openbsd/openbsd4.3/openbsd-4.3-amd64.txt b/tests/isodata/openbsd/openbsd4.3/openbsd-4.3-amd64.txt -deleted file mode 100644 -index c050f3e..0000000 ---- a/tests/isodata/openbsd/openbsd4.3/openbsd-4.3-amd64.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: OpenBSD --Volume id: OpenBSD/amd64 4.3 Install CD --Volume set id: --Publisher id: Copyright (c) 2008 Theo de Raadt, The OpenBSD project --Data preparer id: Theo de Raadt --Application id: OpenBSD 4.3 amd64 Install CD --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 113499 --El Torito VD version 1 found, boot catalog is in sector 23639 --NO Joliet present --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Copyright (c) 2008 Theo' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 81EE 33262 -diff --git a/tests/isodata/openbsd/openbsd4.3/openbsd-4.3-i386.txt b/tests/isodata/openbsd/openbsd4.3/openbsd-4.3-i386.txt -deleted file mode 100644 -index a81466a..0000000 ---- a/tests/isodata/openbsd/openbsd4.3/openbsd-4.3-i386.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: OpenBSD --Volume id: OpenBSD/i386 4.3 Install CD --Volume set id: --Publisher id: Copyright (c) 2008 Theo de Raadt, The OpenBSD project --Data preparer id: Theo de Raadt --Application id: OpenBSD 4.3 i386 Install CD --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 103714 --El Torito VD version 1 found, boot catalog is in sector 21459 --NO Joliet present --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Copyright (c) 2008 Theo' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 769C 30364 -diff --git a/tests/isodata/openbsd/openbsd4.4/openbsd-4.4-amd64.txt b/tests/isodata/openbsd/openbsd4.4/openbsd-4.4-amd64.txt -deleted file mode 100644 -index d71f4cc..0000000 ---- a/tests/isodata/openbsd/openbsd4.4/openbsd-4.4-amd64.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: OpenBSD --Volume id: OpenBSD/amd64 4.4 Install CD --Volume set id: --Publisher id: Copyright (c) 2008 Theo de Raadt, The OpenBSD project --Data preparer id: Theo de Raadt --Application id: OpenBSD 4.4 amd64 Install CD --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 120971 --El Torito VD version 1 found, boot catalog is in sector 23657 --NO Joliet present --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Copyright (c) 2008 Theo' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 848E 33934 -diff --git a/tests/isodata/openbsd/openbsd4.4/openbsd-4.4-i386.txt b/tests/isodata/openbsd/openbsd4.4/openbsd-4.4-i386.txt -deleted file mode 100644 -index a25bfe2..0000000 ---- a/tests/isodata/openbsd/openbsd4.4/openbsd-4.4-i386.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: OpenBSD --Volume id: OpenBSD/i386 4.4 Install CD --Volume set id: --Publisher id: Copyright (c) 2008 Theo de Raadt, The OpenBSD project --Data preparer id: Theo de Raadt --Application id: OpenBSD 4.4 i386 Install CD --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 110488 --El Torito VD version 1 found, boot catalog is in sector 21484 --NO Joliet present --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Copyright (c) 2008 Theo' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 78D9 30937 -diff --git a/tests/isodata/openbsd/openbsd4.5/openbsd-4.5-amd64.txt b/tests/isodata/openbsd/openbsd4.5/openbsd-4.5-amd64.txt -deleted file mode 100644 -index 69a32ca..0000000 ---- a/tests/isodata/openbsd/openbsd4.5/openbsd-4.5-amd64.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: OpenBSD --Volume id: OpenBSD/amd64 4.5 Install CD --Volume set id: --Publisher id: Copyright (c) 2009 Theo de Raadt, The OpenBSD project --Data preparer id: Theo de Raadt --Application id: OpenBSD 4.5 amd64 Install CD --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 128267 --El Torito VD version 1 found, boot catalog is in sector 25702 --NO Joliet present --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Copyright (c) 2009 Theo' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 8CCA 36042 -diff --git a/tests/isodata/openbsd/openbsd4.5/openbsd-4.5-i386.txt b/tests/isodata/openbsd/openbsd4.5/openbsd-4.5-i386.txt -deleted file mode 100644 -index 6628d61..0000000 ---- a/tests/isodata/openbsd/openbsd4.5/openbsd-4.5-i386.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: OpenBSD --Volume id: OpenBSD/i386 4.5 Install CD --Volume set id: --Publisher id: Copyright (c) 2009 Theo de Raadt, The OpenBSD project --Data preparer id: Theo de Raadt --Application id: OpenBSD 4.5 i386 Install CD --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 117163 --El Torito VD version 1 found, boot catalog is in sector 23502 --NO Joliet present --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Copyright (c) 2009 Theo' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 8026 32806 -diff --git a/tests/isodata/openbsd/openbsd4.8/openbsd-4.8-amd64.txt b/tests/isodata/openbsd/openbsd4.8/openbsd-4.8-amd64.txt -deleted file mode 100644 -index 043003b..0000000 ---- a/tests/isodata/openbsd/openbsd4.8/openbsd-4.8-amd64.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: OpenBSD --Volume id: OpenBSD/amd64 4.8 Install CD --Volume set id: --Publisher id: Copyright (c) 2010 Theo de Raadt, The OpenBSD project --Data preparer id: Theo de Raadt --Application id: OpenBSD 4.8 amd64 Install CD --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 115261 --El Torito VD version 1 found, boot catalog is in sector 27999 --NO Joliet present --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Copyright (c) 2010 Theo' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 9CBB 40123 -diff --git a/tests/isodata/openbsd/openbsd4.8/openbsd-4.8-i386.txt b/tests/isodata/openbsd/openbsd4.8/openbsd-4.8-i386.txt -deleted file mode 100644 -index 62f790c..0000000 ---- a/tests/isodata/openbsd/openbsd4.8/openbsd-4.8-i386.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: OpenBSD --Volume id: OpenBSD/i386 4.8 Install CD --Volume set id: --Publisher id: Copyright (c) 2010 Theo de Raadt, The OpenBSD project --Data preparer id: Theo de Raadt --Application id: OpenBSD 4.8 i386 Install CD --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 108377 --El Torito VD version 1 found, boot catalog is in sector 25835 --NO Joliet present --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Copyright (c) 2010 Theo' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 92E9 37609 -diff --git a/tests/isodata/openbsd/openbsd4.9/openbsd-4.9-amd64.txt b/tests/isodata/openbsd/openbsd4.9/openbsd-4.9-amd64.txt -deleted file mode 100644 -index 5496d3e..0000000 ---- a/tests/isodata/openbsd/openbsd4.9/openbsd-4.9-amd64.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: OpenBSD --Volume id: OpenBSD/amd64 4.9 Install CD --Volume set id: --Publisher id: Copyright (c) 2011 Theo de Raadt, The OpenBSD project --Data preparer id: Theo de Raadt --Application id: OpenBSD 4.9 amd64 Install CD --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 117210 --El Torito VD version 1 found, boot catalog is in sector 28968 --NO Joliet present --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Copyright (c) 2011 Theo' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff A122 41250 -diff --git a/tests/isodata/openbsd/openbsd4.9/openbsd-4.9-i386.txt b/tests/isodata/openbsd/openbsd4.9/openbsd-4.9-i386.txt -deleted file mode 100644 -index ec8b7e1..0000000 ---- a/tests/isodata/openbsd/openbsd4.9/openbsd-4.9-i386.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: OpenBSD --Volume id: OpenBSD/i386 4.9 Install CD --Volume set id: --Publisher id: Copyright (c) 2011 Theo de Raadt, The OpenBSD project --Data preparer id: Theo de Raadt --Application id: OpenBSD 4.9 i386 Install CD --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 110196 --El Torito VD version 1 found, boot catalog is in sector 26784 --NO Joliet present --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Copyright (c) 2011 Theo' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 9758 38744 -diff --git a/tests/isodata/openbsd/openbsd5.0/openbsd-5.0-amd64.txt b/tests/isodata/openbsd/openbsd5.0/openbsd-5.0-amd64.txt -deleted file mode 100644 -index fdc5163..0000000 ---- a/tests/isodata/openbsd/openbsd5.0/openbsd-5.0-amd64.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: OpenBSD --Volume id: OpenBSD/amd64 5.0 Install CD --Volume set id: --Publisher id: Copyright (c) 2011 Theo de Raadt, The OpenBSD project --Data preparer id: Theo de Raadt --Application id: OpenBSD 5.0 amd64 Install CD --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 119287 --El Torito VD version 1 found, boot catalog is in sector 29189 --NO Joliet present --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Copyright (c) 2011 Theo' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff A268 41576 -diff --git a/tests/isodata/openbsd/openbsd5.0/openbsd-5.0-i386.txt b/tests/isodata/openbsd/openbsd5.0/openbsd-5.0-i386.txt -deleted file mode 100644 -index cf5eae0..0000000 ---- a/tests/isodata/openbsd/openbsd5.0/openbsd-5.0-i386.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: OpenBSD --Volume id: OpenBSD/i386 5.0 Install CD --Volume set id: --Publisher id: Copyright (c) 2011 Theo de Raadt, The OpenBSD project --Data preparer id: Theo de Raadt --Application id: OpenBSD 5.0 i386 Install CD --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 112025 --El Torito VD version 1 found, boot catalog is in sector 26985 --NO Joliet present --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Copyright (c) 2011 Theo' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 97F0 38896 -diff --git a/tests/isodata/openbsd/openbsd5.1/openbsd-5.1-amd64.txt b/tests/isodata/openbsd/openbsd5.1/openbsd-5.1-amd64.txt -deleted file mode 100644 -index 2292428..0000000 ---- a/tests/isodata/openbsd/openbsd5.1/openbsd-5.1-amd64.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: OpenBSD --Volume id: OpenBSD/amd64 5.1 Install CD --Volume set id: --Publisher id: Copyright (c) 2012 Theo de Raadt, The OpenBSD project --Data preparer id: Theo de Raadt --Application id: OpenBSD 5.1 amd64 Install CD --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 120651 --El Torito VD version 1 found, boot catalog is in sector 29246 --NO Joliet present --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Copyright (c) 2012 Theo' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff A2CD 41677 -diff --git a/tests/isodata/openbsd/openbsd5.1/openbsd-5.1-i386.txt b/tests/isodata/openbsd/openbsd5.1/openbsd-5.1-i386.txt -deleted file mode 100644 -index 6919665..0000000 ---- a/tests/isodata/openbsd/openbsd5.1/openbsd-5.1-i386.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: OpenBSD --Volume id: OpenBSD/i386 5.1 Install CD --Volume set id: --Publisher id: Copyright (c) 2012 Theo de Raadt, The OpenBSD project --Data preparer id: Theo de Raadt --Application id: OpenBSD 5.1 i386 Install CD --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 113427 --El Torito VD version 1 found, boot catalog is in sector 27053 --NO Joliet present --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Copyright (c) 2012 Theo' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 9861 39009 -diff --git a/tests/isodata/openbsd/openbsd5.2/openbsd-5.2-amd64.txt b/tests/isodata/openbsd/openbsd5.2/openbsd-5.2-amd64.txt -deleted file mode 100644 -index 8fd6d07..0000000 ---- a/tests/isodata/openbsd/openbsd5.2/openbsd-5.2-amd64.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: OpenBSD --Volume id: OpenBSD/amd64 5.2 Install CD --Volume set id: --Publisher id: Copyright (c) 2012 Theo de Raadt, The OpenBSD project --Data preparer id: Theo de Raadt --Application id: OpenBSD 5.2 amd64 Install CD --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 123417 --El Torito VD version 1 found, boot catalog is in sector 30006 --NO Joliet present --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Copyright (c) 2012 Theo' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff A5E0 42464 -diff --git a/tests/isodata/openbsd/openbsd5.2/openbsd-5.2-i386.txt b/tests/isodata/openbsd/openbsd5.2/openbsd-5.2-i386.txt -deleted file mode 100644 -index 95b2dbe..0000000 ---- a/tests/isodata/openbsd/openbsd5.2/openbsd-5.2-i386.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: OpenBSD --Volume id: OpenBSD/i386 5.2 Install CD --Volume set id: --Publisher id: Copyright (c) 2012 Theo de Raadt, The OpenBSD project --Data preparer id: Theo de Raadt --Application id: OpenBSD 5.2 i386 Install CD --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 115946 --El Torito VD version 1 found, boot catalog is in sector 27739 --NO Joliet present --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Copyright (c) 2012 Theo' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 9B2A 39722 -diff --git a/tests/isodata/openbsd/openbsd5.3/openbsd-5.3-amd64.txt b/tests/isodata/openbsd/openbsd5.3/openbsd-5.3-amd64.txt -deleted file mode 100644 -index 966b172..0000000 ---- a/tests/isodata/openbsd/openbsd5.3/openbsd-5.3-amd64.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: OpenBSD --Volume id: OpenBSD/amd64 5.3 Install CD --Volume set id: --Publisher id: Copyright (c) 2013 Theo de Raadt, The OpenBSD project --Data preparer id: Theo de Raadt --Application id: OpenBSD 5.3 amd64 Install CD --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 116239 --El Torito VD version 1 found, boot catalog is in sector 30905 --NO Joliet present --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Copyright (c) 2013 Theo' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff AA0E 43534 -diff --git a/tests/isodata/openbsd/openbsd5.3/openbsd-5.3-i386.txt b/tests/isodata/openbsd/openbsd5.3/openbsd-5.3-i386.txt -deleted file mode 100644 -index 9fd9f59..0000000 ---- a/tests/isodata/openbsd/openbsd5.3/openbsd-5.3-i386.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: OpenBSD --Volume id: OpenBSD/i386 5.3 Install CD --Volume set id: --Publisher id: Copyright (c) 2013 Theo de Raadt, The OpenBSD project --Data preparer id: Theo de Raadt --Application id: OpenBSD 5.3 i386 Install CD --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 108560 --El Torito VD version 1 found, boot catalog is in sector 27908 --NO Joliet present --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Copyright (c) 2013 Theo' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 9C80 40064 -diff --git a/tests/isodata/openbsd/openbsd5.4/openbsd-5.4-amd64.txt b/tests/isodata/openbsd/openbsd5.4/openbsd-5.4-amd64.txt -deleted file mode 100644 -index 6b5f8af..0000000 ---- a/tests/isodata/openbsd/openbsd5.4/openbsd-5.4-amd64.txt -+++ /dev/null -@@ -1,33 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: OpenBSD --Volume id: OpenBSD/amd64 5.4 Install CD --Volume set id: --Publisher id: Copyright (c) 2013 Theo de Raadt, The OpenBSD project --Data preparer id: Theo de Raadt --Application id: OpenBSD 5.4 amd64 Install CD --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 118677 --El Torito VD version 1 found, boot catalog is in sector 30976 --NO Joliet present -- --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'RRIP_1991A' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Copyright (c) 2013 Theo' -- Cksum FF D9 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff AC9E 44190 -diff --git a/tests/isodata/openbsd/openbsd5.4/openbsd-5.4-i386.txt b/tests/isodata/openbsd/openbsd5.4/openbsd-5.4-i386.txt -deleted file mode 100644 -index 524c38a..0000000 ---- a/tests/isodata/openbsd/openbsd5.4/openbsd-5.4-i386.txt -+++ /dev/null -@@ -1,33 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: OpenBSD --Volume id: OpenBSD/i386 5.4 Install CD --Volume set id: --Publisher id: Copyright (c) 2013 Theo de Raadt, The OpenBSD project --Data preparer id: Theo de Raadt --Application id: OpenBSD 5.4 i386 Install CD --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 110713 --El Torito VD version 1 found, boot catalog is in sector 27933 --NO Joliet present -- --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'RRIP_1991A' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Copyright (c) 2013 Theo' -- Cksum FF D9 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 9E6D 40557 -diff --git a/tests/isodata/openbsd/openbsd5.5/openbsd-5.5-amd64.txt b/tests/isodata/openbsd/openbsd5.5/openbsd-5.5-amd64.txt -deleted file mode 100644 -index 1ca76cb..0000000 ---- a/tests/isodata/openbsd/openbsd5.5/openbsd-5.5-amd64.txt -+++ /dev/null -@@ -1,33 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: OpenBSD --Volume id: OpenBSD/amd64 5.5 Install CD --Volume set id: --Publisher id: Copyright (c) 2014 Theo de Raadt, The OpenBSD project --Data preparer id: Theo de Raadt --Application id: OpenBSD 5.5 amd64 Install CD --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 121232 --El Torito VD version 1 found, boot catalog is in sector 31309 --NO Joliet present -- --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'RRIP_1991A' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Copyright (c) 2014 Theo' -- Cksum FF D8 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff B79A 47002 -diff --git a/tests/isodata/openbsd/openbsd5.5/openbsd-5.5-i386.txt b/tests/isodata/openbsd/openbsd5.5/openbsd-5.5-i386.txt -deleted file mode 100644 -index 40ff185..0000000 ---- a/tests/isodata/openbsd/openbsd5.5/openbsd-5.5-i386.txt -+++ /dev/null -@@ -1,33 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: OpenBSD --Volume id: OpenBSD/i386 5.5 Install CD --Volume set id: --Publisher id: Copyright (c) 2014 Theo de Raadt, The OpenBSD project --Data preparer id: Theo de Raadt --Application id: OpenBSD 5.5 i386 Install CD --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 113425 --El Torito VD version 1 found, boot catalog is in sector 29430 --NO Joliet present -- --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'RRIP_1991A' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Copyright (c) 2014 Theo' -- Cksum FF D8 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff A7AA 42922 -diff --git a/tests/isodata/openbsd/openbsd5.6/openbsd-5.6-amd64.txt b/tests/isodata/openbsd/openbsd5.6/openbsd-5.6-amd64.txt -deleted file mode 100644 -index a67639c..0000000 ---- a/tests/isodata/openbsd/openbsd5.6/openbsd-5.6-amd64.txt -+++ /dev/null -@@ -1,33 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: OpenBSD --Volume id: OpenBSD/amd64 5.6 Install CD --Volume set id: --Publisher id: Copyright (c) 2014 Theo de Raadt, The OpenBSD project --Data preparer id: Theo de Raadt --Application id: OpenBSD 5.6 amd64 Install CD --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 116324 --El Torito VD version 1 found, boot catalog is in sector 31116 --NO Joliet present -- --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'RRIP_1991A' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Copyright (c) 2014 Theo' -- Cksum FF D8 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff B863 47203 -diff --git a/tests/isodata/openbsd/openbsd5.6/openbsd-5.6-i386.txt b/tests/isodata/openbsd/openbsd5.6/openbsd-5.6-i386.txt -deleted file mode 100644 -index 648d1a8..0000000 ---- a/tests/isodata/openbsd/openbsd5.6/openbsd-5.6-i386.txt -+++ /dev/null -@@ -1,33 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: OpenBSD --Volume id: OpenBSD/i386 5.6 Install CD --Volume set id: --Publisher id: Copyright (c) 2014 Theo de Raadt, The OpenBSD project --Data preparer id: Theo de Raadt --Application id: OpenBSD 5.6 i386 Install CD --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 108058 --El Torito VD version 1 found, boot catalog is in sector 28782 --NO Joliet present -- --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'RRIP_1991A' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Copyright (c) 2014 Theo' -- Cksum FF D8 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff A680 42624 -diff --git a/tests/isodata/openbsd/openbsd5.7/openbsd-5.7-amd64.txt b/tests/isodata/openbsd/openbsd5.7/openbsd-5.7-amd64.txt -deleted file mode 100644 -index 7c8b765..0000000 ---- a/tests/isodata/openbsd/openbsd5.7/openbsd-5.7-amd64.txt -+++ /dev/null -@@ -1,33 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: OpenBSD --Volume id: OpenBSD/amd64 5.7 Install CD --Volume set id: --Publisher id: Copyright (c) 2015 Theo de Raadt, The OpenBSD project --Data preparer id: Theo de Raadt --Application id: OpenBSD 5.7 amd64 Install CD --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 112111 --El Torito VD version 1 found, boot catalog is in sector 28049 --NO Joliet present -- --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'RRIP_1991A' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Copyright (c) 2015 Theo' -- Cksum FF D7 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff A288 41608 -diff --git a/tests/isodata/openbsd/openbsd5.7/openbsd-5.7-i386.txt b/tests/isodata/openbsd/openbsd5.7/openbsd-5.7-i386.txt -deleted file mode 100644 -index 7c1b3db..0000000 ---- a/tests/isodata/openbsd/openbsd5.7/openbsd-5.7-i386.txt -+++ /dev/null -@@ -1,33 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: OpenBSD --Volume id: OpenBSD/i386 5.7 Install CD --Volume set id: --Publisher id: Copyright (c) 2015 Theo de Raadt, The OpenBSD project --Data preparer id: Theo de Raadt --Application id: OpenBSD 5.7 i386 Install CD --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 106267 --El Torito VD version 1 found, boot catalog is in sector 25841 --NO Joliet present -- --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'RRIP_1991A' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Copyright (c) 2015 Theo' -- Cksum FF D7 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 9ADD 39645 -diff --git a/tests/isodata/openbsd/openbsd5.8/openbsd-5.8-amd64.txt b/tests/isodata/openbsd/openbsd5.8/openbsd-5.8-amd64.txt -deleted file mode 100644 -index 752c7b0..0000000 ---- a/tests/isodata/openbsd/openbsd5.8/openbsd-5.8-amd64.txt -+++ /dev/null -@@ -1,33 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: OpenBSD --Volume id: OpenBSD/amd64 5.8 Install CD --Volume set id: --Publisher id: Copyright (c) 2015 Theo de Raadt, The OpenBSD project --Data preparer id: Theo de Raadt --Application id: OpenBSD 5.8 amd64 Install CD --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 112726 --El Torito VD version 1 found, boot catalog is in sector 27402 --NO Joliet present -- --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'RRIP_1991A' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Copyright (c) 2015 Theo' -- Cksum FF D7 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 9FE6 40934 -diff --git a/tests/isodata/openbsd/openbsd5.8/openbsd-5.8-i386.txt b/tests/isodata/openbsd/openbsd5.8/openbsd-5.8-i386.txt -deleted file mode 100644 -index 58f9be0..0000000 ---- a/tests/isodata/openbsd/openbsd5.8/openbsd-5.8-i386.txt -+++ /dev/null -@@ -1,33 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: OpenBSD --Volume id: OpenBSD/i386 5.8 Install CD --Volume set id: --Publisher id: Copyright (c) 2015 Theo de Raadt, The OpenBSD project --Data preparer id: Theo de Raadt --Application id: OpenBSD 5.8 i386 Install CD --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 107373 --El Torito VD version 1 found, boot catalog is in sector 25892 --NO Joliet present -- --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'RRIP_1991A' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Copyright (c) 2015 Theo' -- Cksum FF D7 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 9AF8 39672 -diff --git a/tests/isodata/openbsd/openbsd5.9/openbsd-5.9-amd64.txt b/tests/isodata/openbsd/openbsd5.9/openbsd-5.9-amd64.txt -deleted file mode 100644 -index 5070cad..0000000 ---- a/tests/isodata/openbsd/openbsd5.9/openbsd-5.9-amd64.txt -+++ /dev/null -@@ -1,33 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: OpenBSD --Volume id: OpenBSD/amd64 5.9 Install CD --Volume set id: --Publisher id: Copyright (c) 2016 Theo de Raadt, The OpenBSD project --Data preparer id: Theo de Raadt --Application id: OpenBSD 5.9 amd64 Install CD --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 114093 --El Torito VD version 1 found, boot catalog is in sector 25835 --NO Joliet present -- --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'RRIP_1991A' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Copyright (c) 2016 Theo' -- Cksum FF D6 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 9B0B 39691 -diff --git a/tests/isodata/openbsd/openbsd5.9/openbsd-5.9-i386.txt b/tests/isodata/openbsd/openbsd5.9/openbsd-5.9-i386.txt -deleted file mode 100644 -index 0b7fae9..0000000 ---- a/tests/isodata/openbsd/openbsd5.9/openbsd-5.9-i386.txt -+++ /dev/null -@@ -1,33 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: OpenBSD --Volume id: OpenBSD/i386 5.9 Install CD --Volume set id: --Publisher id: Copyright (c) 2016 Theo de Raadt, The OpenBSD project --Data preparer id: Theo de Raadt --Application id: OpenBSD 5.9 i386 Install CD --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 108955 --El Torito VD version 1 found, boot catalog is in sector 24333 --NO Joliet present -- --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'RRIP_1991A' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Copyright (c) 2016 Theo' -- Cksum FF D6 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 95D4 38356 -diff --git a/tests/isodata/openbsd/openbsd6.0/openbsd-6.0-amd64.txt b/tests/isodata/openbsd/openbsd6.0/openbsd-6.0-amd64.txt -deleted file mode 100644 -index 133742d..0000000 ---- a/tests/isodata/openbsd/openbsd6.0/openbsd-6.0-amd64.txt -+++ /dev/null -@@ -1,33 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: OpenBSD --Volume id: OpenBSD/amd64 6.0 Install CD --Volume set id: --Publisher id: Copyright (c) 2016 Theo de Raadt, The OpenBSD project --Data preparer id: Theo de Raadt --Application id: OpenBSD 6.0 amd64 Install CD --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 115951 --El Torito VD version 1 found, boot catalog is in sector 27243 --NO Joliet present -- --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'RRIP_1991A' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Copyright (c) 2016 Theo' -- Cksum FF D6 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff A1D1 41425 -diff --git a/tests/isodata/openbsd/openbsd6.0/openbsd-6.0-i386.txt b/tests/isodata/openbsd/openbsd6.0/openbsd-6.0-i386.txt -deleted file mode 100644 -index 1f3e174..0000000 ---- a/tests/isodata/openbsd/openbsd6.0/openbsd-6.0-i386.txt -+++ /dev/null -@@ -1,33 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: OpenBSD --Volume id: OpenBSD/i386 6.0 Install CD --Volume set id: --Publisher id: Copyright (c) 2016 Theo de Raadt, The OpenBSD project --Data preparer id: Theo de Raadt --Application id: OpenBSD 6.0 i386 Install CD --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 110500 --El Torito VD version 1 found, boot catalog is in sector 25588 --NO Joliet present -- --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'RRIP_1991A' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Copyright (c) 2016 Theo' -- Cksum FF D6 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 9B5B 39771 -diff --git a/tests/isodata/openbsd/openbsd6.1/openbsd-6.1-amd64.txt b/tests/isodata/openbsd/openbsd6.1/openbsd-6.1-amd64.txt -deleted file mode 100644 -index 786c606..0000000 ---- a/tests/isodata/openbsd/openbsd6.1/openbsd-6.1-amd64.txt -+++ /dev/null -@@ -1,33 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: OpenBSD --Volume id: OpenBSD/amd64 6.1 Install CD --Volume set id: --Publisher id: Copyright (c) 2017 Theo de Raadt, The OpenBSD project --Data preparer id: Theo de Raadt --Application id: OpenBSD 6.1 amd64 Install CD --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 107214 --El Torito VD version 1 found, boot catalog is in sector 26193 --NO Joliet present -- --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'RRIP_1991A' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Copyright (c) 2017 Theo' -- Cksum FF D5 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff A15F 41311 -diff --git a/tests/isodata/openbsd/openbsd6.1/openbsd-6.1-i386.txt b/tests/isodata/openbsd/openbsd6.1/openbsd-6.1-i386.txt -deleted file mode 100644 -index 650b8af..0000000 ---- a/tests/isodata/openbsd/openbsd6.1/openbsd-6.1-i386.txt -+++ /dev/null -@@ -1,33 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: OpenBSD --Volume id: OpenBSD/i386 6.1 Install CD --Volume set id: --Publisher id: Copyright (c) 2017 Theo de Raadt, The OpenBSD project --Data preparer id: Theo de Raadt --Application id: OpenBSD 6.1 i386 Install CD --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 101903 --El Torito VD version 1 found, boot catalog is in sector 24562 --NO Joliet present -- --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'RRIP_1991A' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Copyright (c) 2017 Theo' -- Cksum FF D5 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 9A06 39430 -diff --git a/tests/isodata/openbsd/openbsd6.2/openbsd-6.2-amd64.txt b/tests/isodata/openbsd/openbsd6.2/openbsd-6.2-amd64.txt -deleted file mode 100644 -index c0dbb6a..0000000 ---- a/tests/isodata/openbsd/openbsd6.2/openbsd-6.2-amd64.txt -+++ /dev/null -@@ -1,33 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: OpenBSD --Volume id: OpenBSD/amd64 6.2 Install CD --Volume set id: --Publisher id: Copyright (c) 2017 Theo de Raadt, The OpenBSD project --Data preparer id: Theo de Raadt --Application id: OpenBSD 6.2 amd64 Install CD --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 169081 --El Torito VD version 1 found, boot catalog is in sector 71630 --NO Joliet present -- --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'RRIP_1991A' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Copyright (c) 2017 Theo' -- Cksum FF D5 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 15CBB 89275 -diff --git a/tests/isodata/openbsd/openbsd6.2/openbsd-6.2-i386.txt b/tests/isodata/openbsd/openbsd6.2/openbsd-6.2-i386.txt -deleted file mode 100644 -index 8d7c36f..0000000 ---- a/tests/isodata/openbsd/openbsd6.2/openbsd-6.2-i386.txt -+++ /dev/null -@@ -1,33 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: OpenBSD --Volume id: OpenBSD/i386 6.2 Install CD --Volume set id: --Publisher id: Copyright (c) 2017 Theo de Raadt, The OpenBSD project --Data preparer id: Theo de Raadt --Application id: OpenBSD 6.2 i386 Install CD --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 163997 --El Torito VD version 1 found, boot catalog is in sector 71052 --NO Joliet present -- --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'RRIP_1991A' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Copyright (c) 2017 Theo' -- Cksum FF D5 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 155AD 87469 -diff --git a/tests/isodata/openbsd/openbsd6.3/openbsd-6.3-amd64.txt b/tests/isodata/openbsd/openbsd6.3/openbsd-6.3-amd64.txt -deleted file mode 100644 -index d467942..0000000 ---- a/tests/isodata/openbsd/openbsd6.3/openbsd-6.3-amd64.txt -+++ /dev/null -@@ -1,33 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: OpenBSD --Volume id: OpenBSD/amd64 6.3 Install CD --Volume set id: --Publisher id: Copyright (c) 2018 Theo de Raadt, The OpenBSD project --Data preparer id: Theo de Raadt --Application id: OpenBSD 6.3 amd64 Install CD --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 172000 --El Torito VD version 1 found, boot catalog is in sector 73155 --NO Joliet present -- --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'RRIP_1991A' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Copyright (c) 2018 Theo' -- Cksum FF D4 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 162EA 90858 -diff --git a/tests/isodata/openbsd/openbsd6.3/openbsd-6.3-i386.txt b/tests/isodata/openbsd/openbsd6.3/openbsd-6.3-i386.txt -deleted file mode 100644 -index e04bf25..0000000 ---- a/tests/isodata/openbsd/openbsd6.3/openbsd-6.3-i386.txt -+++ /dev/null -@@ -1,33 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: OpenBSD --Volume id: OpenBSD/i386 6.3 Install CD --Volume set id: --Publisher id: Copyright (c) 2018 Theo de Raadt, The OpenBSD project --Data preparer id: Theo de Raadt --Application id: OpenBSD 6.3 i386 Install CD --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 166093 --El Torito VD version 1 found, boot catalog is in sector 72175 --NO Joliet present -- --SUSP signatures version 1 found --Rock Ridge signatures version 1 found --Rock Ridge id 'RRIP_1991A' --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Copyright (c) 2018 Theo' -- Cksum FF D4 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 159A7 88487 -diff --git a/tests/isodata/opensuse/opensuse12.2/openSUSE-12.2-DVD-i586.iso.txt b/tests/isodata/opensuse/opensuse12.2/openSUSE-12.2-DVD-i586.iso.txt -deleted file mode 100644 -index 2c20a97..0000000 ---- a/tests/isodata/opensuse/opensuse12.2/openSUSE-12.2-DVD-i586.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: openSUSE-DVD-i586-Build0167 --Volume set id: --Publisher id: SUSE LINUX Products GmbH --Data preparer id: KIWI - http://kiwi.berlios.de --Application id: openSUSE-DVD-i586-Build0167-Media --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2171870 --El Torito VD version 1 found, boot catalog is in sector 20 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'SUSE LINUX Products Gmb' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 35D 861 -diff --git a/tests/isodata/opensuse/opensuse12.2/openSUSE-12.2-DVD-x86_64.iso.txt b/tests/isodata/opensuse/opensuse12.2/openSUSE-12.2-DVD-x86_64.iso.txt -deleted file mode 100644 -index 622afd5..0000000 ---- a/tests/isodata/opensuse/opensuse12.2/openSUSE-12.2-DVD-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: openSUSE-DVD-x86_640167 --Volume set id: --Publisher id: SUSE LINUX Products GmbH --Data preparer id: KIWI - http://kiwi.berlios.de --Application id: openSUSE-DVD-x86_64-Build0167-Media --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2279576 --El Torito VD version 1 found, boot catalog is in sector 20 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'SUSE LINUX Products Gmb' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 39C 924 -diff --git a/tests/isodata/opensuse/opensuse12.3/openSUSE-12.3-DVD-i586.iso.txt b/tests/isodata/opensuse/opensuse12.3/openSUSE-12.3-DVD-i586.iso.txt -deleted file mode 100644 -index 952e1e8..0000000 ---- a/tests/isodata/opensuse/opensuse12.3/openSUSE-12.3-DVD-i586.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: openSUSE-12.3-DVD-i5860110 --Volume set id: --Publisher id: SUSE LINUX GmbH --Data preparer id: KIWI - http://opensuse.github.com/kiwi --Application id: openSUSE-12.3-DVD-i586-Build0110-Media --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2213779 --El Torito VD version 1 found, boot catalog is in sector 20 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'SUSE LINUX GmbH' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 3CE 974 -diff --git a/tests/isodata/opensuse/opensuse12.3/openSUSE-12.3-DVD-x86_64.iso.txt b/tests/isodata/opensuse/opensuse12.3/openSUSE-12.3-DVD-x86_64.iso.txt -deleted file mode 100644 -index b0e0e28..0000000 ---- a/tests/isodata/opensuse/opensuse12.3/openSUSE-12.3-DVD-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: openSUSE-12.3-DVD-x86_640110 --Volume set id: --Publisher id: SUSE LINUX GmbH --Data preparer id: KIWI - http://opensuse.github.com/kiwi --Application id: openSUSE-12.3-DVD-x86_64-Build0110-Media --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2290498 --El Torito VD version 1 found, boot catalog is in sector 20 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'SUSE LINUX GmbH' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 184E 6222 -diff --git a/tests/isodata/opensuse/opensuse13.1/openSUSE-13.1-GNOME-Live-i686.iso.txt b/tests/isodata/opensuse/opensuse13.1/openSUSE-13.1-GNOME-Live-i686.iso.txt -deleted file mode 100644 -index ebf05e8..0000000 ---- a/tests/isodata/opensuse/opensuse13.1/openSUSE-13.1-GNOME-Live-i686.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: openSUSE 13.1 GNOME Live --Volume set id: --Publisher id: SUSE LINUX GmbH --Data preparer id: KIWI - http://opensuse.github.com/kiwi --Application id: 0x3a19c523 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 466051 --El Torito VD version 1 found, boot catalog is in sector 23 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'SUSE LINUX GmbH' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 336 822 -diff --git a/tests/isodata/opensuse/opensuse13.1/openSUSE-13.1-GNOME-Live-x86_64.iso.txt b/tests/isodata/opensuse/opensuse13.1/openSUSE-13.1-GNOME-Live-x86_64.iso.txt -deleted file mode 100644 -index 882605a..0000000 ---- a/tests/isodata/opensuse/opensuse13.1/openSUSE-13.1-GNOME-Live-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: openSUSE 13.1 GNOME Live --Volume set id: --Publisher id: SUSE LINUX GmbH --Data preparer id: KIWI - http://opensuse.github.com/kiwi --Application id: 0x601bf7b2 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 484413 --El Torito VD version 1 found, boot catalog is in sector 23 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'SUSE LINUX GmbH' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 17FC 6140 -diff --git a/tests/isodata/opensuse/opensuse13.1/openSUSE-13.1-KDE-Live-i686.iso.txt b/tests/isodata/opensuse/opensuse13.1/openSUSE-13.1-KDE-Live-i686.iso.txt -deleted file mode 100644 -index aed17a7..0000000 ---- a/tests/isodata/opensuse/opensuse13.1/openSUSE-13.1-KDE-Live-i686.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: openSUSE 13.1 KDE Live --Volume set id: --Publisher id: SUSE LINUX GmbH --Data preparer id: KIWI - http://opensuse.github.com/kiwi --Application id: 0x675aadc1 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 462058 --El Torito VD version 1 found, boot catalog is in sector 23 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'SUSE LINUX GmbH' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 336 822 -diff --git a/tests/isodata/opensuse/opensuse13.1/openSUSE-13.1-KDE-Live-x86_64.iso.txt b/tests/isodata/opensuse/opensuse13.1/openSUSE-13.1-KDE-Live-x86_64.iso.txt -deleted file mode 100644 -index c84b694..0000000 ---- a/tests/isodata/opensuse/opensuse13.1/openSUSE-13.1-KDE-Live-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: openSUSE 13.1 KDE Live --Volume set id: --Publisher id: SUSE LINUX GmbH --Data preparer id: KIWI - http://opensuse.github.com/kiwi --Application id: 0xa893698d --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 481951 --El Torito VD version 1 found, boot catalog is in sector 23 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'SUSE LINUX GmbH' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 17FC 6140 -diff --git a/tests/isodata/opensuse/opensuse13.2/openSUSE-13.2-DVD-i586.iso.txt b/tests/isodata/opensuse/opensuse13.2/openSUSE-13.2-DVD-i586.iso.txt -deleted file mode 100644 -index a2c3afd..0000000 ---- a/tests/isodata/opensuse/opensuse13.2/openSUSE-13.2-DVD-i586.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: openSUSE-13.2-DVD-i5860054 --Volume set id: --Publisher id: SUSE LINUX GmbH --Data preparer id: KIWI - http://opensuse.github.com/kiwi --Application id: openSUSE-13.2-DVD-i586-Build0054-Media --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2257566 --El Torito VD version 1 found, boot catalog is in sector 20 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'SUSE LINUX GmbH' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 347 839 -diff --git a/tests/isodata/opensuse/opensuse13.2/openSUSE-13.2-DVD-x86_64.iso.txt b/tests/isodata/opensuse/opensuse13.2/openSUSE-13.2-DVD-x86_64.iso.txt -deleted file mode 100644 -index f78c781..0000000 ---- a/tests/isodata/opensuse/opensuse13.2/openSUSE-13.2-DVD-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: openSUSE-13.2-DVD-x86_640051 --Volume set id: --Publisher id: SUSE LINUX GmbH --Data preparer id: KIWI - http://opensuse.github.com/kiwi --Application id: openSUSE-13.2-DVD-x86_64-Build0051-Media --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2284287 --El Torito VD version 1 found, boot catalog is in sector 20 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'SUSE LINUX GmbH' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 16C2 5826 -diff --git a/tests/isodata/opensuse/opensuse15.0/openSUSE-Leap-15.0-DVD-x86_64.iso.txt b/tests/isodata/opensuse/opensuse15.0/openSUSE-Leap-15.0-DVD-x86_64.iso.txt -deleted file mode 100644 -index e89a0de..0000000 ---- a/tests/isodata/opensuse/opensuse15.0/openSUSE-Leap-15.0-DVD-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: openSUSE-Leap-15.0-DVD-x86_64267 --Volume set id: --Publisher id: SUSE LINUX GmbH --Data preparer id: KIWI - http://opensuse.github.com/kiwi --Application id: openSUSE-Leap-15.0-DVD-x86_64-Build267.2-Media --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1912564 --El Torito VD version 1 found, boot catalog is in sector 20 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'SUSE LINUX GmbH' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 145C 5212 -diff --git a/tests/isodata/opensuse/opensuse15.0/openSUSE-Leap-15.0-NET-x86_64.iso.txt b/tests/isodata/opensuse/opensuse15.0/openSUSE-Leap-15.0-NET-x86_64.iso.txt -deleted file mode 100644 -index d6e6619..0000000 ---- a/tests/isodata/opensuse/opensuse15.0/openSUSE-Leap-15.0-NET-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: openSUSE-Leap-15.0-NET-x86_64267 --Volume set id: --Publisher id: SUSE LINUX GmbH --Data preparer id: KIWI - http://opensuse.github.com/kiwi --Application id: openSUSE-Leap-15.0-NET-x86_64-Build267.2-Media --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 60205 --El Torito VD version 1 found, boot catalog is in sector 20 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'SUSE LINUX GmbH' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff FC8 4040 -diff --git a/tests/isodata/opensuse/opensuse42.1/openSUSE-42.1-DVD-x86_64.iso.txt b/tests/isodata/opensuse/opensuse42.1/openSUSE-42.1-DVD-x86_64.iso.txt -deleted file mode 100644 -index da37cd6..0000000 ---- a/tests/isodata/opensuse/opensuse42.1/openSUSE-42.1-DVD-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: openSUSE-Leap-42.1-DVD-x86_64026 --Volume set id: --Publisher id: SUSE LINUX GmbH --Data preparer id: KIWI - http://opensuse.github.com/kiwi --Application id: openSUSE-Leap-42.1-DVD-x86_64-Build0265-Media --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2269201 --El Torito VD version 1 found, boot catalog is in sector 20 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'SUSE LINUX GmbH' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1628 5672 -diff --git a/tests/isodata/opensuse/opensuse42.2/openSUSE-Leap-42.2-DVD-x86_64.iso.txt b/tests/isodata/opensuse/opensuse42.2/openSUSE-Leap-42.2-DVD-x86_64.iso.txt -deleted file mode 100644 -index a9bed45..0000000 ---- a/tests/isodata/opensuse/opensuse42.2/openSUSE-Leap-42.2-DVD-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: openSUSE-Leap-42.2-DVD-x86_64028 --Volume set id: --Publisher id: SUSE LINUX GmbH --Data preparer id: KIWI - http://opensuse.github.com/kiwi --Application id: openSUSE-Leap-42.2-DVD-x86_64-Build0283-Media --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2140229 --El Torito VD version 1 found, boot catalog is in sector 20 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'SUSE LINUX GmbH' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 16C0 5824 -diff --git a/tests/isodata/opensuse/opensuse42.3/openSUSE-Leap-42.3-DVD-x86_64.iso.txt b/tests/isodata/opensuse/opensuse42.3/openSUSE-Leap-42.3-DVD-x86_64.iso.txt -deleted file mode 100644 -index 1452a16..0000000 ---- a/tests/isodata/opensuse/opensuse42.3/openSUSE-Leap-42.3-DVD-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: openSUSE-Leap-42.3-DVD-x86_64033 --Volume set id: --Publisher id: SUSE LINUX GmbH --Data preparer id: KIWI - http://opensuse.github.com/kiwi --Application id: openSUSE-Leap-42.3-DVD-x86_64-Build0331-Media --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2265499 --El Torito VD version 1 found, boot catalog is in sector 20 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'SUSE LINUX GmbH' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1782 6018 -diff --git a/tests/isodata/opensuse/opensuse42.3/openSUSE-Leap-42.3-NET-x86_64.iso.txt b/tests/isodata/opensuse/opensuse42.3/openSUSE-Leap-42.3-NET-x86_64.iso.txt -deleted file mode 100644 -index 5412514..0000000 ---- a/tests/isodata/opensuse/opensuse42.3/openSUSE-Leap-42.3-NET-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: openSUSE-Leap-42.3-NET-x86_64033 --Volume set id: --Publisher id: SUSE LINUX GmbH --Data preparer id: KIWI - http://opensuse.github.com/kiwi --Application id: openSUSE-Leap-42.3-NET-x86_64-Build0331-Media --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 55135 --El Torito VD version 1 found, boot catalog is in sector 20 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'SUSE LINUX GmbH' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff FD0 4048 -diff --git a/tests/isodata/opensuse/opensusetumbleweed/openSUSE-Tumbleweed-DVD-i586-Current.iso.txt b/tests/isodata/opensuse/opensusetumbleweed/openSUSE-Tumbleweed-DVD-i586-Current.iso.txt -deleted file mode 100644 -index c96327c..0000000 ---- a/tests/isodata/opensuse/opensusetumbleweed/openSUSE-Tumbleweed-DVD-i586-Current.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: openSUSE-Tumbleweed-DVD-i5860005 --Volume set id: --Publisher id: SUSE LINUX GmbH --Data preparer id: KIWI - http://opensuse.github.com/kiwi --Application id: openSUSE-Tumbleweed-DVD-i586-Build0005-Media --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2008612 --El Torito VD version 1 found, boot catalog is in sector 20 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'SUSE LINUX GmbH' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 363 867 -diff --git a/tests/isodata/opensuse/opensusetumbleweed/openSUSE-Tumbleweed-DVD-x86_64-Current.iso.txt b/tests/isodata/opensuse/opensusetumbleweed/openSUSE-Tumbleweed-DVD-x86_64-Current.iso.txt -deleted file mode 100644 -index ac95688..0000000 ---- a/tests/isodata/opensuse/opensusetumbleweed/openSUSE-Tumbleweed-DVD-x86_64-Current.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: openSUSE-Tumbleweed-DVD-x86_6400 --Volume set id: --Publisher id: SUSE LINUX GmbH --Data preparer id: KIWI - http://opensuse.github.com/kiwi --Application id: openSUSE-Tumbleweed-DVD-x86_64-Build0004-Media --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2250813 --El Torito VD version 1 found, boot catalog is in sector 20 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'SUSE LINUX GmbH' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 160A 5642 -diff --git a/tests/isodata/opensuse/opensusetumbleweed/openSUSE-Tumbleweed-Kubic-DVD-x86_64-Snapshot20180420-Media.iso.txt b/tests/isodata/opensuse/opensusetumbleweed/openSUSE-Tumbleweed-Kubic-DVD-x86_64-Snapshot20180420-Media.iso.txt -deleted file mode 100644 -index 9404ce6..0000000 ---- a/tests/isodata/opensuse/opensusetumbleweed/openSUSE-Tumbleweed-Kubic-DVD-x86_64-Snapshot20180420-Media.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: openSUSE-Tumbleweed-Kubic-DVD-x8 --Volume set id: --Publisher id: SUSE LINUX GmbH --Data preparer id: KIWI - http://opensuse.github.com/kiwi --Application id: openSUSE-Tumbleweed-Kubic-DVD-x86_64-Build112.2-Media --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1141805 --El Torito VD version 1 found, boot catalog is in sector 20 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'SUSE LINUX GmbH' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1068 4200 -diff --git a/tests/isodata/opensuse/opensusetumbleweed/openSUSE-Tumbleweed-NET-i586-Snapshot20180420-Media.iso.txt b/tests/isodata/opensuse/opensusetumbleweed/openSUSE-Tumbleweed-NET-i586-Snapshot20180420-Media.iso.txt -deleted file mode 100644 -index 3c71ede..0000000 ---- a/tests/isodata/opensuse/opensusetumbleweed/openSUSE-Tumbleweed-NET-i586-Snapshot20180420-Media.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: openSUSE-Tumbleweed-NET-i586112. --Volume set id: --Publisher id: SUSE LINUX GmbH --Data preparer id: KIWI - http://opensuse.github.com/kiwi --Application id: openSUSE-Tumbleweed-NET-i586-Build112.1-Media --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 179730 --El Torito VD version 1 found, boot catalog is in sector 20 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'SUSE LINUX GmbH' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 3C 60 -diff --git a/tests/isodata/opensuse/opensusetumbleweed/openSUSE-Tumbleweed-NET-x86_64-Snapshot20180420-Media.iso b/tests/isodata/opensuse/opensusetumbleweed/openSUSE-Tumbleweed-NET-x86_64-Snapshot20180420-Media.iso -deleted file mode 100644 -index 9424f3c..0000000 ---- a/tests/isodata/opensuse/opensusetumbleweed/openSUSE-Tumbleweed-NET-x86_64-Snapshot20180420-Media.iso -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: openSUSE-Tumbleweed-NET-x86_6411 --Volume set id: --Publisher id: SUSE LINUX GmbH --Data preparer id: KIWI - http://opensuse.github.com/kiwi --Application id: openSUSE-Tumbleweed-NET-x86_64-Build112.1-Media --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 187851 --El Torito VD version 1 found, boot catalog is in sector 20 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'SUSE LINUX GmbH' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff FD2 4050 -diff --git a/tests/isodata/popos/popos17.10/pop-os_amd64_intel_57.iso.txt b/tests/isodata/popos/popos17.10/pop-os_amd64_intel_57.iso.txt -deleted file mode 100644 -index d6b434e..0000000 ---- a/tests/isodata/popos/popos17.10/pop-os_amd64_intel_57.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Pop_OS 17.10 amd64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 922984 --El Torito VD version 1 found, boot catalog is in sector 83 --NO Joliet present --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 5F4 1524 -diff --git a/tests/isodata/popos/popos17.10/pop-os_amd64_nvidia_46.iso.txt b/tests/isodata/popos/popos17.10/pop-os_amd64_nvidia_46.iso.txt -deleted file mode 100644 -index 6a7d3d2..0000000 ---- a/tests/isodata/popos/popos17.10/pop-os_amd64_nvidia_46.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Pop_OS 17.10 amd64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.6 2016.09.16.133001, LIBISOBURN-1.4.6, LIBISOFS-1.4.6, LIBBURN-1.4.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1007616 --El Torito VD version 1 found, boot catalog is in sector 83 --NO Joliet present --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 5F4 1524 -diff --git a/tests/isodata/popos/popos18.04/pop-os_18.04_amd64_intel_32.iso.txt b/tests/isodata/popos/popos18.04/pop-os_18.04_amd64_intel_32.iso.txt -deleted file mode 100644 -index 8ff1012..0000000 ---- a/tests/isodata/popos/popos18.04/pop-os_18.04_amd64_intel_32.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Pop_OS 18.04 amd64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.8 2017.09.12.143001, LIBISOBURN-1.4.8, LIBISOFS-1.4.8, LIBBURN-1.4.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1026144 --El Torito VD version 1 found, boot catalog is in sector 81 --NO Joliet present --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 5F2 1522 -diff --git a/tests/isodata/popos/popos18.04/pop-os_18.04_amd64_nvidia_32.iso.txt b/tests/isodata/popos/popos18.04/pop-os_18.04_amd64_nvidia_32.iso.txt -deleted file mode 100644 -index 67aec1b..0000000 ---- a/tests/isodata/popos/popos18.04/pop-os_18.04_amd64_nvidia_32.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Pop_OS 18.04 amd64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.8 2017.09.12.143001, LIBISOBURN-1.4.8, LIBISOFS-1.4.8, LIBBURN-1.4.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1141280 --El Torito VD version 1 found, boot catalog is in sector 81 --NO Joliet present --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 5F2 1522 -diff --git a/tests/isodata/popos/popos18.10/pop-os_18.10_amd64_intel_3.iso.txt b/tests/isodata/popos/popos18.10/pop-os_18.10_amd64_intel_3.iso.txt -deleted file mode 100644 -index b0c88ab..0000000 ---- a/tests/isodata/popos/popos18.10/pop-os_18.10_amd64_intel_3.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Pop_OS 18.10 amd64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.8 2017.09.12.143001, LIBISOBURN-1.4.8, LIBISOFS-1.4.8, LIBBURN-1.4.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1047552 --El Torito VD version 1 found, boot catalog is in sector 81 --NO Joliet present --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 5F2 1522 -diff --git a/tests/isodata/popos/popos18.10/pop-os_18.10_amd64_nvidia_3.iso.txt b/tests/isodata/popos/popos18.10/pop-os_18.10_amd64_nvidia_3.iso.txt -deleted file mode 100644 -index 064323a..0000000 ---- a/tests/isodata/popos/popos18.10/pop-os_18.10_amd64_nvidia_3.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Pop_OS 18.10 amd64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.8 2017.09.12.143001, LIBISOBURN-1.4.8, LIBISOFS-1.4.8, LIBBURN-1.4.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1172736 --El Torito VD version 1 found, boot catalog is in sector 81 --NO Joliet present --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 5F2 1522 -diff --git a/tests/isodata/pureos/pureos8/pureos-8.0-gnome-live_20180904-amd64.hybrid.iso.txt b/tests/isodata/pureos/pureos8/pureos-8.0-gnome-live_20180904-amd64.hybrid.iso.txt -deleted file mode 100644 -index 5c53a7d..0000000 ---- a/tests/isodata/pureos/pureos8/pureos-8.0-gnome-live_20180904-amd64.hybrid.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: PureOS 8.0 GNOME Live --Volume set id: --Publisher id: PURISM --Data preparer id: LIVE-BUILD 1:20180224PUREOS1; HTTPS://DEBIAN-LIVE.ALIOTH.DEBIAN.ORG/LIVE-BUILD --Application id: PUREOS GNU/LINUX --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 726240 --El Torito VD version 1 found, boot catalog is in sector 70 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 47 71 -diff --git a/tests/isodata/pureos/pureos8/pureos-8.0-gnome-live_20181210-amd64.hybrid.iso.txt b/tests/isodata/pureos/pureos8/pureos-8.0-gnome-live_20181210-amd64.hybrid.iso.txt -deleted file mode 100644 -index 4f00524..0000000 ---- a/tests/isodata/pureos/pureos8/pureos-8.0-gnome-live_20181210-amd64.hybrid.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: PureOS 8.0 GNOME Live --Volume set id: --Publisher id: PURISM --Data preparer id: LIVE-BUILD 1:20180224PUREOS1; HTTPS://DEBIAN-LIVE.ALIOTH.DEBIAN.ORG/LIVE-BUILD --Application id: PUREOS GNU/LINUX --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 740376 --El Torito VD version 1 found, boot catalog is in sector 70 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 47 71 -diff --git a/tests/isodata/pureos/pureos8/pureos-8.0-gnome-live_20190128-amd64.hybrid.iso.txt b/tests/isodata/pureos/pureos8/pureos-8.0-gnome-live_20190128-amd64.hybrid.iso.txt -deleted file mode 100644 -index 789d267..0000000 ---- a/tests/isodata/pureos/pureos8/pureos-8.0-gnome-live_20190128-amd64.hybrid.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: PureOS 8.0 GNOME Live --Volume set id: --Publisher id: PURISM --Data preparer id: LIVE-BUILD 1:20180224PUREOS1; HTTPS://DEBIAN-LIVE.ALIOTH.DEBIAN.ORG/LIVE-BUILD --Application id: PUREOS GNU/LINUX --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 748512 --El Torito VD version 1 found, boot catalog is in sector 70 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 47 71 -diff --git a/tests/isodata/pureos/pureos8/pureos-8.0-gnome-live_20190210-amd64.hybrid.iso.txt b/tests/isodata/pureos/pureos8/pureos-8.0-gnome-live_20190210-amd64.hybrid.iso.txt -deleted file mode 100644 -index b1a4c98..0000000 ---- a/tests/isodata/pureos/pureos8/pureos-8.0-gnome-live_20190210-amd64.hybrid.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: PureOS 8.0 GNOME Live --Volume set id: --Publisher id: PURISM --Data preparer id: LIVE-BUILD 1:20180224PUREOS1; HTTPS://DEBIAN-LIVE.ALIOTH.DEBIAN.ORG/LIVE-BUILD --Application id: PUREOS GNU/LINUX --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 755160 --El Torito VD version 1 found, boot catalog is in sector 70 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 47 71 -diff --git a/tests/isodata/rhel/rhel-atomic-7.0/RHEL-Atomic-Host-Installer-7.0.0-Beta.iso.txt b/tests/isodata/rhel/rhel-atomic-7.0/RHEL-Atomic-Host-Installer-7.0.0-Beta.iso.txt -deleted file mode 100644 -index bf51de1..0000000 ---- a/tests/isodata/rhel/rhel-atomic-7.0/RHEL-Atomic-Host-Installer-7.0.0-Beta.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL Atomic Host 7 x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 366364 --El Torito VD version 1 found, boot catalog is in sector 46 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 42BB 17083 -diff --git a/tests/isodata/rhel/rhel-atomic-7.1/rhel-atomic-installer-7.1-0.x86_64.iso.txt b/tests/isodata/rhel/rhel-atomic-7.1/rhel-atomic-installer-7.1-0.x86_64.iso.txt -deleted file mode 100644 -index 10fb7ce..0000000 ---- a/tests/isodata/rhel/rhel-atomic-7.1/rhel-atomic-installer-7.1-0.x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL Atomic Host 7 x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 318572 --El Torito VD version 1 found, boot catalog is in sector 46 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 456D 17773 -diff --git a/tests/isodata/rhel/rhel-atomic-7.1/rhel-atomic-installer-7.1-1.x86_64.iso.txt b/tests/isodata/rhel/rhel-atomic-7.1/rhel-atomic-installer-7.1-1.x86_64.iso.txt -deleted file mode 100644 -index f6569fa..0000000 ---- a/tests/isodata/rhel/rhel-atomic-7.1/rhel-atomic-installer-7.1-1.x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL Atomic Host 7 x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 319455 --El Torito VD version 1 found, boot catalog is in sector 46 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 458B 17803 -diff --git a/tests/isodata/rhel/rhel-atomic-7.2/rhel-atomic-installer-7.2-10.x86_64.iso.txt b/tests/isodata/rhel/rhel-atomic-7.2/rhel-atomic-installer-7.2-10.x86_64.iso.txt -deleted file mode 100644 -index f7c74ee..0000000 ---- a/tests/isodata/rhel/rhel-atomic-7.2/rhel-atomic-installer-7.2-10.x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Red Hat Enterprise Linux Atomic --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 355398 --El Torito VD version 1 found, boot catalog is in sector 46 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 4980 18816 -diff --git a/tests/isodata/rhel/rhel-atomic-7.2/rhel-atomic-installer-7.2-11.x86_64.iso.txt b/tests/isodata/rhel/rhel-atomic-7.2/rhel-atomic-installer-7.2-11.x86_64.iso.txt -deleted file mode 100644 -index 7d1ddd4..0000000 ---- a/tests/isodata/rhel/rhel-atomic-7.2/rhel-atomic-installer-7.2-11.x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Red Hat Enterprise Linux Atomic --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 359806 --El Torito VD version 1 found, boot catalog is in sector 46 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 497F 18815 -diff --git a/tests/isodata/rhel/rhel-atomic-7.2/rhel-atomic-installer-7.2-12.x86_64.iso.txt b/tests/isodata/rhel/rhel-atomic-7.2/rhel-atomic-installer-7.2-12.x86_64.iso.txt -deleted file mode 100644 -index 9b24716..0000000 ---- a/tests/isodata/rhel/rhel-atomic-7.2/rhel-atomic-installer-7.2-12.x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Red Hat Enterprise Linux Atomic --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 359738 --El Torito VD version 1 found, boot catalog is in sector 46 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 4980 18816 -diff --git a/tests/isodata/rhel/rhel-atomic-7.2/rhel-atomic-installer-7.2-13.x86_64.iso.txt b/tests/isodata/rhel/rhel-atomic-7.2/rhel-atomic-installer-7.2-13.x86_64.iso.txt -deleted file mode 100644 -index 947b37c..0000000 ---- a/tests/isodata/rhel/rhel-atomic-7.2/rhel-atomic-installer-7.2-13.x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Red Hat Enterprise Linux Atomic --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 358203 --El Torito VD version 1 found, boot catalog is in sector 46 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 4C5E 19550 -diff --git a/tests/isodata/rhel/rhel-atomic-7.3/rhel-atomic-installer-7.3.0-3.x86_64.iso.txt b/tests/isodata/rhel/rhel-atomic-7.3/rhel-atomic-installer-7.3.0-3.x86_64.iso.txt -deleted file mode 100644 -index 7b20154..0000000 ---- a/tests/isodata/rhel/rhel-atomic-7.3/rhel-atomic-installer-7.3.0-3.x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Red Hat Enterprise Linux Atomic --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 434177 --El Torito VD version 1 found, boot catalog is in sector 46 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 54B1 21681 -diff --git a/tests/isodata/rhel/rhel-atomic-7.3/rhel-atomic-installer-7.3.1-1.x86_64.iso.txt b/tests/isodata/rhel/rhel-atomic-7.3/rhel-atomic-installer-7.3.1-1.x86_64.iso.txt -deleted file mode 100644 -index d8e7db3..0000000 ---- a/tests/isodata/rhel/rhel-atomic-7.3/rhel-atomic-installer-7.3.1-1.x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Red Hat Enterprise Linux Atomic --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 434969 --El Torito VD version 1 found, boot catalog is in sector 46 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 54AC 21676 -diff --git a/tests/isodata/rhel/rhel-atomic-7.3/rhel-atomic-installer-7.3.2-1.x86_64.iso.txt b/tests/isodata/rhel/rhel-atomic-7.3/rhel-atomic-installer-7.3.2-1.x86_64.iso.txt -deleted file mode 100644 -index ed280b4..0000000 ---- a/tests/isodata/rhel/rhel-atomic-7.3/rhel-atomic-installer-7.3.2-1.x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Red Hat Enterprise Linux Atomic --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 440698 --El Torito VD version 1 found, boot catalog is in sector 46 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 54AF 21679 -diff --git a/tests/isodata/rhel/rhel-atomic-7.3/rhel-atomic-installer-7.3.3-1.x86_64.iso.txt b/tests/isodata/rhel/rhel-atomic-7.3/rhel-atomic-installer-7.3.3-1.x86_64.iso.txt -deleted file mode 100644 -index 4eacf22..0000000 ---- a/tests/isodata/rhel/rhel-atomic-7.3/rhel-atomic-installer-7.3.3-1.x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Red Hat Enterprise Linux Atomic --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 446007 --El Torito VD version 1 found, boot catalog is in sector 46 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 54AF 21679 -diff --git a/tests/isodata/rhel/rhel-atomic-7.4/rhel-atomic-installer-7.4.0-1.x86_64.iso.txt b/tests/isodata/rhel/rhel-atomic-7.4/rhel-atomic-installer-7.4.0-1.x86_64.iso.txt -deleted file mode 100644 -index da1c44d..0000000 ---- a/tests/isodata/rhel/rhel-atomic-7.4/rhel-atomic-installer-7.4.0-1.x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Red Hat Enterprise Linux Atomic --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 478529 --El Torito VD version 1 found, boot catalog is in sector 46 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 5C2A 23594 -diff --git a/tests/isodata/rhel/rhel5.10/rhel-server-5.10-i386-dvd.iso.txt b/tests/isodata/rhel/rhel5.10/rhel-server-5.10-i386-dvd.iso.txt -deleted file mode 100644 -index 735a453..0000000 ---- a/tests/isodata/rhel/rhel5.10/rhel-server-5.10-i386-dvd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL/5.10 i386 DVD --Volume set id: RHEL/5.10 i386 --Publisher id: --Data preparer id: --Application id: RHEL/5.10 i386 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1830701 --El Torito VD version 1 found, boot catalog is in sector 429 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1AE 430 -diff --git a/tests/isodata/rhel/rhel5.10/rhel-server-5.10-x86_64-dvd.iso.txt b/tests/isodata/rhel/rhel5.10/rhel-server-5.10-x86_64-dvd.iso.txt -deleted file mode 100644 -index 21551cf..0000000 ---- a/tests/isodata/rhel/rhel5.10/rhel-server-5.10-x86_64-dvd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL/5.10 x86_64 DVD --Volume set id: RHEL/5.10 x86_64 --Publisher id: --Data preparer id: --Application id: RHEL/5.10 x86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2137751 --El Torito VD version 1 found, boot catalog is in sector 553 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 22A 554 -diff --git a/tests/isodata/rhel/rhel5.11/rhel-server-5.11-x86_64-dvd.iso.txt b/tests/isodata/rhel/rhel5.11/rhel-server-5.11-x86_64-dvd.iso.txt -deleted file mode 100644 -index 58cde74..0000000 ---- a/tests/isodata/rhel/rhel5.11/rhel-server-5.11-x86_64-dvd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL/5.11 x86_64 DVD --Volume set id: RHEL/5.11 x86_64 --Publisher id: --Data preparer id: --Application id: RHEL/5.11 x86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2170464 --El Torito VD version 1 found, boot catalog is in sector 554 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 22B 555 -diff --git a/tests/isodata/rhel/rhel5.5/rhel-server-5.5-x86_64-dvd.iso.txt b/tests/isodata/rhel/rhel5.5/rhel-server-5.5-x86_64-dvd.iso.txt -deleted file mode 100644 -index 411e87a..0000000 ---- a/tests/isodata/rhel/rhel5.5/rhel-server-5.5-x86_64-dvd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL/5.5 x86_64 DVD --Volume set id: RHEL/5.5 x86_64 --Publisher id: --Data preparer id: --Application id: RHEL/5.5 x86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1808345 --El Torito VD version 1 found, boot catalog is in sector 517 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 206 518 -diff --git a/tests/isodata/rhel/rhel5.6/rhel-client-5.6-i386-dvd.iso.txt b/tests/isodata/rhel/rhel5.6/rhel-client-5.6-i386-dvd.iso.txt -deleted file mode 100644 -index 4b21d62..0000000 ---- a/tests/isodata/rhel/rhel5.6/rhel-client-5.6-i386-dvd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL/5.6 i386 DVD --Volume set id: RHEL/5.6 i386 --Publisher id: --Data preparer id: --Application id: RHEL/5.6 i386 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2014779 --El Torito VD version 1 found, boot catalog is in sector 420 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1A5 421 -diff --git a/tests/isodata/rhel/rhel5.6/rhel-client-5.6-x86_64-dvd1.iso.txt b/tests/isodata/rhel/rhel5.6/rhel-client-5.6-x86_64-dvd1.iso.txt -deleted file mode 100644 -index 5d076eb..0000000 ---- a/tests/isodata/rhel/rhel5.6/rhel-client-5.6-x86_64-dvd1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL/5.6 x86_64 DVD 1 --Volume set id: RHEL/5.6 x86_64 --Publisher id: --Data preparer id: --Application id: RHEL/5.6 x86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2264124 --El Torito VD version 1 found, boot catalog is in sector 491 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1EC 492 -diff --git a/tests/isodata/rhel/rhel5.6/rhel-client-5.6-x86_64-dvd2.iso.txt b/tests/isodata/rhel/rhel5.6/rhel-client-5.6-x86_64-dvd2.iso.txt -deleted file mode 100644 -index 0a040bd..0000000 ---- a/tests/isodata/rhel/rhel5.6/rhel-client-5.6-x86_64-dvd2.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL/5.6 x86_64 DVD 2 --Volume set id: RHEL/5.6 x86_64 --Publisher id: --Data preparer id: --Application id: RHEL/5.6 x86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 68348 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/rhel/rhel5.6/rhel-server-5.6-i386-dvd.iso.txt b/tests/isodata/rhel/rhel5.6/rhel-server-5.6-i386-dvd.iso.txt -deleted file mode 100644 -index afc3e70..0000000 ---- a/tests/isodata/rhel/rhel5.6/rhel-server-5.6-i386-dvd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL/5.6 i386 DVD --Volume set id: RHEL/5.6 i386 --Publisher id: --Data preparer id: --Application id: RHEL/5.6 i386 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1556914 --El Torito VD version 1 found, boot catalog is in sector 412 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 19D 413 -diff --git a/tests/isodata/rhel/rhel5.6/rhel-server-5.6-x86_64-dvd.iso.txt b/tests/isodata/rhel/rhel5.6/rhel-server-5.6-x86_64-dvd.iso.txt -deleted file mode 100644 -index 9261328..0000000 ---- a/tests/isodata/rhel/rhel5.6/rhel-server-5.6-x86_64-dvd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL/5.6 x86_64 DVD --Volume set id: RHEL/5.6 x86_64 --Publisher id: --Data preparer id: --Application id: RHEL/5.6 x86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1852564 --El Torito VD version 1 found, boot catalog is in sector 533 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 216 534 -diff --git a/tests/isodata/rhel/rhel5.7/rhel-client-5.7-i386-dvd.iso.txt b/tests/isodata/rhel/rhel5.7/rhel-client-5.7-i386-dvd.iso.txt -deleted file mode 100644 -index 8d7ad73..0000000 ---- a/tests/isodata/rhel/rhel5.7/rhel-client-5.7-i386-dvd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL/5.7 i386 DVD --Volume set id: RHEL/5.7 i386 --Publisher id: --Data preparer id: --Application id: RHEL/5.7 i386 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2030774 --El Torito VD version 1 found, boot catalog is in sector 425 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1AA 426 -diff --git a/tests/isodata/rhel/rhel5.7/rhel-client-5.7-x86_64-dvd1.iso.txt b/tests/isodata/rhel/rhel5.7/rhel-client-5.7-x86_64-dvd1.iso.txt -deleted file mode 100644 -index 35c28bf..0000000 ---- a/tests/isodata/rhel/rhel5.7/rhel-client-5.7-x86_64-dvd1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL/5.7 x86_64 DVD 1 --Volume set id: RHEL/5.7 x86_64 --Publisher id: --Data preparer id: --Application id: RHEL/5.7 x86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2265786 --El Torito VD version 1 found, boot catalog is in sector 476 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1DD 477 -diff --git a/tests/isodata/rhel/rhel5.7/rhel-client-5.7-x86_64-dvd2.iso.txt b/tests/isodata/rhel/rhel5.7/rhel-client-5.7-x86_64-dvd2.iso.txt -deleted file mode 100644 -index 16d07a9..0000000 ---- a/tests/isodata/rhel/rhel5.7/rhel-client-5.7-x86_64-dvd2.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL/5.7 x86_64 DVD 2 --Volume set id: RHEL/5.7 x86_64 --Publisher id: --Data preparer id: --Application id: RHEL/5.7 x86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 85857 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/rhel/rhel5.7/rhel-server-5.7-i386-dvd.iso.txt b/tests/isodata/rhel/rhel5.7/rhel-server-5.7-i386-dvd.iso.txt -deleted file mode 100644 -index c9228f1..0000000 ---- a/tests/isodata/rhel/rhel5.7/rhel-server-5.7-i386-dvd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL/5.7 i386 DVD --Volume set id: RHEL/5.7 i386 --Publisher id: --Data preparer id: --Application id: RHEL/5.7 i386 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1574634 --El Torito VD version 1 found, boot catalog is in sector 416 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1A1 417 -diff --git a/tests/isodata/rhel/rhel5.7/rhel-server-5.7-x86_64-dvd.iso.txt b/tests/isodata/rhel/rhel5.7/rhel-server-5.7-x86_64-dvd.iso.txt -deleted file mode 100644 -index 7369cd2..0000000 ---- a/tests/isodata/rhel/rhel5.7/rhel-server-5.7-x86_64-dvd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL/5.7 x86_64 DVD --Volume set id: RHEL/5.7 x86_64 --Publisher id: --Data preparer id: --Application id: RHEL/5.7 x86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1872430 --El Torito VD version 1 found, boot catalog is in sector 538 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 21B 539 -diff --git a/tests/isodata/rhel/rhel5.8/rhel-5.8-i386.iso.txt b/tests/isodata/rhel/rhel5.8/rhel-5.8-i386.iso.txt -deleted file mode 100644 -index c8feb43..0000000 ---- a/tests/isodata/rhel/rhel5.8/rhel-5.8-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL/5.8 i386 DVD --Volume set id: RHEL/5.8 i386 --Publisher id: --Data preparer id: --Application id: RHEL/5.8 i386 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1717763 --El Torito VD version 1 found, boot catalog is in sector 419 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1A4 420 -diff --git a/tests/isodata/rhel/rhel5.8/rhel-5.8-x86_64.iso.txt b/tests/isodata/rhel/rhel5.8/rhel-5.8-x86_64.iso.txt -deleted file mode 100644 -index cb7959f..0000000 ---- a/tests/isodata/rhel/rhel5.8/rhel-5.8-x86_64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL/5.8 x86_64 DVD --Volume set id: RHEL/5.8 x86_64 --Publisher id: --Data preparer id: --Application id: RHEL/5.8 x86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2014472 --El Torito VD version 1 found, boot catalog is in sector 542 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 21F 543 -diff --git a/tests/isodata/rhel/rhel5.9/rhel-server-5.9-i386-dvd.iso.txt b/tests/isodata/rhel/rhel5.9/rhel-server-5.9-i386-dvd.iso.txt -deleted file mode 100644 -index d83edc9..0000000 ---- a/tests/isodata/rhel/rhel5.9/rhel-server-5.9-i386-dvd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL/5.9 i386 DVD --Volume set id: RHEL/5.9 i386 --Publisher id: --Data preparer id: --Application id: RHEL/5.9 i386 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1796811 --El Torito VD version 1 found, boot catalog is in sector 426 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1AB 427 -diff --git a/tests/isodata/rhel/rhel5.9/rhel-server-5.9-x86_64-dvd.iso.txt b/tests/isodata/rhel/rhel5.9/rhel-server-5.9-x86_64-dvd.iso.txt -deleted file mode 100644 -index 54f4374..0000000 ---- a/tests/isodata/rhel/rhel5.9/rhel-server-5.9-x86_64-dvd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL/5.9 x86_64 DVD --Volume set id: RHEL/5.9 x86_64 --Publisher id: --Data preparer id: --Application id: RHEL/5.9 x86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2098662 --El Torito VD version 1 found, boot catalog is in sector 549 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 226 550 -diff --git a/tests/isodata/rhel/rhel6.0/rhel-server-6.0-i386-dvd.iso.txt b/tests/isodata/rhel/rhel6.0/rhel-server-6.0-i386-dvd.iso.txt -deleted file mode 100644 -index cf20df3..0000000 ---- a/tests/isodata/rhel/rhel6.0/rhel-server-6.0-i386-dvd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL_6.0 i386 Disc 1 --Volume set id: RHEL_6.0 i386 --Publisher id: --Data preparer id: --Application id: RHEL_6.0 i386 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1431180 --El Torito VD version 1 found, boot catalog is in sector 440 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1B9 441 -diff --git a/tests/isodata/rhel/rhel6.0/rhel-server-6.0-x86_64-boot.iso.txt b/tests/isodata/rhel/rhel6.0/rhel-server-6.0-x86_64-boot.iso.txt -deleted file mode 100644 -index e167b1f..0000000 ---- a/tests/isodata/rhel/rhel6.0/rhel-server-6.0-x86_64-boot.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL_6.0 x86_64 boot --Volume set id: RHEL_6.0 x86_64 --Publisher id: --Data preparer id: --Application id: RHEL_6.0 x86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 113653 --El Torito VD version 1 found, boot catalog is in sector 38 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 27 39 -diff --git a/tests/isodata/rhel/rhel6.0/rhel-server-6.0-x86_64-dvd.iso.txt b/tests/isodata/rhel/rhel6.0/rhel-server-6.0-x86_64-dvd.iso.txt -deleted file mode 100644 -index 2871a94..0000000 ---- a/tests/isodata/rhel/rhel6.0/rhel-server-6.0-x86_64-dvd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL_6.0 x86_64 Disc 1 --Volume set id: RHEL_6.0 x86_64 --Publisher id: --Data preparer id: --Application id: RHEL_6.0 x86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1675595 --El Torito VD version 1 found, boot catalog is in sector 561 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2E2 738 -diff --git a/tests/isodata/rhel/rhel6.0/rhel-workstation-6.0-i386-dvd.iso.txt b/tests/isodata/rhel/rhel6.0/rhel-workstation-6.0-i386-dvd.iso.txt -deleted file mode 100644 -index e2a6248..0000000 ---- a/tests/isodata/rhel/rhel6.0/rhel-workstation-6.0-i386-dvd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL_6.0 i386 Disc 1 --Volume set id: RHEL_6.0 i386 --Publisher id: --Data preparer id: --Application id: RHEL_6.0 i386 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1830312 --El Torito VD version 1 found, boot catalog is in sector 458 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1CB 459 -diff --git a/tests/isodata/rhel/rhel6.0/rhel-workstation-6.0-x86_64-dvd.iso.txt b/tests/isodata/rhel/rhel6.0/rhel-workstation-6.0-x86_64-dvd.iso.txt -deleted file mode 100644 -index aea7d3b..0000000 ---- a/tests/isodata/rhel/rhel6.0/rhel-workstation-6.0-x86_64-dvd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL_6.0 x86_64 Disc 1 --Volume set id: RHEL_6.0 x86_64 --Publisher id: --Data preparer id: --Application id: RHEL_6.0 x86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2089668 --El Torito VD version 1 found, boot catalog is in sector 580 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2F5 757 -diff --git a/tests/isodata/rhel/rhel6.1/rhel-client-6.1-i386-dvd.iso.txt b/tests/isodata/rhel/rhel6.1/rhel-client-6.1-i386-dvd.iso.txt -deleted file mode 100644 -index e388245..0000000 ---- a/tests/isodata/rhel/rhel6.1/rhel-client-6.1-i386-dvd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL_6.1 i386 Disc 1 --Volume set id: RHEL_6.1 i386 --Publisher id: --Data preparer id: --Application id: RHEL_6.1 i386 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1476135 --El Torito VD version 1 found, boot catalog is in sector 380 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 17D 381 -diff --git a/tests/isodata/rhel/rhel6.1/rhel-client-6.1-x86_64-dvd.iso.txt b/tests/isodata/rhel/rhel6.1/rhel-client-6.1-x86_64-dvd.iso.txt -deleted file mode 100644 -index 68e2f97..0000000 ---- a/tests/isodata/rhel/rhel6.1/rhel-client-6.1-x86_64-dvd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL_6.1 x86_64 Disc 1 --Volume set id: RHEL_6.1 x86_64 --Publisher id: --Data preparer id: --Application id: RHEL_6.1 x86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1678171 --El Torito VD version 1 found, boot catalog is in sector 458 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 283 643 -diff --git a/tests/isodata/rhel/rhel6.1/rhel-server-6.1-i386-dvd.iso.txt b/tests/isodata/rhel/rhel6.1/rhel-server-6.1-i386-dvd.iso.txt -deleted file mode 100644 -index e82ac7f..0000000 ---- a/tests/isodata/rhel/rhel6.1/rhel-server-6.1-i386-dvd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL_6.1 i386 Disc 1 --Volume set id: RHEL_6.1 i386 --Publisher id: --Data preparer id: --Application id: RHEL_6.1 i386 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1497308 --El Torito VD version 1 found, boot catalog is in sector 457 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1CA 458 -diff --git a/tests/isodata/rhel/rhel6.1/rhel-server-6.1-x86_64-dvd.iso.txt b/tests/isodata/rhel/rhel6.1/rhel-server-6.1-x86_64-dvd.iso.txt -deleted file mode 100644 -index 9ada51b..0000000 ---- a/tests/isodata/rhel/rhel6.1/rhel-server-6.1-x86_64-dvd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL_6.1 x86_64 Disc 1 --Volume set id: RHEL_6.1 x86_64 --Publisher id: --Data preparer id: --Application id: RHEL_6.1 x86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1758209 --El Torito VD version 1 found, boot catalog is in sector 582 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2FF 767 -diff --git a/tests/isodata/rhel/rhel6.1/rhel-workstation-6.1-i386-dvd.iso.txt b/tests/isodata/rhel/rhel6.1/rhel-workstation-6.1-i386-dvd.iso.txt -deleted file mode 100644 -index 9c537ea..0000000 ---- a/tests/isodata/rhel/rhel6.1/rhel-workstation-6.1-i386-dvd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL_6.1 i386 Disc 1 --Volume set id: RHEL_6.1 i386 --Publisher id: --Data preparer id: --Application id: RHEL_6.1 i386 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1896568 --El Torito VD version 1 found, boot catalog is in sector 473 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1DA 474 -diff --git a/tests/isodata/rhel/rhel6.1/rhel-workstation-6.1-x86_64-dvd.iso.txt b/tests/isodata/rhel/rhel6.1/rhel-workstation-6.1-x86_64-dvd.iso.txt -deleted file mode 100644 -index c4d6252..0000000 ---- a/tests/isodata/rhel/rhel6.1/rhel-workstation-6.1-x86_64-dvd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL_6.1 x86_64 Disc 1 --Volume set id: RHEL_6.1 x86_64 --Publisher id: --Data preparer id: --Application id: RHEL_6.1 x86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2171911 --El Torito VD version 1 found, boot catalog is in sector 597 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 30E 782 -diff --git a/tests/isodata/rhel/rhel6.10/RHEL-6.10-20180525.0-Server-i386-dvd1.iso.txt b/tests/isodata/rhel/rhel6.10/RHEL-6.10-20180525.0-Server-i386-dvd1.iso.txt -deleted file mode 100644 -index 0f76ed8..0000000 ---- a/tests/isodata/rhel/rhel6.10/RHEL-6.10-20180525.0-Server-i386-dvd1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL-6.10 Server.i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1592449 --El Torito VD version 1 found, boot catalog is in sector 499 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 17A32 96818 -diff --git a/tests/isodata/rhel/rhel6.10/RHEL-6.10-20180525.0-Server-ppc64-dvd1.iso.txt b/tests/isodata/rhel/rhel6.10/RHEL-6.10-20180525.0-Server-ppc64-dvd1.iso.txt -deleted file mode 100644 -index cc10d0e..0000000 ---- a/tests/isodata/rhel/rhel6.10/RHEL-6.10-20180525.0-Server-ppc64-dvd1.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: PPC --Volume id: RHEL-6.10 Server.ppc64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1653048 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/rhel/rhel6.10/RHEL-6.10-20180525.0-Server-s390x-dvd1.iso.txt b/tests/isodata/rhel/rhel6.10/RHEL-6.10-20180525.0-Server-s390x-dvd1.iso.txt -deleted file mode 100644 -index dec83f1..0000000 ---- a/tests/isodata/rhel/rhel6.10/RHEL-6.10-20180525.0-Server-s390x-dvd1.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL-6.10 Server.s390x --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1447366 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/rhel/rhel6.10/RHEL-6.10-20180525.0-Server-x86_64-dvd1.iso.txt b/tests/isodata/rhel/rhel6.10/RHEL-6.10-20180525.0-Server-x86_64-dvd1.iso.txt -deleted file mode 100644 -index 6a2ff12..0000000 ---- a/tests/isodata/rhel/rhel6.10/RHEL-6.10-20180525.0-Server-x86_64-dvd1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL-6.10 Server.x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1902115 --El Torito VD version 1 found, boot catalog is in sector 647 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1D81E 120862 -diff --git a/tests/isodata/rhel/rhel6.2/rhel-client-6.2-i386-dvd.iso.txt b/tests/isodata/rhel/rhel6.2/rhel-client-6.2-i386-dvd.iso.txt -deleted file mode 100644 -index 52d60ab..0000000 ---- a/tests/isodata/rhel/rhel6.2/rhel-client-6.2-i386-dvd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL_6.2 i386 Disc 1 --Volume set id: RHEL_6.2 i386 --Publisher id: --Data preparer id: --Application id: RHEL_6.2 i386 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1456551 --El Torito VD version 1 found, boot catalog is in sector 384 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 181 385 -diff --git a/tests/isodata/rhel/rhel6.2/rhel-client-6.2-x86_64-dvd.iso.txt b/tests/isodata/rhel/rhel6.2/rhel-client-6.2-x86_64-dvd.iso.txt -deleted file mode 100644 -index 3dd2d4f..0000000 ---- a/tests/isodata/rhel/rhel6.2/rhel-client-6.2-x86_64-dvd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL_6.2 x86_64 Disc 1 --Volume set id: RHEL_6.2 x86_64 --Publisher id: --Data preparer id: --Application id: RHEL_6.2 x86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1672772 --El Torito VD version 1 found, boot catalog is in sector 466 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 28B 651 -diff --git a/tests/isodata/rhel/rhel6.2/rhel-server-6.2-i386-dvd.iso.txt b/tests/isodata/rhel/rhel6.2/rhel-server-6.2-i386-dvd.iso.txt -deleted file mode 100644 -index ab5758c..0000000 ---- a/tests/isodata/rhel/rhel6.2/rhel-server-6.2-i386-dvd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL_6.2 i386 Disc 1 --Volume set id: RHEL_6.2 i386 --Publisher id: --Data preparer id: --Application id: RHEL_6.2 i386 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1481408 --El Torito VD version 1 found, boot catalog is in sector 464 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1D1 465 -diff --git a/tests/isodata/rhel/rhel6.2/rhel-server-6.2-x86_64-dvd.iso.txt b/tests/isodata/rhel/rhel6.2/rhel-server-6.2-x86_64-dvd.iso.txt -deleted file mode 100644 -index 947b81e..0000000 ---- a/tests/isodata/rhel/rhel6.2/rhel-server-6.2-x86_64-dvd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL_6.2 x86_64 Disc 1 --Volume set id: RHEL_6.2 x86_64 --Publisher id: --Data preparer id: --Application id: RHEL_6.2 x86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1752752 --El Torito VD version 1 found, boot catalog is in sector 591 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 250 592 -diff --git a/tests/isodata/rhel/rhel6.2/rhel-workstation-6.2-i386-dvd.iso.txt b/tests/isodata/rhel/rhel6.2/rhel-workstation-6.2-i386-dvd.iso.txt -deleted file mode 100644 -index 439f2b3..0000000 ---- a/tests/isodata/rhel/rhel6.2/rhel-workstation-6.2-i386-dvd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL_6.2 i386 Disc 1 --Volume set id: RHEL_6.2 i386 --Publisher id: --Data preparer id: --Application id: RHEL_6.2 i386 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1880242 --El Torito VD version 1 found, boot catalog is in sector 480 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1E1 481 -diff --git a/tests/isodata/rhel/rhel6.2/rhel-workstation-6.2-x86_64-dvd.iso.txt b/tests/isodata/rhel/rhel6.2/rhel-workstation-6.2-x86_64-dvd.iso.txt -deleted file mode 100644 -index 8c9872d..0000000 ---- a/tests/isodata/rhel/rhel6.2/rhel-workstation-6.2-x86_64-dvd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL_6.2 x86_64 Disc 1 --Volume set id: RHEL_6.2 x86_64 --Publisher id: --Data preparer id: --Application id: RHEL_6.2 x86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2165707 --El Torito VD version 1 found, boot catalog is in sector 606 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 317 791 -diff --git a/tests/isodata/rhel/rhel6.3/rhel-server-6.3-i386-dvd.iso.txt b/tests/isodata/rhel/rhel6.3/rhel-server-6.3-i386-dvd.iso.txt -deleted file mode 100644 -index 6806c26..0000000 ---- a/tests/isodata/rhel/rhel6.3/rhel-server-6.3-i386-dvd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL_6.3 i386 Disc 1 --Volume set id: RHEL_6.3 i386 --Publisher id: --Data preparer id: --Application id: RHEL_6.3 i386 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1513683 --El Torito VD version 1 found, boot catalog is in sector 469 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1D6 470 -diff --git a/tests/isodata/rhel/rhel6.3/rhel-server-6.3-x86_64-dvd.iso.txt b/tests/isodata/rhel/rhel6.3/rhel-server-6.3-x86_64-dvd.iso.txt -deleted file mode 100644 -index 18f1865..0000000 ---- a/tests/isodata/rhel/rhel6.3/rhel-server-6.3-x86_64-dvd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL_6.3 x86_64 Disc 1 --Volume set id: RHEL_6.3 x86_64 --Publisher id: --Data preparer id: --Application id: RHEL_6.3 x86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1796265 --El Torito VD version 1 found, boot catalog is in sector 599 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 310 784 -diff --git a/tests/isodata/rhel/rhel6.3/rhel-workstation-6.3-i386-dvd.iso.txt b/tests/isodata/rhel/rhel6.3/rhel-workstation-6.3-i386-dvd.iso.txt -deleted file mode 100644 -index f84f0ae..0000000 ---- a/tests/isodata/rhel/rhel6.3/rhel-workstation-6.3-i386-dvd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL_6.3 i386 Disc 1 --Volume set id: RHEL_6.3 i386 --Publisher id: --Data preparer id: --Application id: RHEL_6.3 i386 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1827632 --El Torito VD version 1 found, boot catalog is in sector 482 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1E3 483 -diff --git a/tests/isodata/rhel/rhel6.3/rhel-workstation-6.3-x86_64-dvd.iso.txt b/tests/isodata/rhel/rhel6.3/rhel-workstation-6.3-x86_64-dvd.iso.txt -deleted file mode 100644 -index 26bc77b..0000000 ---- a/tests/isodata/rhel/rhel6.3/rhel-workstation-6.3-x86_64-dvd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL_6.3 x86_64 Disc 1 --Volume set id: RHEL_6.3 x86_64 --Publisher id: --Data preparer id: --Application id: RHEL_6.3 x86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2124836 --El Torito VD version 1 found, boot catalog is in sector 612 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 31D 797 -diff --git a/tests/isodata/rhel/rhel6.4/rhel-server-6.4-i386-dvd.iso.txt b/tests/isodata/rhel/rhel6.4/rhel-server-6.4-i386-dvd.iso.txt -deleted file mode 100644 -index 6a3b8b8..0000000 ---- a/tests/isodata/rhel/rhel6.4/rhel-server-6.4-i386-dvd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL_6.4 i386 Disc 1 --Volume set id: RHEL_6.4 i386 --Publisher id: --Data preparer id: --Application id: RHEL_6.4 i386 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1540391 --El Torito VD version 1 found, boot catalog is in sector 478 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1DF 479 -diff --git a/tests/isodata/rhel/rhel6.4/rhel-server-6.4-x86_64-dvd.iso.txt b/tests/isodata/rhel/rhel6.4/rhel-server-6.4-x86_64-dvd.iso.txt -deleted file mode 100644 -index 06e696f..0000000 ---- a/tests/isodata/rhel/rhel6.4/rhel-server-6.4-x86_64-dvd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL_6.4 x86_64 Disc 1 --Volume set id: RHEL_6.4 x86_64 --Publisher id: --Data preparer id: --Application id: RHEL_6.4 x86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1816388 --El Torito VD version 1 found, boot catalog is in sector 609 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 31C 796 -diff --git a/tests/isodata/rhel/rhel6.4/rhel-workstation-6.4-i386-dvd.iso.txt b/tests/isodata/rhel/rhel6.4/rhel-workstation-6.4-i386-dvd.iso.txt -deleted file mode 100644 -index 533b7d8..0000000 ---- a/tests/isodata/rhel/rhel6.4/rhel-workstation-6.4-i386-dvd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL_6.4 i386 Disc 1 --Volume set id: RHEL_6.4 i386 --Publisher id: --Data preparer id: --Application id: RHEL_6.4 i386 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1843235 --El Torito VD version 1 found, boot catalog is in sector 490 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1EB 491 -diff --git a/tests/isodata/rhel/rhel6.4/rhel-workstation-6.4-x86_64-dvd.iso.txt b/tests/isodata/rhel/rhel6.4/rhel-workstation-6.4-x86_64-dvd.iso.txt -deleted file mode 100644 -index 0b4673a..0000000 ---- a/tests/isodata/rhel/rhel6.4/rhel-workstation-6.4-x86_64-dvd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL_6.4 x86_64 Disc 1 --Volume set id: RHEL_6.4 x86_64 --Publisher id: --Data preparer id: --Application id: RHEL_6.4 x86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2130896 --El Torito VD version 1 found, boot catalog is in sector 622 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 329 809 -diff --git a/tests/isodata/rhel/rhel6.5/RHEL6.5-20131213.0-Workstation-x86_64-DVD1.iso.txt b/tests/isodata/rhel/rhel6.5/RHEL6.5-20131213.0-Workstation-x86_64-DVD1.iso.txt -deleted file mode 100644 -index 96ca62f..0000000 ---- a/tests/isodata/rhel/rhel6.5/RHEL6.5-20131213.0-Workstation-x86_64-DVD1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL_6.5 x86_64 Disc 1 --Volume set id: RHEL_6.5 x86_64 --Publisher id: --Data preparer id: --Application id: RHEL_6.5 x86_64 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2188414 --El Torito VD version 1 found, boot catalog is in sector 627 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 32E 814 -diff --git a/tests/isodata/rhel/rhel6.6/rhel-server-6.6-x86_64-dvd.iso.txt b/tests/isodata/rhel/rhel6.6/rhel-server-6.6-x86_64-dvd.iso.txt -deleted file mode 100644 -index 90222af..0000000 ---- a/tests/isodata/rhel/rhel6.6/rhel-server-6.6-x86_64-dvd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL-6.6 Server.x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1846398 --El Torito VD version 1 found, boot catalog is in sector 990 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1CD6D 118125 -diff --git a/tests/isodata/rhel/rhel6.7/rhel-server-6.7-i386-dvd.iso.txt b/tests/isodata/rhel/rhel6.7/rhel-server-6.7-i386-dvd.iso.txt -deleted file mode 100644 -index 02fd300..0000000 ---- a/tests/isodata/rhel/rhel6.7/rhel-server-6.7-i386-dvd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL-6.7 Server.i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1579938 --El Torito VD version 1 found, boot catalog is in sector 852 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 18723 100131 -diff --git a/tests/isodata/rhel/rhel6.7/rhel-server-6.7-x86_64-dvd.iso.txt b/tests/isodata/rhel/rhel6.7/rhel-server-6.7-x86_64-dvd.iso.txt -deleted file mode 100644 -index 88ff992..0000000 ---- a/tests/isodata/rhel/rhel6.7/rhel-server-6.7-x86_64-dvd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL-6.7 Server.x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1875511 --El Torito VD version 1 found, boot catalog is in sector 995 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1DBD0 121808 -diff --git a/tests/isodata/rhel/rhel6.8/rhel-server-6.8-x86_64-dvd.iso.txt b/tests/isodata/rhel/rhel6.8/rhel-server-6.8-x86_64-dvd.iso.txt -deleted file mode 100644 -index 5384cbe..0000000 ---- a/tests/isodata/rhel/rhel6.8/rhel-server-6.8-x86_64-dvd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL-6.8 Server.x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1893612 --El Torito VD version 1 found, boot catalog is in sector 1001 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1D6D7 120535 -diff --git a/tests/isodata/rhel/rhel6.9/RHEL-6.9-20170309.0-Server-i386-dvd1.iso.txt b/tests/isodata/rhel/rhel6.9/RHEL-6.9-20170309.0-Server-i386-dvd1.iso.txt -deleted file mode 100644 -index 7eccb59..0000000 ---- a/tests/isodata/rhel/rhel6.9/RHEL-6.9-20170309.0-Server-i386-dvd1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL-6.9 Server.i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1588559 --El Torito VD version 1 found, boot catalog is in sector 497 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 17B6F 97135 -diff --git a/tests/isodata/rhel/rhel6.9/RHEL-6.9-20170309.0-Server-x86_64-dvd1.iso.txt b/tests/isodata/rhel/rhel6.9/RHEL-6.9-20170309.0-Server-x86_64-dvd1.iso.txt -deleted file mode 100644 -index f98349c..0000000 ---- a/tests/isodata/rhel/rhel6.9/RHEL-6.9-20170309.0-Server-x86_64-dvd1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL-6.9 Server.x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1897539 --El Torito VD version 1 found, boot catalog is in sector 646 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1D956 121174 -diff --git a/tests/isodata/rhel/rhel7.0/RHEL-7.0-20140507.0-Client-x86_64-dvd1.iso.txt b/tests/isodata/rhel/rhel7.0/RHEL-7.0-20140507.0-Client-x86_64-dvd1.iso.txt -deleted file mode 100644 -index 83b6439..0000000 ---- a/tests/isodata/rhel/rhel7.0/RHEL-7.0-20140507.0-Client-x86_64-dvd1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL-7.0 Client.x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1769497 --El Torito VD version 1 found, boot catalog is in sector 977 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2B0DC 176348 -diff --git a/tests/isodata/rhel/rhel7.0/RHEL-7.0-20140507.0-ComputeNode-x86_64-dvd1.iso.txt b/tests/isodata/rhel/rhel7.0/RHEL-7.0-20140507.0-ComputeNode-x86_64-dvd1.iso.txt -deleted file mode 100644 -index 7eee39b..0000000 ---- a/tests/isodata/rhel/rhel7.0/RHEL-7.0-20140507.0-ComputeNode-x86_64-dvd1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL-7.0 ComputeNode.x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1012766 --El Torito VD version 1 found, boot catalog is in sector 782 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2B019 176153 -diff --git a/tests/isodata/rhel/rhel7.0/RHEL-7.0-20140507.0-Server-x86_64-dvd1.iso.txt b/tests/isodata/rhel/rhel7.0/RHEL-7.0-20140507.0-Server-x86_64-dvd1.iso.txt -deleted file mode 100644 -index 1b4d491..0000000 ---- a/tests/isodata/rhel/rhel7.0/RHEL-7.0-20140507.0-Server-x86_64-dvd1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL-7.0 Server.x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1827360 --El Torito VD version 1 found, boot catalog is in sector 1090 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2B14E 176462 -diff --git a/tests/isodata/rhel/rhel7.0/RHEL-7.0-20140507.0-Workstation-x86_64-dvd1.iso.txt b/tests/isodata/rhel/rhel7.0/RHEL-7.0-20140507.0-Workstation-x86_64-dvd1.iso.txt -deleted file mode 100644 -index fdd3b11..0000000 ---- a/tests/isodata/rhel/rhel7.0/RHEL-7.0-20140507.0-Workstation-x86_64-dvd1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL-7.0 Workstation.x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2052105 --El Torito VD version 1 found, boot catalog is in sector 1111 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2B162 176482 -diff --git a/tests/isodata/rhel/rhel7.0/RHELSA-1.5-20141017.1-Server-aarch64-dvd1.iso.txt b/tests/isodata/rhel/rhel7.0/RHELSA-1.5-20141017.1-Server-aarch64-dvd1.iso.txt -deleted file mode 100644 -index 6f017e9..0000000 ---- a/tests/isodata/rhel/rhel7.0/RHELSA-1.5-20141017.1-Server-aarch64-dvd1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHELSA-1.5 Server.aarch64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1417692 --El Torito VD version 1 found, boot catalog is in sector 523 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 239 (Unknown Arch) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 29E8 -- Bootoff 1DED2 122578 -diff --git a/tests/isodata/rhel/rhel7.1/RHEL-7.1-20150219.1-Client-x86_64-dvd1.iso.txt b/tests/isodata/rhel/rhel7.1/RHEL-7.1-20150219.1-Client-x86_64-dvd1.iso.txt -deleted file mode 100644 -index 92b8597..0000000 ---- a/tests/isodata/rhel/rhel7.1/RHEL-7.1-20150219.1-Client-x86_64-dvd1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL-7.1 Client.x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1870122 --El Torito VD version 1 found, boot catalog is in sector 986 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2AE29 175657 -diff --git a/tests/isodata/rhel/rhel7.1/RHEL-7.1-20150219.1-Server-x86_64-dvd1.iso.txt b/tests/isodata/rhel/rhel7.1/RHEL-7.1-20150219.1-Server-x86_64-dvd1.iso.txt -deleted file mode 100644 -index 8aba100..0000000 ---- a/tests/isodata/rhel/rhel7.1/RHEL-7.1-20150219.1-Server-x86_64-dvd1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL-7.1 Server.x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1899146 --El Torito VD version 1 found, boot catalog is in sector 1102 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2AE9E 175774 -diff --git a/tests/isodata/rhel/rhel7.1/RHEL-7.1-20150219.1-Workstation-x86_64-dvd1.iso.txt b/tests/isodata/rhel/rhel7.1/RHEL-7.1-20150219.1-Workstation-x86_64-dvd1.iso.txt -deleted file mode 100644 -index dea75a5..0000000 ---- a/tests/isodata/rhel/rhel7.1/RHEL-7.1-20150219.1-Workstation-x86_64-dvd1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL-7.1 Workstation.x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2152803 --El Torito VD version 1 found, boot catalog is in sector 1121 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2AEB0 175792 -diff --git a/tests/isodata/rhel/rhel7.1/RHELSA-7.1-20150616.0-Server-aarch64-dvd1.iso.txt b/tests/isodata/rhel/rhel7.1/RHELSA-7.1-20150616.0-Server-aarch64-dvd1.iso.txt -deleted file mode 100644 -index 6ed014f..0000000 ---- a/tests/isodata/rhel/rhel7.1/RHELSA-7.1-20150616.0-Server-aarch64-dvd1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHELSA-7.1 Server.aarch64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1423849 --El Torito VD version 1 found, boot catalog is in sector 517 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 239 (Unknown Arch) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 29EC -- Bootoff 1D979 121209 -diff --git a/tests/isodata/rhel/rhel7.2/rhel-computenode-7.2-x86_64-dvd.iso.txt b/tests/isodata/rhel/rhel7.2/rhel-computenode-7.2-x86_64-dvd.iso.txt -deleted file mode 100644 -index 7f0264f..0000000 ---- a/tests/isodata/rhel/rhel7.2/rhel-computenode-7.2-x86_64-dvd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL-7.2 ComputeNode.x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1121326 --El Torito VD version 1 found, boot catalog is in sector 811 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2D1D0 184784 -diff --git a/tests/isodata/rhel/rhel7.2/rhel-server-7.2-aarch64-dvd.iso.txt b/tests/isodata/rhel/rhel7.2/rhel-server-7.2-aarch64-dvd.iso.txt -deleted file mode 100644 -index 6edc805..0000000 ---- a/tests/isodata/rhel/rhel7.2/rhel-server-7.2-aarch64-dvd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL-7.2 Server.aarch64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1520686 --El Torito VD version 1 found, boot catalog is in sector 942 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 239 (Unknown Arch) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 2A08 -- Bootoff 1F31D 127773 -diff --git a/tests/isodata/rhel/rhel7.2/rhel-server-7.2-ppc64-dvd.iso.txt b/tests/isodata/rhel/rhel7.2/rhel-server-7.2-ppc64-dvd.iso.txt -deleted file mode 100644 -index 116166e..0000000 ---- a/tests/isodata/rhel/rhel7.2/rhel-server-7.2-ppc64-dvd.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: PPC --Volume id: RHEL-7.2 Server.ppc64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1658196 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/rhel/rhel7.2/rhel-server-7.2-ppc64le-dvd.iso.txt b/tests/isodata/rhel/rhel7.2/rhel-server-7.2-ppc64le-dvd.iso.txt -deleted file mode 100644 -index 25f3b59..0000000 ---- a/tests/isodata/rhel/rhel7.2/rhel-server-7.2-ppc64le-dvd.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: PPC --Volume id: RHEL-7.2 Server.ppc64le --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1732389 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/rhel/rhel7.2/rhel-server-7.2-s390x-dvd.iso.txt b/tests/isodata/rhel/rhel7.2/rhel-server-7.2-s390x-dvd.iso.txt -deleted file mode 100644 -index df04143..0000000 ---- a/tests/isodata/rhel/rhel7.2/rhel-server-7.2-s390x-dvd.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL-7.2 Server.s390x --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1378047 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/rhel/rhel7.2/rhel-server-7.2-x86_64-dvd.iso.txt b/tests/isodata/rhel/rhel7.2/rhel-server-7.2-x86_64-dvd.iso.txt -deleted file mode 100644 -index 5fb3a67..0000000 ---- a/tests/isodata/rhel/rhel7.2/rhel-server-7.2-x86_64-dvd.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL-7.2 Server.x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1973912 --El Torito VD version 1 found, boot catalog is in sector 1139 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2D319 185113 -diff --git a/tests/isodata/rhel/rhel7.3/RHEL-7.3-20161019.0-Server-aarch64-dvd1.iso.txt b/tests/isodata/rhel/rhel7.3/RHEL-7.3-20161019.0-Server-aarch64-dvd1.iso.txt -deleted file mode 100644 -index 8dfecc9..0000000 ---- a/tests/isodata/rhel/rhel7.3/RHEL-7.3-20161019.0-Server-aarch64-dvd1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL-7.3 Server.aarch64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1362305 --El Torito VD version 1 found, boot catalog is in sector 960 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 239 (Unknown Arch) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 2A28 -- Bootoff 2351F 144671 -diff --git a/tests/isodata/rhel/rhel7.3/RHEL-7.3-20161019.0-Server-ppc64-dvd1.iso.txt b/tests/isodata/rhel/rhel7.3/RHEL-7.3-20161019.0-Server-ppc64-dvd1.iso.txt -deleted file mode 100644 -index c143637..0000000 ---- a/tests/isodata/rhel/rhel7.3/RHEL-7.3-20161019.0-Server-ppc64-dvd1.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: PPC --Volume id: RHEL-7.3 Server.ppc64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1685158 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/rhel/rhel7.3/RHEL-7.3-20161019.0-Server-ppc64le-dvd1.iso.txt b/tests/isodata/rhel/rhel7.3/RHEL-7.3-20161019.0-Server-ppc64le-dvd1.iso.txt -deleted file mode 100644 -index a30eedc..0000000 ---- a/tests/isodata/rhel/rhel7.3/RHEL-7.3-20161019.0-Server-ppc64le-dvd1.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: PPC --Volume id: RHEL-7.3 Server.ppc64le --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1557102 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/rhel/rhel7.3/RHEL-7.3-20161019.0-Server-s390x-dvd1.iso.txt b/tests/isodata/rhel/rhel7.3/RHEL-7.3-20161019.0-Server-s390x-dvd1.iso.txt -deleted file mode 100644 -index e9d221a..0000000 ---- a/tests/isodata/rhel/rhel7.3/RHEL-7.3-20161019.0-Server-s390x-dvd1.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL-7.3 Server.s390x --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1389155 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/rhel/rhel7.3/RHEL-7.3-20161019.0-Server-x86_64-dvd1.iso.txt b/tests/isodata/rhel/rhel7.3/RHEL-7.3-20161019.0-Server-x86_64-dvd1.iso.txt -deleted file mode 100644 -index 1d84545..0000000 ---- a/tests/isodata/rhel/rhel7.3/RHEL-7.3-20161019.0-Server-x86_64-dvd1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL-7.3 Server.x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1852148 --El Torito VD version 1 found, boot catalog is in sector 1160 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 33255 209493 -diff --git a/tests/isodata/rhel/rhel7.4/RHEL-7.4-20170711.0-Server-aarch64-dvd1.iso.txt b/tests/isodata/rhel/rhel7.4/RHEL-7.4-20170711.0-Server-aarch64-dvd1.iso.txt -deleted file mode 100644 -index 5d628ee..0000000 ---- a/tests/isodata/rhel/rhel7.4/RHEL-7.4-20170711.0-Server-aarch64-dvd1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL-7.4 Server.aarch64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1410962 --El Torito VD version 1 found, boot catalog is in sector 577 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 239 (Unknown Arch) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 2994 -- Bootoff 26B5C 158556 -diff --git a/tests/isodata/rhel/rhel7.4/RHEL-7.4-20170711.0-Server-ppc64-dvd1.iso.txt b/tests/isodata/rhel/rhel7.4/RHEL-7.4-20170711.0-Server-ppc64-dvd1.iso.txt -deleted file mode 100644 -index 0151223..0000000 ---- a/tests/isodata/rhel/rhel7.4/RHEL-7.4-20170711.0-Server-ppc64-dvd1.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: PPC --Volume id: RHEL-7.4 Server.ppc64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1716621 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/rhel/rhel7.4/RHEL-7.4-20170711.0-Server-ppc64le-dvd1.iso.txt b/tests/isodata/rhel/rhel7.4/RHEL-7.4-20170711.0-Server-ppc64le-dvd1.iso.txt -deleted file mode 100644 -index 326ac06..0000000 ---- a/tests/isodata/rhel/rhel7.4/RHEL-7.4-20170711.0-Server-ppc64le-dvd1.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: PPC --Volume id: RHEL-7.4 Server.ppc64le --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1603450 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/rhel/rhel7.4/RHEL-7.4-20170711.0-Server-s390x-dvd1.iso.txt b/tests/isodata/rhel/rhel7.4/RHEL-7.4-20170711.0-Server-s390x-dvd1.iso.txt -deleted file mode 100644 -index 48529f0..0000000 ---- a/tests/isodata/rhel/rhel7.4/RHEL-7.4-20170711.0-Server-s390x-dvd1.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL-7.4 Server.s390x --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1476396 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/rhel/rhel7.4/RHEL-7.4-20170711.0-Server-x86_64-dvd1.iso.txt b/tests/isodata/rhel/rhel7.4/RHEL-7.4-20170711.0-Server-x86_64-dvd1.iso.txt -deleted file mode 100644 -index 1fd0767..0000000 ---- a/tests/isodata/rhel/rhel7.4/RHEL-7.4-20170711.0-Server-x86_64-dvd1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL-7.4 Server.x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1981880 --El Torito VD version 1 found, boot catalog is in sector 787 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 39084 233604 -diff --git a/tests/isodata/rhel/rhel7.5/RHEL-7.5-20180322.0-Server-ppc64-dvd1.iso.txt b/tests/isodata/rhel/rhel7.5/RHEL-7.5-20180322.0-Server-ppc64-dvd1.iso.txt -deleted file mode 100644 -index a522afb..0000000 ---- a/tests/isodata/rhel/rhel7.5/RHEL-7.5-20180322.0-Server-ppc64-dvd1.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: PPC --Volume id: RHEL-7.5 Server.ppc64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1813066 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/rhel/rhel7.5/RHEL-7.5-20180322.0-Server-ppc64le-dvd1.iso.txt b/tests/isodata/rhel/rhel7.5/RHEL-7.5-20180322.0-Server-ppc64le-dvd1.iso.txt -deleted file mode 100644 -index 1aa5db0..0000000 ---- a/tests/isodata/rhel/rhel7.5/RHEL-7.5-20180322.0-Server-ppc64le-dvd1.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: PPC --Volume id: RHEL-7.5 Server.ppc64le --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1694649 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/rhel/rhel7.5/RHEL-7.5-20180322.0-Server-s390x-dvd1.iso.txt b/tests/isodata/rhel/rhel7.5/RHEL-7.5-20180322.0-Server-s390x-dvd1.iso.txt -deleted file mode 100644 -index 0cb7cee..0000000 ---- a/tests/isodata/rhel/rhel7.5/RHEL-7.5-20180322.0-Server-s390x-dvd1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL-7.5 Server.s390x --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1591340 --El Torito VD version 1 found, boot catalog is in sector 675 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4450 -- Bootoff 2C0 704 -diff --git a/tests/isodata/rhel/rhel7.5/RHEL-7.5-20180322.0-Server-x86_64-dvd1.iso.txt b/tests/isodata/rhel/rhel7.5/RHEL-7.5-20180322.0-Server-x86_64-dvd1.iso.txt -deleted file mode 100644 -index 511e30b..0000000 ---- a/tests/isodata/rhel/rhel7.5/RHEL-7.5-20180322.0-Server-x86_64-dvd1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL-7.5 Server.x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2254848 --El Torito VD version 1 found, boot catalog is in sector 806 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 42AA7 273063 -diff --git a/tests/isodata/rhel/rhel7.6/RHEL-7.6-20181010.0-Server-ppc64-boot.iso.txt b/tests/isodata/rhel/rhel7.6/RHEL-7.6-20181010.0-Server-ppc64-boot.iso.txt -deleted file mode 100644 -index 63e8a18..0000000 ---- a/tests/isodata/rhel/rhel7.6/RHEL-7.6-20181010.0-Server-ppc64-boot.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: PPC --Volume id: RHEL_7_6_Server_ppc64 --Volume set id: 7.6 --Publisher id: --Data preparer id: --Application id: Red Hat Enterprise Linux 7.6 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 294480 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/rhel/rhel7.6/RHEL-7.6-20181010.0-Server-ppc64-dvd1.iso.txt b/tests/isodata/rhel/rhel7.6/RHEL-7.6-20181010.0-Server-ppc64-dvd1.iso.txt -deleted file mode 100644 -index c7bcede..0000000 ---- a/tests/isodata/rhel/rhel7.6/RHEL-7.6-20181010.0-Server-ppc64-dvd1.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: PPC --Volume id: RHEL-7.6 Server.ppc64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1874275 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/rhel/rhel7.6/RHEL-7.6-20181010.0-Server-ppc64le-boot.iso.txt b/tests/isodata/rhel/rhel7.6/RHEL-7.6-20181010.0-Server-ppc64le-boot.iso.txt -deleted file mode 100644 -index 226f88d..0000000 ---- a/tests/isodata/rhel/rhel7.6/RHEL-7.6-20181010.0-Server-ppc64le-boot.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: PPC --Volume id: RHEL_7_6_Server_ppc64le --Volume set id: 7.6 --Publisher id: --Data preparer id: --Application id: Red Hat Enterprise Linux 7.6 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 297600 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/rhel/rhel7.6/RHEL-7.6-20181010.0-Server-ppc64le-dvd1.iso.txt b/tests/isodata/rhel/rhel7.6/RHEL-7.6-20181010.0-Server-ppc64le-dvd1.iso.txt -deleted file mode 100644 -index 24b64db..0000000 ---- a/tests/isodata/rhel/rhel7.6/RHEL-7.6-20181010.0-Server-ppc64le-dvd1.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: PPC --Volume id: RHEL-7.6 Server.ppc64le --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1657806 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/rhel/rhel7.6/RHEL-7.6-20181010.0-Server-s390x-boot.iso.txt b/tests/isodata/rhel/rhel7.6/RHEL-7.6-20181010.0-Server-s390x-boot.iso.txt -deleted file mode 100644 -index 0f1331d..0000000 ---- a/tests/isodata/rhel/rhel7.6/RHEL-7.6-20181010.0-Server-s390x-boot.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL-7.6 Server.s390x --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 235033 --El Torito VD version 1 found, boot catalog is in sector 34 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 23 35 -diff --git a/tests/isodata/rhel/rhel7.6/RHEL-7.6-20181010.0-Server-s390x-dvd1.iso.txt b/tests/isodata/rhel/rhel7.6/RHEL-7.6-20181010.0-Server-s390x-dvd1.iso.txt -deleted file mode 100644 -index 6ceabce..0000000 ---- a/tests/isodata/rhel/rhel7.6/RHEL-7.6-20181010.0-Server-s390x-dvd1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL-7.6 Server.s390x --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1653497 --El Torito VD version 1 found, boot catalog is in sector 681 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4ECC -- Bootoff 2C6 710 -diff --git a/tests/isodata/rhel/rhel7.6/RHEL-7.6-20181010.0-Server-x86_64-boot.iso.txt b/tests/isodata/rhel/rhel7.6/RHEL-7.6-20181010.0-Server-x86_64-boot.iso.txt -deleted file mode 100644 -index f6515fc..0000000 ---- a/tests/isodata/rhel/rhel7.6/RHEL-7.6-20181010.0-Server-x86_64-boot.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL-7.6 Server.x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 278719 --El Torito VD version 1 found, boot catalog is in sector 46 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 68B7 26807 -diff --git a/tests/isodata/rhel/rhel7.6/RHEL-7.6-20181010.0-Server-x86_64-dvd1.iso.txt b/tests/isodata/rhel/rhel7.6/RHEL-7.6-20181010.0-Server-x86_64-dvd1.iso.txt -deleted file mode 100644 -index 588a4a2..0000000 ---- a/tests/isodata/rhel/rhel7.6/RHEL-7.6-20181010.0-Server-x86_64-dvd1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL-7.6 Server.x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2195639 --El Torito VD version 1 found, boot catalog is in sector 815 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 4AB0F 305935 -diff --git a/tests/isodata/rhel/rhel7.6/RHEL-7.6-20181010.0-Workstation-x86_64-boot.iso.txt b/tests/isodata/rhel/rhel7.6/RHEL-7.6-20181010.0-Workstation-x86_64-boot.iso.txt -deleted file mode 100644 -index 0110481..0000000 ---- a/tests/isodata/rhel/rhel7.6/RHEL-7.6-20181010.0-Workstation-x86_64-boot.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL-7.6 Workstation.x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 278742 --El Torito VD version 1 found, boot catalog is in sector 46 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 687B 26747 -diff --git a/tests/isodata/rhel/rhel7.6/RHEL-7.6-20181010.0-Workstation-x86_64-dvd1.iso.txt b/tests/isodata/rhel/rhel7.6/RHEL-7.6-20181010.0-Workstation-x86_64-dvd1.iso.txt -deleted file mode 100644 -index 3d30f40..0000000 ---- a/tests/isodata/rhel/rhel7.6/RHEL-7.6-20181010.0-Workstation-x86_64-dvd1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL-7.6 Workstation.x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2259642 --El Torito VD version 1 found, boot catalog is in sector 805 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 4AAE0 305888 -diff --git a/tests/isodata/rhel/rhel8.0/RHEL-8.0-20181113.1-aarch64-boot.iso.txt b/tests/isodata/rhel/rhel8.0/RHEL-8.0-20181113.1-aarch64-boot.iso.txt -deleted file mode 100644 -index b1b7cba..0000000 ---- a/tests/isodata/rhel/rhel8.0/RHEL-8.0-20181113.1-aarch64-boot.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL-8-0-BaseOS-aarch64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 256972 --El Torito VD version 1 found, boot catalog is in sector 42 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 239 (Unknown Arch) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 32D0 -- Bootoff 2C 44 -diff --git a/tests/isodata/rhel/rhel8.0/RHEL-8.0-20181113.1-aarch64-dvd1.iso.txt b/tests/isodata/rhel/rhel8.0/RHEL-8.0-20181113.1-aarch64-dvd1.iso.txt -deleted file mode 100644 -index ce01c02..0000000 ---- a/tests/isodata/rhel/rhel8.0/RHEL-8.0-20181113.1-aarch64-dvd1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL-8-0-BaseOS-aarch64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2867727 --El Torito VD version 1 found, boot catalog is in sector 847 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 239 (Unknown Arch) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 32D0 -- Bootoff F08 3848 -diff --git a/tests/isodata/rhel/rhel8.0/RHEL-8.0-20181113.1-ppc64le-boot.iso.txt b/tests/isodata/rhel/rhel8.0/RHEL-8.0-20181113.1-ppc64le-boot.iso.txt -deleted file mode 100644 -index ccf738a..0000000 ---- a/tests/isodata/rhel/rhel8.0/RHEL-8.0-20181113.1-ppc64le-boot.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: PPC --Volume id: RHEL_8_0_BaseOS_ppc64le --Volume set id: 8.0 --Publisher id: --Data preparer id: --Application id: Red Hat Enterprise Linux 8.0 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 279805 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/rhel/rhel8.0/RHEL-8.0-20181113.1-ppc64le-dvd1.iso.txt b/tests/isodata/rhel/rhel8.0/RHEL-8.0-20181113.1-ppc64le-dvd1.iso.txt -deleted file mode 100644 -index 1eb781b..0000000 ---- a/tests/isodata/rhel/rhel8.0/RHEL-8.0-20181113.1-ppc64le-dvd1.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: PPC --Volume id: RHEL-8-0-BaseOS-ppc64le --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 3073014 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/rhel/rhel8.0/RHEL-8.0-20181113.1-s390x-boot.iso.txt b/tests/isodata/rhel/rhel8.0/RHEL-8.0-20181113.1-s390x-boot.iso.txt -deleted file mode 100644 -index 2014004..0000000 ---- a/tests/isodata/rhel/rhel8.0/RHEL-8.0-20181113.1-s390x-boot.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL-8-0-BaseOS-s390x --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 237307 --El Torito VD version 1 found, boot catalog is in sector 34 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 23 35 -diff --git a/tests/isodata/rhel/rhel8.0/RHEL-8.0-20181113.1-s390x-dvd1.iso.txt b/tests/isodata/rhel/rhel8.0/RHEL-8.0-20181113.1-s390x-dvd1.iso.txt -deleted file mode 100644 -index d00ccfb..0000000 ---- a/tests/isodata/rhel/rhel8.0/RHEL-8.0-20181113.1-s390x-dvd1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL-8-0-BaseOS-s390x --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2746748 --El Torito VD version 1 found, boot catalog is in sector 815 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 73DC -- Bootoff 335 821 -diff --git a/tests/isodata/rhel/rhel8.0/RHEL-8.0-20181113.1-x86_64-boot.iso.txt b/tests/isodata/rhel/rhel8.0/RHEL-8.0-20181113.1-x86_64-boot.iso.txt -deleted file mode 100644 -index 07a61b8..0000000 ---- a/tests/isodata/rhel/rhel8.0/RHEL-8.0-20181113.1-x86_64-boot.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL-8-0-BaseOS-x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 276128 --El Torito VD version 1 found, boot catalog is in sector 44 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 4227F 270975 -diff --git a/tests/isodata/rhel/rhel8.0/RHEL-8.0-20181113.1-x86_64-dvd1.iso.txt b/tests/isodata/rhel/rhel8.0/RHEL-8.0-20181113.1-x86_64-dvd1.iso.txt -deleted file mode 100644 -index e53b2aa..0000000 ---- a/tests/isodata/rhel/rhel8.0/RHEL-8.0-20181113.1-x86_64-dvd1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: RHEL-8-0-BaseOS-x86_64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 3400439 --El Torito VD version 1 found, boot catalog is in sector 1028 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 438C9 276681 -diff --git a/tests/isodata/sled/sled11sp1/SLED-11-SP1-DVD-i586-GM-DVD1.iso.txt b/tests/isodata/sled/sled11sp1/SLED-11-SP1-DVD-i586-GM-DVD1.iso.txt -deleted file mode 100644 -index 0e1785e..0000000 ---- a/tests/isodata/sled/sled11sp1/SLED-11-SP1-DVD-i586-GM-DVD1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: SLED-11-SP1-DVD-i586.0336.1.001 --Volume set id: --Publisher id: SUSE LINUX Products GmbH --Data preparer id: KIWI - http://kiwi.berlios.de --Application id: SLED-11-SP1-DVD-i586-Build0336-Media1 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2106690 --El Torito VD version 1 found, boot catalog is in sector 20 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'SUSE LINUX Products Gmb' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 20A 522 -diff --git a/tests/isodata/sled/sled11sp1/SLED-11-SP1-DVD-x86_64-GM-DVD1.iso.txt b/tests/isodata/sled/sled11sp1/SLED-11-SP1-DVD-x86_64-GM-DVD1.iso.txt -deleted file mode 100644 -index 0ee3753..0000000 ---- a/tests/isodata/sled/sled11sp1/SLED-11-SP1-DVD-x86_64-GM-DVD1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: SLED-11-SP1-DVD-x86_64.0336..001 --Volume set id: --Publisher id: SUSE LINUX Products GmbH --Data preparer id: KIWI - http://kiwi.berlios.de --Application id: SLED-11-SP1-DVD-x86_64-Build0336-Media1 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2178524 --El Torito VD version 1 found, boot catalog is in sector 20 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'SUSE LINUX Products Gmb' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 239 569 -diff --git a/tests/isodata/sled/sled11sp2/SLED-11-SP2-DVD-i586-GM-DVD1.iso.txt b/tests/isodata/sled/sled11sp2/SLED-11-SP2-DVD-i586-GM-DVD1.iso.txt -deleted file mode 100644 -index 03da31d..0000000 ---- a/tests/isodata/sled/sled11sp2/SLED-11-SP2-DVD-i586-GM-DVD1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: SLED-11-SP2-DVD-i58606261 --Volume set id: --Publisher id: SUSE LINUX Products GmbH --Data preparer id: KIWI - http://kiwi.berlios.de --Application id: SLED-11-SP2-DVD-i586-Build0626-Media1 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2183881 --El Torito VD version 1 found, boot catalog is in sector 20 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'SUSE LINUX Products Gmb' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 217 535 -diff --git a/tests/isodata/sled/sled11sp2/SLED-11-SP2-DVD-x86_64-GM-DVD1.iso.txt b/tests/isodata/sled/sled11sp2/SLED-11-SP2-DVD-x86_64-GM-DVD1.iso.txt -deleted file mode 100644 -index 549d221..0000000 ---- a/tests/isodata/sled/sled11sp2/SLED-11-SP2-DVD-x86_64-GM-DVD1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: SLED-11-SP2-DVD-x86_6406261 --Volume set id: --Publisher id: SUSE LINUX Products GmbH --Data preparer id: KIWI - http://kiwi.berlios.de --Application id: SLED-11-SP2-DVD-x86_64-Build0626-Media1 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2264068 --El Torito VD version 1 found, boot catalog is in sector 20 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'SUSE LINUX Products Gmb' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 24C 588 -diff --git a/tests/isodata/sled/sled11sp3/SLED-11-SP3-DVD-i586-GM-DVD1.iso.txt b/tests/isodata/sled/sled11sp3/SLED-11-SP3-DVD-i586-GM-DVD1.iso.txt -deleted file mode 100644 -index 713428c..0000000 ---- a/tests/isodata/sled/sled11sp3/SLED-11-SP3-DVD-i586-GM-DVD1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: SLED-11-SP3-DVD-i58604841 --Volume set id: --Publisher id: SUSE LINUX Products GmbH --Data preparer id: KIWI - http://kiwi.berlios.de --Application id: SLED-11-SP3-DVD-i586-Build0484-Media1 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2171398 --El Torito VD version 1 found, boot catalog is in sector 20 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'SUSE LINUX Products Gmb' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 215 533 -diff --git a/tests/isodata/sled/sled11sp3/SLED-11-SP3-DVD-x86_64-GM-DVD1.iso.txt b/tests/isodata/sled/sled11sp3/SLED-11-SP3-DVD-x86_64-GM-DVD1.iso.txt -deleted file mode 100644 -index a5c3d08..0000000 ---- a/tests/isodata/sled/sled11sp3/SLED-11-SP3-DVD-x86_64-GM-DVD1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: SLED-11-SP3-DVD-x86_6404841 --Volume set id: --Publisher id: SUSE LINUX Products GmbH --Data preparer id: KIWI - http://kiwi.berlios.de --Application id: SLED-11-SP3-DVD-x86_64-Build0484-Media1 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2230315 --El Torito VD version 1 found, boot catalog is in sector 20 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'SUSE LINUX Products Gmb' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 252 594 -diff --git a/tests/isodata/sled/sled11sp4/SLED-11-SP4-DVD-i586-GM-DVD1.iso.txt b/tests/isodata/sled/sled11sp4/SLED-11-SP4-DVD-i586-GM-DVD1.iso.txt -deleted file mode 100644 -index 9e704fd..0000000 ---- a/tests/isodata/sled/sled11sp4/SLED-11-SP4-DVD-i586-GM-DVD1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: SLED-11-SP4-DVD-i58610211 --Volume set id: --Publisher id: SUSE LINUX GmbH --Data preparer id: KIWI - http://opensuse.github.com/kiwi --Application id: SLED-11-SP4-DVD-i586-Build1021-Media1 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2204975 --El Torito VD version 1 found, boot catalog is in sector 20 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'SUSE LINUX GmbH' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 218 536 -diff --git a/tests/isodata/sled/sled11sp4/SLED-11-SP4-DVD-x86_64-GM-DVD1.iso.txt b/tests/isodata/sled/sled11sp4/SLED-11-SP4-DVD-x86_64-GM-DVD1.iso.txt -deleted file mode 100644 -index fd876a0..0000000 ---- a/tests/isodata/sled/sled11sp4/SLED-11-SP4-DVD-x86_64-GM-DVD1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: SLED-11-SP4-DVD-x86_6410211 --Volume set id: --Publisher id: SUSE LINUX GmbH --Data preparer id: KIWI - http://opensuse.github.com/kiwi --Application id: SLED-11-SP4-DVD-x86_64-Build1021-Media1 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2266410 --El Torito VD version 1 found, boot catalog is in sector 20 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'SUSE LINUX GmbH' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 146A 5226 -diff --git a/tests/isodata/sled/sled12/SLE-12-Desktop-DVD-x86_64-GM-DVD1.iso.txt b/tests/isodata/sled/sled12/SLE-12-Desktop-DVD-x86_64-GM-DVD1.iso.txt -deleted file mode 100644 -index ddf7ff0..0000000 ---- a/tests/isodata/sled/sled12/SLE-12-Desktop-DVD-x86_64-GM-DVD1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: SLE-12-Desktop-DVD-x86_6405561 --Volume set id: --Publisher id: SUSE LINUX GmbH --Data preparer id: KIWI - http://opensuse.github.com/kiwi --Application id: SLE-12-Desktop-DVD-x86_64-Build0556-Media1 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2140317 --El Torito VD version 1 found, boot catalog is in sector 20 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'SUSE LINUX GmbH' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 14D4 5332 -diff --git a/tests/isodata/sled/sled12sp1/SLE-12-SP1-Desktop-DVD-x86_64-GM-DVD1.iso.txt b/tests/isodata/sled/sled12sp1/SLE-12-SP1-Desktop-DVD-x86_64-GM-DVD1.iso.txt -deleted file mode 100644 -index 09f89d1..0000000 ---- a/tests/isodata/sled/sled12sp1/SLE-12-SP1-Desktop-DVD-x86_64-GM-DVD1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: SLE-12-SP1-Desktop-DVD-x86_64343 --Volume set id: --Publisher id: SUSE LINUX GmbH --Data preparer id: KIWI - http://opensuse.github.com/kiwi --Application id: SLE-12-SP1-Desktop-DVD-x86_64-Build3432-Media1 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2246625 --El Torito VD version 1 found, boot catalog is in sector 20 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'SUSE LINUX GmbH' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 14F0 5360 -diff --git a/tests/isodata/sled/sled12sp2/SLE-12-SP2-Desktop-DVD-x86_64-GM-DVD1.iso.txt b/tests/isodata/sled/sled12sp2/SLE-12-SP2-Desktop-DVD-x86_64-GM-DVD1.iso.txt -deleted file mode 100644 -index 1c0e912..0000000 ---- a/tests/isodata/sled/sled12sp2/SLE-12-SP2-Desktop-DVD-x86_64-GM-DVD1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: SLE-12-SP2-Desktop-DVD-x86_64091 --Volume set id: --Publisher id: SUSE LINUX GmbH --Data preparer id: KIWI - http://opensuse.github.com/kiwi --Application id: SLE-12-SP2-Desktop-DVD-x86_64-Build0915-Media1 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2015612 --El Torito VD version 1 found, boot catalog is in sector 20 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'SUSE LINUX GmbH' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1536 5430 -diff --git a/tests/isodata/sled/sled12sp3/SLE-12-SP3-Desktop-DVD-x86_64-GM-DVD1.iso.txt b/tests/isodata/sled/sled12sp3/SLE-12-SP3-Desktop-DVD-x86_64-GM-DVD1.iso.txt -deleted file mode 100644 -index 70328ff..0000000 ---- a/tests/isodata/sled/sled12sp3/SLE-12-SP3-Desktop-DVD-x86_64-GM-DVD1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: SLE-12-SP3-Desktop-DVD-x86_64029 --Volume set id: --Publisher id: SUSE LINUX GmbH --Data preparer id: KIWI - http://opensuse.github.com/kiwi --Application id: SLE-12-SP3-Desktop-DVD-x86_64-Build0291-Media1 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2203444 --El Torito VD version 1 found, boot catalog is in sector 20 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'SUSE LINUX GmbH' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 153E 5438 -diff --git a/tests/isodata/sles/caasp1.0/SUSE-CaaS-Platform-1.0-DVD-x86_64-GM-DVD1.iso.txt b/tests/isodata/sles/caasp1.0/SUSE-CaaS-Platform-1.0-DVD-x86_64-GM-DVD1.iso.txt -deleted file mode 100644 -index b29d86f..0000000 ---- a/tests/isodata/sles/caasp1.0/SUSE-CaaS-Platform-1.0-DVD-x86_64-GM-DVD1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: SUSE-CaaS-Platform-1.0-DVD-x86_6 --Volume set id: --Publisher id: SUSE LINUX GmbH --Data preparer id: KIWI - http://opensuse.github.com/kiwi --Application id: SUSE-CaaS-Platform-1.0-DVD-x86_64-Build0425-Media1 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 649036 --El Torito VD version 1 found, boot catalog is in sector 20 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'SUSE LINUX GmbH' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1108 4360 -diff --git a/tests/isodata/sles/caasp2.0/SUSE-CaaS-Platform-2.0-DVD-x86_64-GM-DVD1.iso.txt b/tests/isodata/sles/caasp2.0/SUSE-CaaS-Platform-2.0-DVD-x86_64-GM-DVD1.iso.txt -deleted file mode 100644 -index e2cc6c1..0000000 ---- a/tests/isodata/sles/caasp2.0/SUSE-CaaS-Platform-2.0-DVD-x86_64-GM-DVD1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: SUSE-CaaS-Platform-2.0-DVD-x86_6 --Volume set id: --Publisher id: SUSE LINUX GmbH --Data preparer id: KIWI - http://opensuse.github.com/kiwi --Application id: SUSE-CaaS-Platform-2.0-DVD-x86_64-Build0115-Media1 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 920994 --El Torito VD version 1 found, boot catalog is in sector 20 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'SUSE LINUX GmbH' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 110E 4366 -diff --git a/tests/isodata/sles/caasp3.0/SUSE-CaaS-Platform-3.0-DVD-x86_64-GM-DVD1.iso.txt b/tests/isodata/sles/caasp3.0/SUSE-CaaS-Platform-3.0-DVD-x86_64-GM-DVD1.iso.txt -deleted file mode 100644 -index 24b5700..0000000 ---- a/tests/isodata/sles/caasp3.0/SUSE-CaaS-Platform-3.0-DVD-x86_64-GM-DVD1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: SUSE-CaaS-Platform-3.0-DVD-x86_6 --Volume set id: --Publisher id: SUSE LINUX GmbH --Data preparer id: KIWI - http://opensuse.github.com/kiwi --Application id: SUSE-CaaS-Platform-3.0-DVD-x86_64-Build0101-Media1 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 994044 --El Torito VD version 1 found, boot catalog is in sector 20 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'SUSE LINUX GmbH' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1116 4374 -diff --git a/tests/isodata/sles/sle15/SLE-15-Installer-DVD-aarch64-GM-DVD1.iso.txt b/tests/isodata/sles/sle15/SLE-15-Installer-DVD-aarch64-GM-DVD1.iso.txt -deleted file mode 100644 -index 55949a2..0000000 ---- a/tests/isodata/sles/sle15/SLE-15-Installer-DVD-aarch64-GM-DVD1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: SLE-15-Installer-DVD-aarch64.001 --Volume set id: --Publisher id: SUSE LINUX GmbH --Data preparer id: KIWI - http://opensuse.github.com/kiwi --Application id: SLE-15-Installer-DVD-aarch64-Build668.1-Media1 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 298600 --El Torito VD version 1 found, boot catalog is in sector 20 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'SUSE LINUX GmbH' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect DC8 -- Bootoff 8730 34608 -diff --git a/tests/isodata/sles/sle15/SLE-15-Installer-DVD-ppc64le-GM-DVD1.iso.txt b/tests/isodata/sles/sle15/SLE-15-Installer-DVD-ppc64le-GM-DVD1.iso.txt -deleted file mode 100644 -index cc3873f..0000000 ---- a/tests/isodata/sles/sle15/SLE-15-Installer-DVD-ppc64le-GM-DVD1.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: SLE-15-Installer-DVD-ppc64le.001 --Volume set id: --Publisher id: SUSE LINUX GmbH --Data preparer id: KIWI - http://opensuse.github.com/kiwi --Application id: SLE-15-Installer-DVD-ppc64le-Build668.1-Media1 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 303875 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/sles/sle15/SLE-15-Installer-DVD-s390x-GM-DVD1.iso.txt b/tests/isodata/sles/sle15/SLE-15-Installer-DVD-s390x-GM-DVD1.iso.txt -deleted file mode 100644 -index abd8938..0000000 ---- a/tests/isodata/sles/sle15/SLE-15-Installer-DVD-s390x-GM-DVD1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: SLE-15-Installer-DVD-s390x66.001 --Volume set id: --Publisher id: SUSE LINUX GmbH --Data preparer id: KIWI - http://opensuse.github.com/kiwi --Application id: SLE-15-Installer-DVD-s390x-Build668.1-Media1 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 389767 --El Torito VD version 1 found, boot catalog is in sector 20 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'SUSE LINUX GmbH' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 81 129 -diff --git a/tests/isodata/sles/sle15/SLE-15-Installer-DVD-x86_64-GM-DVD1.iso.txt b/tests/isodata/sles/sle15/SLE-15-Installer-DVD-x86_64-GM-DVD1.iso.txt -deleted file mode 100644 -index 85dda21..0000000 ---- a/tests/isodata/sles/sle15/SLE-15-Installer-DVD-x86_64-GM-DVD1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: SLE-15-Installer-DVD-x86_646.001 --Volume set id: --Publisher id: SUSE LINUX GmbH --Data preparer id: KIWI - http://opensuse.github.com/kiwi --Application id: SLE-15-Installer-DVD-x86_64-Build668.1-Media1 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 324780 --El Torito VD version 1 found, boot catalog is in sector 20 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'SUSE LINUX GmbH' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1066 4198 -diff --git a/tests/isodata/sles/sles11sp1/SLES-11-SP1-DVD-i586-GM-DVD1.iso.txt b/tests/isodata/sles/sles11sp1/SLES-11-SP1-DVD-i586-GM-DVD1.iso.txt -deleted file mode 100644 -index 2c87aa0..0000000 ---- a/tests/isodata/sles/sles11sp1/SLES-11-SP1-DVD-i586-GM-DVD1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: SLES-11-SP1-DVD-i586.0432.1.001 --Volume set id: --Publisher id: SUSE LINUX Products GmbH --Data preparer id: KIWI - http://kiwi.berlios.de --Application id: SLES-11-SP1-DVD-i586-Build0432-Media1 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1413388 --El Torito VD version 1 found, boot catalog is in sector 20 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'SUSE LINUX Products Gmb' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 190 400 -diff --git a/tests/isodata/sles/sles11sp1/SLES-11-SP1-DVD-x86_64-GM-DVD1.iso.txt b/tests/isodata/sles/sles11sp1/SLES-11-SP1-DVD-x86_64-GM-DVD1.iso.txt -deleted file mode 100644 -index 49fe88d..0000000 ---- a/tests/isodata/sles/sles11sp1/SLES-11-SP1-DVD-x86_64-GM-DVD1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: SLES-11-SP1-DVD-x86_64.0432..001 --Volume set id: --Publisher id: SUSE LINUX Products GmbH --Data preparer id: KIWI - http://kiwi.berlios.de --Application id: SLES-11-SP1-DVD-x86_64-Build0432-Media1 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1482604 --El Torito VD version 1 found, boot catalog is in sector 20 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'SUSE LINUX Products Gmb' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1C4 452 -diff --git a/tests/isodata/sles/sles11sp2/SLES-11-SP2-DVD-i586-GM-DVD1.iso.txt b/tests/isodata/sles/sles11sp2/SLES-11-SP2-DVD-i586-GM-DVD1.iso.txt -deleted file mode 100644 -index acb1fa7..0000000 ---- a/tests/isodata/sles/sles11sp2/SLES-11-SP2-DVD-i586-GM-DVD1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: SLES-11-SP2-DVD-i58607551 --Volume set id: --Publisher id: SUSE LINUX Products GmbH --Data preparer id: KIWI - http://kiwi.berlios.de --Application id: SLES-11-SP2-DVD-i586-Build0755-Media1 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1542080 --El Torito VD version 1 found, boot catalog is in sector 20 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'SUSE LINUX Products Gmb' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1AE 430 -diff --git a/tests/isodata/sles/sles11sp2/SLES-11-SP2-DVD-x86_64-GM-DVD1.iso.txt b/tests/isodata/sles/sles11sp2/SLES-11-SP2-DVD-x86_64-GM-DVD1.iso.txt -deleted file mode 100644 -index 24ae056..0000000 ---- a/tests/isodata/sles/sles11sp2/SLES-11-SP2-DVD-x86_64-GM-DVD1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: SLES-11-SP2-DVD-x86_6407551 --Volume set id: --Publisher id: SUSE LINUX Products GmbH --Data preparer id: KIWI - http://kiwi.berlios.de --Application id: SLES-11-SP2-DVD-x86_64-Build0755-Media1 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1623275 --El Torito VD version 1 found, boot catalog is in sector 20 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'SUSE LINUX Products Gmb' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1E7 487 -diff --git a/tests/isodata/sles/sles11sp3/SLES-11-SP3-DVD-i586-GM-DVD1.iso.txt b/tests/isodata/sles/sles11sp3/SLES-11-SP3-DVD-i586-GM-DVD1.iso.txt -deleted file mode 100644 -index 281a781..0000000 ---- a/tests/isodata/sles/sles11sp3/SLES-11-SP3-DVD-i586-GM-DVD1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: SLES-11-SP3-DVD-i58607031 --Volume set id: --Publisher id: SUSE LINUX Products GmbH --Data preparer id: KIWI - http://kiwi.berlios.de --Application id: SLES-11-SP3-DVD-i586-Build0703-Media1 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1572722 --El Torito VD version 1 found, boot catalog is in sector 20 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'SUSE LINUX Products Gmb' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1A9 425 -diff --git a/tests/isodata/sles/sles11sp3/SLES-11-SP3-DVD-x86_64-GM-DVD1.iso.txt b/tests/isodata/sles/sles11sp3/SLES-11-SP3-DVD-x86_64-GM-DVD1.iso.txt -deleted file mode 100644 -index 1c6cc35..0000000 ---- a/tests/isodata/sles/sles11sp3/SLES-11-SP3-DVD-x86_64-GM-DVD1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: SLES-11-SP3-DVD-x86_6407031 --Volume set id: --Publisher id: SUSE LINUX Products GmbH --Data preparer id: KIWI - http://kiwi.berlios.de --Application id: SLES-11-SP3-DVD-x86_64-Build0703-Media1 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1641547 --El Torito VD version 1 found, boot catalog is in sector 20 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'SUSE LINUX Products Gmb' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1EA 490 -diff --git a/tests/isodata/sles/sles11sp4/SLES-11-SP4-DVD-i586-GM-DVD1.iso.txt b/tests/isodata/sles/sles11sp4/SLES-11-SP4-DVD-i586-GM-DVD1.iso.txt -deleted file mode 100644 -index e4220a1..0000000 ---- a/tests/isodata/sles/sles11sp4/SLES-11-SP4-DVD-i586-GM-DVD1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: SLES-11-SP4-DVD-i58612211 --Volume set id: --Publisher id: SUSE LINUX GmbH --Data preparer id: KIWI - http://opensuse.github.com/kiwi --Application id: SLES-11-SP4-DVD-i586-Build1221-Media1 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1578152 --El Torito VD version 1 found, boot catalog is in sector 20 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'SUSE LINUX GmbH' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1AD 429 -diff --git a/tests/isodata/sles/sles11sp4/SLES-11-SP4-DVD-x86_64-GM-DVD1.iso.txt b/tests/isodata/sles/sles11sp4/SLES-11-SP4-DVD-x86_64-GM-DVD1.iso.txt -deleted file mode 100644 -index 0580ae4..0000000 ---- a/tests/isodata/sles/sles11sp4/SLES-11-SP4-DVD-x86_64-GM-DVD1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: SLES-11-SP4-DVD-x86_6412211 --Volume set id: --Publisher id: SUSE LINUX GmbH --Data preparer id: KIWI - http://opensuse.github.com/kiwi --Application id: SLES-11-SP4-DVD-x86_64-Build1221-Media1 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1652460 --El Torito VD version 1 found, boot catalog is in sector 20 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'SUSE LINUX GmbH' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 13A2 5026 -diff --git a/tests/isodata/sles/sles12/SLE-12-Server-DVD-x86_64-GM-DVD1.iso.txt b/tests/isodata/sles/sles12/SLE-12-Server-DVD-x86_64-GM-DVD1.iso.txt -deleted file mode 100644 -index b956bf9..0000000 ---- a/tests/isodata/sles/sles12/SLE-12-Server-DVD-x86_64-GM-DVD1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: SLE-12-Server-DVD-x86_6409511 --Volume set id: --Publisher id: SUSE LINUX GmbH --Data preparer id: KIWI - http://opensuse.github.com/kiwi --Application id: SLE-12-Server-DVD-x86_64-Build0951-Media1 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1433984 --El Torito VD version 1 found, boot catalog is in sector 20 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'SUSE LINUX GmbH' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 14BC 5308 -diff --git a/tests/isodata/sles/sles12sp1/SLE-12-SP1-Server-DVD-x86_64-GM-DVD1.iso.txt b/tests/isodata/sles/sles12sp1/SLE-12-SP1-Server-DVD-x86_64-GM-DVD1.iso.txt -deleted file mode 100644 -index b0d8723..0000000 ---- a/tests/isodata/sles/sles12sp1/SLE-12-SP1-Server-DVD-x86_64-GM-DVD1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: SLE-12-SP1-Server-DVD-x86_643247 --Volume set id: --Publisher id: SUSE LINUX GmbH --Data preparer id: KIWI - http://opensuse.github.com/kiwi --Application id: SLE-12-SP1-Server-DVD-x86_64-Build3247-Media1 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1547794 --El Torito VD version 1 found, boot catalog is in sector 20 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'SUSE LINUX GmbH' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 14C6 5318 -diff --git a/tests/isodata/sles/sles12sp2/SLE-12-SP2-Server-DVD-aarch64-GM-DVD1.iso.txt b/tests/isodata/sles/sles12sp2/SLE-12-SP2-Server-DVD-aarch64-GM-DVD1.iso.txt -deleted file mode 100644 -index cf72b96..0000000 ---- a/tests/isodata/sles/sles12sp2/SLE-12-SP2-Server-DVD-aarch64-GM-DVD1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: SLE-12-SP2-Server-DVD-aarch64219 --Volume set id: --Publisher id: SUSE LINUX GmbH --Data preparer id: KIWI - http://opensuse.github.com/kiwi --Application id: SLE-12-SP2-Server-DVD-aarch64-Build2192-Media1 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1388741 --El Torito VD version 1 found, boot catalog is in sector 20 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'SUSE LINUX GmbH' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect AD4 -- Bootoff D074 53364 -diff --git a/tests/isodata/sles/sles12sp2/SLE-12-SP2-Server-DVD-ppc64le-GM-DVD1.iso.txt b/tests/isodata/sles/sles12sp2/SLE-12-SP2-Server-DVD-ppc64le-GM-DVD1.iso.txt -deleted file mode 100644 -index 1113c53..0000000 ---- a/tests/isodata/sles/sles12sp2/SLE-12-SP2-Server-DVD-ppc64le-GM-DVD1.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: SLE-12-SP2-Server-DVD-ppc64le219 --Volume set id: --Publisher id: SUSE LINUX GmbH --Data preparer id: KIWI - http://opensuse.github.com/kiwi --Application id: SLE-12-SP2-Server-DVD-ppc64le-Build2192-Media1 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1570275 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/sles/sles12sp2/SLE-12-SP2-Server-DVD-s390x-GM-DVD1.iso.txt b/tests/isodata/sles/sles12sp2/SLE-12-SP2-Server-DVD-s390x-GM-DVD1.iso.txt -deleted file mode 100644 -index 58b20d9..0000000 ---- a/tests/isodata/sles/sles12sp2/SLE-12-SP2-Server-DVD-s390x-GM-DVD1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: SLE-12-SP2-Server-DVD-s390x21921 --Volume set id: --Publisher id: SUSE LINUX GmbH --Data preparer id: KIWI - http://opensuse.github.com/kiwi --Application id: SLE-12-SP2-Server-DVD-s390x-Build2192-Media1 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1633038 --El Torito VD version 1 found, boot catalog is in sector 20 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'SUSE LINUX GmbH' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 260 608 -diff --git a/tests/isodata/sles/sles12sp2/SLE-12-SP2-Server-DVD-x86_64-GM-DVD1.iso.txt b/tests/isodata/sles/sles12sp2/SLE-12-SP2-Server-DVD-x86_64-GM-DVD1.iso.txt -deleted file mode 100644 -index 0d19b25..0000000 ---- a/tests/isodata/sles/sles12sp2/SLE-12-SP2-Server-DVD-x86_64-GM-DVD1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: SLE-12-SP2-Server-DVD-x86_642192 --Volume set id: --Publisher id: SUSE LINUX GmbH --Data preparer id: KIWI - http://opensuse.github.com/kiwi --Application id: SLE-12-SP2-Server-DVD-x86_64-Build2192-Media1 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1632145 --El Torito VD version 1 found, boot catalog is in sector 20 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'SUSE LINUX GmbH' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 150C 5388 -diff --git a/tests/isodata/sles/sles12sp3/SLE-12-SP3-Server-DVD-aarch64-GM-DVD1.iso.txt b/tests/isodata/sles/sles12sp3/SLE-12-SP3-Server-DVD-aarch64-GM-DVD1.iso.txt -deleted file mode 100644 -index 1fdfd0a..0000000 ---- a/tests/isodata/sles/sles12sp3/SLE-12-SP3-Server-DVD-aarch64-GM-DVD1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: SLE-12-SP3-Server-DVD-aarch64047 --Volume set id: --Publisher id: SUSE LINUX GmbH --Data preparer id: KIWI - http://opensuse.github.com/kiwi --Application id: SLE-12-SP3-Server-DVD-aarch64-Build0473-Media1 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1621865 --El Torito VD version 1 found, boot catalog is in sector 20 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'SUSE LINUX GmbH' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect BD0 -- Bootoff E326 58150 -diff --git a/tests/isodata/sles/sles12sp3/SLE-12-SP3-Server-DVD-ppc64le-GM-DVD1.iso.txt b/tests/isodata/sles/sles12sp3/SLE-12-SP3-Server-DVD-ppc64le-GM-DVD1.iso.txt -deleted file mode 100644 -index 2f0b562..0000000 ---- a/tests/isodata/sles/sles12sp3/SLE-12-SP3-Server-DVD-ppc64le-GM-DVD1.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: SLE-12-SP3-Server-DVD-ppc64le047 --Volume set id: --Publisher id: SUSE LINUX GmbH --Data preparer id: KIWI - http://opensuse.github.com/kiwi --Application id: SLE-12-SP3-Server-DVD-ppc64le-Build0473-Media1 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1797526 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/sles/sles12sp3/SLE-12-SP3-Server-DVD-s390x-GM-DVD1.iso.txt b/tests/isodata/sles/sles12sp3/SLE-12-SP3-Server-DVD-s390x-GM-DVD1.iso.txt -deleted file mode 100644 -index ae314c6..0000000 ---- a/tests/isodata/sles/sles12sp3/SLE-12-SP3-Server-DVD-s390x-GM-DVD1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: SLE-12-SP3-Server-DVD-s390x04731 --Volume set id: --Publisher id: SUSE LINUX GmbH --Data preparer id: KIWI - http://opensuse.github.com/kiwi --Application id: SLE-12-SP3-Server-DVD-s390x-Build0473-Media1 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1854223 --El Torito VD version 1 found, boot catalog is in sector 20 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'SUSE LINUX GmbH' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 269 617 -diff --git a/tests/isodata/sles/sles12sp3/SLE-12-SP3-Server-DVD-x86_64-GM-DVD1.iso.txt b/tests/isodata/sles/sles12sp3/SLE-12-SP3-Server-DVD-x86_64-GM-DVD1.iso.txt -deleted file mode 100644 -index 081bd73..0000000 ---- a/tests/isodata/sles/sles12sp3/SLE-12-SP3-Server-DVD-x86_64-GM-DVD1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: SLE-12-SP3-Server-DVD-x86_640473 --Volume set id: --Publisher id: SUSE LINUX GmbH --Data preparer id: KIWI - http://opensuse.github.com/kiwi --Application id: SLE-12-SP3-Server-DVD-x86_64-Build0473-Media1 --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1873035 --El Torito VD version 1 found, boot catalog is in sector 20 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'SUSE LINUX GmbH' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 151A 5402 -diff --git a/tests/isodata/ubuntu/ubuntu10.04/ubuntu-10.04.4-desktop-i386.iso.txt b/tests/isodata/ubuntu/ubuntu10.04/ubuntu-10.04.4-desktop-i386.iso.txt -deleted file mode 100644 -index cc79fab..0000000 ---- a/tests/isodata/ubuntu/ubuntu10.04/ubuntu-10.04.4-desktop-i386.iso.txt -+++ /dev/null -@@ -1,30 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 10.04.4 LTS i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 --E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 355542 --El Torito VD version 1 found, boot catalog is in sector 151 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 8F 143 -diff --git a/tests/isodata/ubuntu/ubuntu11.04/ubuntu-11.04-desktop-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu11.04/ubuntu-11.04-desktop-amd64.iso.txt -deleted file mode 100644 -index f4c239c..0000000 ---- a/tests/isodata/ubuntu/ubuntu11.04/ubuntu-11.04-desktop-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 11.04 amd64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 357477 --El Torito VD version 1 found, boot catalog is in sector 176 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff A4 164 -diff --git a/tests/isodata/ubuntu/ubuntu11.10/ubuntu-11.10-desktop-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu11.10/ubuntu-11.10-desktop-amd64.iso.txt -deleted file mode 100644 -index a956ee9..0000000 ---- a/tests/isodata/ubuntu/ubuntu11.10/ubuntu-11.10-desktop-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu 11.10 amd64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.0.8 2011.04.14.073001, LIBISOBURN-1.0.8, LIBISOFS-1.0.8, LIBBURN-1.0.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 357014 --El Torito VD version 1 found, boot catalog is in sector 344 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 5687A 354426 -diff --git a/tests/isodata/ubuntu/ubuntu11.10/ubuntu-11.10-desktop-i386.iso.txt b/tests/isodata/ubuntu/ubuntu11.10/ubuntu-11.10-desktop-i386.iso.txt -deleted file mode 100644 -index fdad323..0000000 ---- a/tests/isodata/ubuntu/ubuntu11.10/ubuntu-11.10-desktop-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu 11.10 i386 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.0.8 2011.04.14.073001, LIBISOBURN-1.0.8, LIBISOFS-1.0.8, LIBBURN-1.0.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 355990 --El Torito VD version 1 found, boot catalog is in sector 274 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 561D1 352721 -diff --git a/tests/isodata/ubuntu/ubuntu11.10/ubuntu-11.10-server-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu11.10/ubuntu-11.10-server-amd64.iso.txt -deleted file mode 100644 -index a445d99..0000000 ---- a/tests/isodata/ubuntu/ubuntu11.10/ubuntu-11.10-server-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu-Server 11.10 amd64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.0.8 2011.04.14.073001, LIBISOBURN-1.0.8, LIBISOFS-1.0.8, LIBBURN-1.0.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 349334 --El Torito VD version 1 found, boot catalog is in sector 3706 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 449A 17562 -diff --git a/tests/isodata/ubuntu/ubuntu11.10/ubuntu-11.10-server-i386.iso.txt b/tests/isodata/ubuntu/ubuntu11.10/ubuntu-11.10-server-i386.iso.txt -deleted file mode 100644 -index 849bc06..0000000 ---- a/tests/isodata/ubuntu/ubuntu11.10/ubuntu-11.10-server-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu-Server 11.10 i386 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.0.8 2011.04.14.073001, LIBISOBURN-1.0.8, LIBISOFS-1.0.8, LIBBURN-1.0.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 347798 --El Torito VD version 1 found, boot catalog is in sector 3670 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 31E2C 204332 -diff --git a/tests/isodata/ubuntu/ubuntu12.04/ubuntu-12.04-alternate-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu12.04/ubuntu-12.04-alternate-amd64.iso.txt -deleted file mode 100644 -index 874f057..0000000 ---- a/tests/isodata/ubuntu/ubuntu12.04/ubuntu-12.04-alternate-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu 12.04 LTS amd64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.0.8 2011.04.14.073001, LIBISOBURN-1.0.8, LIBISOFS-1.0.8, LIBBURN-1.0.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 355990 --El Torito VD version 1 found, boot catalog is in sector 4534 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 534B5 341173 -diff --git a/tests/isodata/ubuntu/ubuntu12.04/ubuntu-12.04-alternate-i386.iso.txt b/tests/isodata/ubuntu/ubuntu12.04/ubuntu-12.04-alternate-i386.iso.txt -deleted file mode 100644 -index 473dab6..0000000 ---- a/tests/isodata/ubuntu/ubuntu12.04/ubuntu-12.04-alternate-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu 12.04 LTS i386 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.0.8 2011.04.14.073001, LIBISOBURN-1.0.8, LIBISOFS-1.0.8, LIBBURN-1.0.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 351894 --El Torito VD version 1 found, boot catalog is in sector 4494 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 52B8D 338829 -diff --git a/tests/isodata/ubuntu/ubuntu12.04/ubuntu-12.04-desktop-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu12.04/ubuntu-12.04-desktop-amd64.iso.txt -deleted file mode 100644 -index ec73fbb..0000000 ---- a/tests/isodata/ubuntu/ubuntu12.04/ubuntu-12.04-desktop-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu 12.04 LTS amd64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.0.8 2011.04.14.073001, LIBISOBURN-1.0.8, LIBISOFS-1.0.8, LIBBURN-1.0.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 357526 --El Torito VD version 1 found, boot catalog is in sector 348 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 56C7A 355450 -diff --git a/tests/isodata/ubuntu/ubuntu12.04/ubuntu-12.04-desktop-i386.iso.txt b/tests/isodata/ubuntu/ubuntu12.04/ubuntu-12.04-desktop-i386.iso.txt -deleted file mode 100644 -index 59c0e2f..0000000 ---- a/tests/isodata/ubuntu/ubuntu12.04/ubuntu-12.04-desktop-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu 12.04 LTS i386 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.0.8 2011.04.14.073001, LIBISOBURN-1.0.8, LIBISOFS-1.0.8, LIBBURN-1.0.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 359062 --El Torito VD version 1 found, boot catalog is in sector 272 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 573B0 357296 -diff --git a/tests/isodata/ubuntu/ubuntu12.04/ubuntu-12.04-server-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu12.04/ubuntu-12.04-server-amd64.iso.txt -deleted file mode 100644 -index dae81cb..0000000 ---- a/tests/isodata/ubuntu/ubuntu12.04/ubuntu-12.04-server-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu-Server 12.04 LTS amd64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.0.8 2011.04.14.073001, LIBISOBURN-1.0.8, LIBISOFS-1.0.8, LIBBURN-1.0.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 350358 --El Torito VD version 1 found, boot catalog is in sector 3728 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 518B1 334001 -diff --git a/tests/isodata/ubuntu/ubuntu12.04/ubuntu-12.04-server-i386.iso.txt b/tests/isodata/ubuntu/ubuntu12.04/ubuntu-12.04-server-i386.iso.txt -deleted file mode 100644 -index 28b2304..0000000 ---- a/tests/isodata/ubuntu/ubuntu12.04/ubuntu-12.04-server-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu-Server 12.04 LTS i386 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.0.8 2011.04.14.073001, LIBISOBURN-1.0.8, LIBISOFS-1.0.8, LIBBURN-1.0.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 344726 --El Torito VD version 1 found, boot catalog is in sector 3676 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 50A7B 330363 -diff --git a/tests/isodata/ubuntu/ubuntu12.10/ubuntu-12.10-desktop-amd64+mac.iso.txt b/tests/isodata/ubuntu/ubuntu12.10/ubuntu-12.10-desktop-amd64+mac.iso.txt -deleted file mode 100644 -index b2f3661..0000000 ---- a/tests/isodata/ubuntu/ubuntu12.10/ubuntu-12.10-desktop-amd64+mac.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu 12.10 amd64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.2.4 2012.07.20.130001, LIBISOBURN-1.2.4, LIBISOFS-1.2.4, LIBBURN-1.2.4 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 387072 --El Torito VD version 1 found, boot catalog is in sector 354 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 5DBF4 383988 -diff --git a/tests/isodata/ubuntu/ubuntu12.10/ubuntu-12.10-desktop-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu12.10/ubuntu-12.10-desktop-amd64.iso.txt -deleted file mode 100644 -index d0584f7..0000000 ---- a/tests/isodata/ubuntu/ubuntu12.10/ubuntu-12.10-desktop-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu 12.10 amd64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.2.4 2012.07.20.130001, LIBISOBURN-1.2.4, LIBISOFS-1.2.4, LIBBURN-1.2.4 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 390656 --El Torito VD version 1 found, boot catalog is in sector 182 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 5E51C 386332 -diff --git a/tests/isodata/ubuntu/ubuntu12.10/ubuntu-12.10-desktop-i386.iso.txt b/tests/isodata/ubuntu/ubuntu12.10/ubuntu-12.10-desktop-i386.iso.txt -deleted file mode 100644 -index b7012aa..0000000 ---- a/tests/isodata/ubuntu/ubuntu12.10/ubuntu-12.10-desktop-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu 12.10 i386 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.0.8 2011.04.14.073001, LIBISOBURN-1.0.8, LIBISOFS-1.0.8, LIBBURN-1.0.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 385686 --El Torito VD version 1 found, boot catalog is in sector 268 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 5D7DA 382938 -diff --git a/tests/isodata/ubuntu/ubuntu12.10/ubuntu-12.10-server-amd64+mac.iso.txt b/tests/isodata/ubuntu/ubuntu12.10/ubuntu-12.10-server-amd64+mac.iso.txt -deleted file mode 100644 -index 870b68c..0000000 ---- a/tests/isodata/ubuntu/ubuntu12.10/ubuntu-12.10-server-amd64+mac.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu-Server 12.10 amd64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.2.4 2012.07.20.130001, LIBISOBURN-1.2.4, LIBISOFS-1.2.4, LIBBURN-1.2.4 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 353280 --El Torito VD version 1 found, boot catalog is in sector 3760 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 5298E 338318 -diff --git a/tests/isodata/ubuntu/ubuntu12.10/ubuntu-12.10-server-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu12.10/ubuntu-12.10-server-amd64.iso.txt -deleted file mode 100644 -index eb5d8e3..0000000 ---- a/tests/isodata/ubuntu/ubuntu12.10/ubuntu-12.10-server-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu-Server 12.10 amd64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.2.4 2012.07.20.130001, LIBISOBURN-1.2.4, LIBISOFS-1.2.4, LIBBURN-1.2.4 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 352768 --El Torito VD version 1 found, boot catalog is in sector 1885 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 52231 336433 -diff --git a/tests/isodata/ubuntu/ubuntu12.10/ubuntu-12.10-server-i386.iso.txt b/tests/isodata/ubuntu/ubuntu12.10/ubuntu-12.10-server-i386.iso.txt -deleted file mode 100644 -index ff923aa..0000000 ---- a/tests/isodata/ubuntu/ubuntu12.10/ubuntu-12.10-server-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu-Server 12.10 i386 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.0.8 2011.04.14.073001, LIBISOBURN-1.0.8, LIBISOFS-1.0.8, LIBBURN-1.0.6 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 344214 --El Torito VD version 1 found, boot catalog is in sector 3694 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 5106D 331885 -diff --git a/tests/isodata/ubuntu/ubuntu13.04/ubuntu-13.04-beta2-desktop-amd64+mac.iso.txt b/tests/isodata/ubuntu/ubuntu13.04/ubuntu-13.04-beta2-desktop-amd64+mac.iso.txt -deleted file mode 100644 -index b873729..0000000 ---- a/tests/isodata/ubuntu/ubuntu13.04/ubuntu-13.04-beta2-desktop-amd64+mac.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu 13.04 amd64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.2.4 2012.07.20.130001, LIBISOBURN-1.2.4, LIBISOFS-1.2.4, LIBBURN-1.2.4 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 401920 --El Torito VD version 1 found, boot catalog is in sector 330 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 18AF 6319 -diff --git a/tests/isodata/ubuntu/ubuntu13.04/ubuntu-13.04-beta2-desktop-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu13.04/ubuntu-13.04-beta2-desktop-amd64.iso.txt -deleted file mode 100644 -index 8c6fdf7..0000000 ---- a/tests/isodata/ubuntu/ubuntu13.04/ubuntu-13.04-beta2-desktop-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu 13.04 amd64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.2.4 2012.07.20.130001, LIBISOBURN-1.2.4, LIBISOFS-1.2.4, LIBBURN-1.2.4 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 402944 --El Torito VD version 1 found, boot catalog is in sector 170 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1815 6165 -diff --git a/tests/isodata/ubuntu/ubuntu13.04/ubuntu-13.04-beta2-desktop-i386.iso.txt b/tests/isodata/ubuntu/ubuntu13.04/ubuntu-13.04-beta2-desktop-i386.iso.txt -deleted file mode 100644 -index 6e212f3..0000000 ---- a/tests/isodata/ubuntu/ubuntu13.04/ubuntu-13.04-beta2-desktop-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu 13.04 i386 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.1.8 2011.11.20.173001, LIBISOBURN-1.1.8, LIBISOFS-1.1.6, LIBBURN-1.1.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 407552 --El Torito VD version 1 found, boot catalog is in sector 240 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff D90 3472 -diff --git a/tests/isodata/ubuntu/ubuntu13.04/ubuntu-13.04-beta2-server-amd64+mac.iso.txt b/tests/isodata/ubuntu/ubuntu13.04/ubuntu-13.04-beta2-server-amd64+mac.iso.txt -deleted file mode 100644 -index 21ac053..0000000 ---- a/tests/isodata/ubuntu/ubuntu13.04/ubuntu-13.04-beta2-server-amd64+mac.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu-Server 13.04 amd64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.2.4 2012.07.20.130001, LIBISOBURN-1.2.4, LIBISOFS-1.2.4, LIBBURN-1.2.4 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 362496 --El Torito VD version 1 found, boot catalog is in sector 3850 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 3CF6D 249709 -diff --git a/tests/isodata/ubuntu/ubuntu13.04/ubuntu-13.04-beta2-server-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu13.04/ubuntu-13.04-beta2-server-amd64.iso.txt -deleted file mode 100644 -index 46711c0..0000000 ---- a/tests/isodata/ubuntu/ubuntu13.04/ubuntu-13.04-beta2-server-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu-Server 13.04 amd64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.2.4 2012.07.20.130001, LIBISOBURN-1.2.4, LIBISOFS-1.2.4, LIBBURN-1.2.4 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 361472 --El Torito VD version 1 found, boot catalog is in sector 1930 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1E8A2 125090 -diff --git a/tests/isodata/ubuntu/ubuntu13.04/ubuntu-13.04-beta2-server-i386.iso.txt b/tests/isodata/ubuntu/ubuntu13.04/ubuntu-13.04-beta2-server-i386.iso.txt -deleted file mode 100644 -index 9795d36..0000000 ---- a/tests/isodata/ubuntu/ubuntu13.04/ubuntu-13.04-beta2-server-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu-Server 13.04 i386 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.1.8 2011.11.20.173001, LIBISOBURN-1.1.8, LIBISOFS-1.1.6, LIBBURN-1.1.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 355328 --El Torito VD version 1 found, boot catalog is in sector 3774 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 45BC8 285640 -diff --git a/tests/isodata/ubuntu/ubuntu13.10/ubuntu-13.10-desktop-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu13.10/ubuntu-13.10-desktop-amd64.iso.txt -deleted file mode 100644 -index 85f3f6f..0000000 ---- a/tests/isodata/ubuntu/ubuntu13.10/ubuntu-13.10-desktop-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu 13.10 amd64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.2.4 2012.07.20.130001, LIBISOBURN-1.2.4, LIBISOFS-1.2.4, LIBBURN-1.2.4 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 452096 --El Torito VD version 1 found, boot catalog is in sector 160 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 6CAC0 445120 -diff --git a/tests/isodata/ubuntu/ubuntu13.10/ubuntu-13.10-desktop-i386.iso.txt b/tests/isodata/ubuntu/ubuntu13.10/ubuntu-13.10-desktop-i386.iso.txt -deleted file mode 100644 -index 89c0d6f..0000000 ---- a/tests/isodata/ubuntu/ubuntu13.10/ubuntu-13.10-desktop-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu 13.10 i386 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.1.8 2011.11.20.173001, LIBISOBURN-1.1.8, LIBISOFS-1.1.6, LIBBURN-1.1.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 458240 --El Torito VD version 1 found, boot catalog is in sector 240 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 6F1B0 455088 -diff --git a/tests/isodata/ubuntu/ubuntu13.10/ubuntu-13.10-server-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu13.10/ubuntu-13.10-server-amd64.iso.txt -deleted file mode 100644 -index 826b4cc..0000000 ---- a/tests/isodata/ubuntu/ubuntu13.10/ubuntu-13.10-server-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu-Server 13.10 amd64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.2.4 2012.07.20.130001, LIBISOBURN-1.2.4, LIBISOFS-1.2.4, LIBBURN-1.2.4 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 344064 --El Torito VD version 1 found, boot catalog is in sector 2009 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 433AD 275373 -diff --git a/tests/isodata/ubuntu/ubuntu13.10/ubuntu-13.10-server-i386.iso.txt b/tests/isodata/ubuntu/ubuntu13.10/ubuntu-13.10-server-i386.iso.txt -deleted file mode 100644 -index 8bd59af..0000000 ---- a/tests/isodata/ubuntu/ubuntu13.10/ubuntu-13.10-server-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu-Server 13.10 i386 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.1.8 2011.11.20.173001, LIBISOBURN-1.1.8, LIBISOFS-1.1.6, LIBBURN-1.1.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 336896 --El Torito VD version 1 found, boot catalog is in sector 3934 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 4254B 271691 -diff --git a/tests/isodata/ubuntu/ubuntu14.04/ubuntu-14.04.1-desktop-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu14.04/ubuntu-14.04.1-desktop-amd64.iso.txt -deleted file mode 100644 -index 3e410f7..0000000 ---- a/tests/isodata/ubuntu/ubuntu14.04/ubuntu-14.04.1-desktop-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu 14.04.1 LTS amd64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.2.4 2012.07.20.130001, LIBISOBURN-1.2.4, LIBISOFS-1.2.4, LIBBURN-1.2.4 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 502272 --El Torito VD version 1 found, boot catalog is in sector 166 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 762D4 484052 -diff --git a/tests/isodata/ubuntu/ubuntu14.04/ubuntu-14.04.1-desktop-i386.iso.txt b/tests/isodata/ubuntu/ubuntu14.04/ubuntu-14.04.1-desktop-i386.iso.txt -deleted file mode 100644 -index 1e2d1cb..0000000 ---- a/tests/isodata/ubuntu/ubuntu14.04/ubuntu-14.04.1-desktop-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu 14.04.1 LTS i386 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.1.8 2011.11.20.173001, LIBISOBURN-1.1.8, LIBISOFS-1.1.6, LIBBURN-1.1.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 505344 --El Torito VD version 1 found, boot catalog is in sector 240 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 7AE7E 503422 -diff --git a/tests/isodata/ubuntu/ubuntu14.04/ubuntu-14.04.1-server-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu14.04/ubuntu-14.04.1-server-amd64.iso.txt -deleted file mode 100644 -index 7965be3..0000000 ---- a/tests/isodata/ubuntu/ubuntu14.04/ubuntu-14.04.1-server-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu-Server 14.04.1 LTS amd64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.2.4 2012.07.20.130001, LIBISOBURN-1.2.4, LIBISOFS-1.2.4, LIBBURN-1.2.4 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 292864 --El Torito VD version 1 found, boot catalog is in sector 1926 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff A34B 41803 -diff --git a/tests/isodata/ubuntu/ubuntu14.04/ubuntu-14.04.1-server-i386.iso.txt b/tests/isodata/ubuntu/ubuntu14.04/ubuntu-14.04.1-server-i386.iso.txt -deleted file mode 100644 -index bb918de..0000000 ---- a/tests/isodata/ubuntu/ubuntu14.04/ubuntu-14.04.1-server-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu-Server 14.04.1 LTS i386 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.1.8 2011.11.20.173001, LIBISOBURN-1.1.8, LIBISOFS-1.1.6, LIBBURN-1.1.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 282624 --El Torito VD version 1 found, boot catalog is in sector 3754 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff E7F1 59377 -diff --git a/tests/isodata/ubuntu/ubuntu14.10/ubuntu-14.10-desktop-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu14.10/ubuntu-14.10-desktop-amd64.iso.txt -deleted file mode 100644 -index 83f3c00..0000000 ---- a/tests/isodata/ubuntu/ubuntu14.10/ubuntu-14.10-desktop-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu 14.10 amd64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.2.4 2012.07.20.130001, LIBISOBURN-1.2.4, LIBISOFS-1.2.4, LIBBURN-1.2.4 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 567840 --El Torito VD version 1 found, boot catalog is in sector 164 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 88D3B 560443 -diff --git a/tests/isodata/ubuntu/ubuntu14.10/ubuntu-14.10-desktop-i386.iso.txt b/tests/isodata/ubuntu/ubuntu14.10/ubuntu-14.10-desktop-i386.iso.txt -deleted file mode 100644 -index b589065..0000000 ---- a/tests/isodata/ubuntu/ubuntu14.10/ubuntu-14.10-desktop-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu 14.10 i386 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.1.8 2011.11.20.173001, LIBISOBURN-1.1.8, LIBISOFS-1.1.6, LIBBURN-1.1.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 579360 --El Torito VD version 1 found, boot catalog is in sector 232 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 8CA0A 576010 -diff --git a/tests/isodata/ubuntu/ubuntu14.10/ubuntu-14.10-server-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu14.10/ubuntu-14.10-server-amd64.iso.txt -deleted file mode 100644 -index 79d937a..0000000 ---- a/tests/isodata/ubuntu/ubuntu14.10/ubuntu-14.10-server-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu-Server 14.10 amd64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.2.4 2012.07.20.130001, LIBISOBURN-1.2.4, LIBISOFS-1.2.4, LIBBURN-1.2.4 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 297984 --El Torito VD version 1 found, boot catalog is in sector 1952 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 5F78 24440 -diff --git a/tests/isodata/ubuntu/ubuntu14.10/ubuntu-14.10-server-i386.iso.txt b/tests/isodata/ubuntu/ubuntu14.10/ubuntu-14.10-server-i386.iso.txt -deleted file mode 100644 -index 0a1180c..0000000 ---- a/tests/isodata/ubuntu/ubuntu14.10/ubuntu-14.10-server-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu-Server 14.10 i386 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.1.8 2011.11.20.173001, LIBISOBURN-1.1.8, LIBISOFS-1.1.6, LIBBURN-1.1.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 294912 --El Torito VD version 1 found, boot catalog is in sector 3806 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 12770 75632 -diff --git a/tests/isodata/ubuntu/ubuntu15.04/ubuntu-15.04-desktop-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu15.04/ubuntu-15.04-desktop-amd64.iso.txt -deleted file mode 100644 -index f34beb5..0000000 ---- a/tests/isodata/ubuntu/ubuntu15.04/ubuntu-15.04-desktop-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu 15.04 amd64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.2.4 2012.07.20.130001, LIBISOBURN-1.2.4, LIBISOFS-1.2.4, LIBBURN-1.2.4 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 561936 --El Torito VD version 1 found, boot catalog is in sector 170 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 87666 554598 -diff --git a/tests/isodata/ubuntu/ubuntu15.04/ubuntu-15.04-desktop-i386.iso.txt b/tests/isodata/ubuntu/ubuntu15.04/ubuntu-15.04-desktop-i386.iso.txt -deleted file mode 100644 -index 39d8234..0000000 ---- a/tests/isodata/ubuntu/ubuntu15.04/ubuntu-15.04-desktop-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu 15.04 i386 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.1.8 2011.11.20.173001, LIBISOBURN-1.1.8, LIBISOFS-1.1.6, LIBBURN-1.1.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 580496 --El Torito VD version 1 found, boot catalog is in sector 244 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 8CBAE 576430 -diff --git a/tests/isodata/ubuntu/ubuntu15.04/ubuntu-15.04-server-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu15.04/ubuntu-15.04-server-amd64.iso.txt -deleted file mode 100644 -index d132b31..0000000 ---- a/tests/isodata/ubuntu/ubuntu15.04/ubuntu-15.04-server-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu-Server 15.04 amd64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.2.4 2012.07.20.130001, LIBISOBURN-1.2.4, LIBISOFS-1.2.4, LIBBURN-1.2.4 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 315392 --El Torito VD version 1 found, boot catalog is in sector 1967 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1E14B 123211 -diff --git a/tests/isodata/ubuntu/ubuntu15.04/ubuntu-15.04-server-i386.iso.txt b/tests/isodata/ubuntu/ubuntu15.04/ubuntu-15.04-server-i386.iso.txt -deleted file mode 100644 -index af8ad04..0000000 ---- a/tests/isodata/ubuntu/ubuntu15.04/ubuntu-15.04-server-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu-Server 15.04 i386 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.1.8 2011.11.20.173001, LIBISOBURN-1.1.8, LIBISOFS-1.1.6, LIBBURN-1.1.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 312320 --El Torito VD version 1 found, boot catalog is in sector 3836 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1DD77 122231 -diff --git a/tests/isodata/ubuntu/ubuntu15.10/ubuntu-15.10-desktop-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu15.10/ubuntu-15.10-desktop-amd64.iso.txt -deleted file mode 100644 -index ce3aaf7..0000000 ---- a/tests/isodata/ubuntu/ubuntu15.10/ubuntu-15.10-desktop-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu 15.10 amd64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.2.4 2012.07.20.130001, LIBISOBURN-1.2.4, LIBISOFS-1.2.4, LIBBURN-1.2.4 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 575384 --El Torito VD version 1 found, boot catalog is in sector 170 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 87011 552977 -diff --git a/tests/isodata/ubuntu/ubuntu15.10/ubuntu-15.10-desktop-i386.iso.txt b/tests/isodata/ubuntu/ubuntu15.10/ubuntu-15.10-desktop-i386.iso.txt -deleted file mode 100644 -index 356a18b..0000000 ---- a/tests/isodata/ubuntu/ubuntu15.10/ubuntu-15.10-desktop-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu 15.10 i386 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.1.8 2011.11.20.173001, LIBISOBURN-1.1.8, LIBISOFS-1.1.6, LIBBURN-1.1.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 599104 --El Torito VD version 1 found, boot catalog is in sector 244 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 917A8 595880 -diff --git a/tests/isodata/ubuntu/ubuntu15.10/ubuntu-15.10-server-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu15.10/ubuntu-15.10-server-amd64.iso.txt -deleted file mode 100644 -index 725327d..0000000 ---- a/tests/isodata/ubuntu/ubuntu15.10/ubuntu-15.10-server-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu-Server 15.10 amd64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.2.4 2012.07.20.130001, LIBISOBURN-1.2.4, LIBISOFS-1.2.4, LIBBURN-1.2.4 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 323584 --El Torito VD version 1 found, boot catalog is in sector 1857 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff BD54 48468 -diff --git a/tests/isodata/ubuntu/ubuntu15.10/ubuntu-15.10-server-i386.iso.txt b/tests/isodata/ubuntu/ubuntu15.10/ubuntu-15.10-server-i386.iso.txt -deleted file mode 100644 -index de18892..0000000 ---- a/tests/isodata/ubuntu/ubuntu15.10/ubuntu-15.10-server-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu-Server 15.10 i386 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.1.8 2011.11.20.173001, LIBISOBURN-1.1.8, LIBISOFS-1.1.6, LIBBURN-1.1.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 321536 --El Torito VD version 1 found, boot catalog is in sector 3616 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 110D0 69840 -diff --git a/tests/isodata/ubuntu/ubuntu16.04/ubuntu-16.04-desktop-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu16.04/ubuntu-16.04-desktop-amd64.iso.txt -deleted file mode 100644 -index aa2b24a..0000000 ---- a/tests/isodata/ubuntu/ubuntu16.04/ubuntu-16.04-desktop-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu 16.04 LTS amd64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.2.4 2012.07.20.130001, LIBISOBURN-1.2.4, LIBISOFS-1.2.4, LIBBURN-1.2.4 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 725528 --El Torito VD version 1 found, boot catalog is in sector 166 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff AF6CA 718538 -diff --git a/tests/isodata/ubuntu/ubuntu16.04/ubuntu-16.04-desktop-i386.iso.txt b/tests/isodata/ubuntu/ubuntu16.04/ubuntu-16.04-desktop-i386.iso.txt -deleted file mode 100644 -index cd34bb8..0000000 ---- a/tests/isodata/ubuntu/ubuntu16.04/ubuntu-16.04-desktop-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu 16.04 LTS i386 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.1.8 2011.11.20.173001, LIBISOBURN-1.1.8, LIBISOFS-1.1.6, LIBBURN-1.1.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 734400 --El Torito VD version 1 found, boot catalog is in sector 252 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff B26BE 730814 -diff --git a/tests/isodata/ubuntu/ubuntu16.04/ubuntu-16.04-server-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu16.04/ubuntu-16.04-server-amd64.iso.txt -deleted file mode 100644 -index 102d6f1..0000000 ---- a/tests/isodata/ubuntu/ubuntu16.04/ubuntu-16.04-server-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu-Server 16.04 LTS amd64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.2.4 2012.07.20.130001, LIBISOBURN-1.2.4, LIBISOFS-1.2.4, LIBBURN-1.2.4 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 335360 --El Torito VD version 1 found, boot catalog is in sector 1938 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 343C0 213952 -diff --git a/tests/isodata/ubuntu/ubuntu16.04/ubuntu-16.04-server-i386.iso.txt b/tests/isodata/ubuntu/ubuntu16.04/ubuntu-16.04-server-i386.iso.txt -deleted file mode 100644 -index 2fdef8e..0000000 ---- a/tests/isodata/ubuntu/ubuntu16.04/ubuntu-16.04-server-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu-Server 16.04 LTS i386 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.1.8 2011.11.20.173001, LIBISOBURN-1.1.8, LIBISOFS-1.1.6, LIBBURN-1.1.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 331264 --El Torito VD version 1 found, boot catalog is in sector 3788 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 34DF5 216565 -diff --git a/tests/isodata/ubuntu/ubuntu16.04/ubuntu-16.04-server-powerpc.iso.txt b/tests/isodata/ubuntu/ubuntu16.04/ubuntu-16.04-server-powerpc.iso.txt -deleted file mode 100644 -index 4a0f992..0000000 ---- a/tests/isodata/ubuntu/ubuntu16.04/ubuntu-16.04-server-powerpc.iso.txt -+++ /dev/null -@@ -1,17 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu-Server 16.04 LTS ppc --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 364644 --CD-ROM uses ISO 9660:1999 relaxed format --NO Joliet present --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/ubuntu/ubuntu16.04/ubuntu-16.04-server-ppc64el.iso.txt b/tests/isodata/ubuntu/ubuntu16.04/ubuntu-16.04-server-ppc64el.iso.txt -deleted file mode 100644 -index c430fa9..0000000 ---- a/tests/isodata/ubuntu/ubuntu16.04/ubuntu-16.04-server-ppc64el.iso.txt -+++ /dev/null -@@ -1,17 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu-Server 16.04 LTS ppc64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 319480 --CD-ROM uses ISO 9660:1999 relaxed format --NO Joliet present --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/ubuntu/ubuntu16.04/ubuntu-16.04-server-s390x.iso.txt b/tests/isodata/ubuntu/ubuntu16.04/ubuntu-16.04-server-s390x.iso.txt -deleted file mode 100644 -index 6ab2887..0000000 ---- a/tests/isodata/ubuntu/ubuntu16.04/ubuntu-16.04-server-s390x.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu-Server 16.04 LTS s390x --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 281237 --El Torito VD version 1 found, boot catalog is in sector 1845 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect FFFFD8D0 -- Bootoff 736 1846 -diff --git a/tests/isodata/ubuntu/ubuntu16.10/ubuntu-16.10-desktop-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu16.10/ubuntu-16.10-desktop-amd64.iso.txt -deleted file mode 100644 -index e1c83cd..0000000 ---- a/tests/isodata/ubuntu/ubuntu16.10/ubuntu-16.10-desktop-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu 16.10 amd64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.2.4 2012.07.20.130001, LIBISOBURN-1.2.4, LIBISOFS-1.2.4, LIBBURN-1.2.4 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 778240 --El Torito VD version 1 found, boot catalog is in sector 177 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff BB9AE 768430 -diff --git a/tests/isodata/ubuntu/ubuntu16.10/ubuntu-16.10-desktop-i386.iso.txt b/tests/isodata/ubuntu/ubuntu16.10/ubuntu-16.10-desktop-i386.iso.txt -deleted file mode 100644 -index 4aed723..0000000 ---- a/tests/isodata/ubuntu/ubuntu16.10/ubuntu-16.10-desktop-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu 16.10 i386 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.1.8 2011.11.20.173001, LIBISOBURN-1.1.8, LIBISOFS-1.1.6, LIBBURN-1.1.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 786432 --El Torito VD version 1 found, boot catalog is in sector 272 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff BECAA 781482 -diff --git a/tests/isodata/ubuntu/ubuntu16.10/ubuntu-16.10-server-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu16.10/ubuntu-16.10-server-amd64.iso.txt -deleted file mode 100644 -index f7f7255..0000000 ---- a/tests/isodata/ubuntu/ubuntu16.10/ubuntu-16.10-server-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu-Server 16.10 amd64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.2.4 2012.07.20.130001, LIBISOBURN-1.2.4, LIBISOFS-1.2.4, LIBBURN-1.2.4 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 342016 --El Torito VD version 1 found, boot catalog is in sector 2070 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff B004 45060 -diff --git a/tests/isodata/ubuntu/ubuntu16.10/ubuntu-16.10-server-arm64.iso.txt b/tests/isodata/ubuntu/ubuntu16.10/ubuntu-16.10-server-arm64.iso.txt -deleted file mode 100644 -index bb56abe..0000000 ---- a/tests/isodata/ubuntu/ubuntu16.10/ubuntu-16.10-server-arm64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu-Server 16.10 arm64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.2.4 2012.07.20.130001, LIBISOBURN-1.2.4, LIBISOFS-1.2.4, LIBBURN-1.2.4 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 308104 --El Torito VD version 1 found, boot catalog is in sector 2027 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 239 (Unknown Arch) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 340 -- Bootoff FD4F 64847 -diff --git a/tests/isodata/ubuntu/ubuntu16.10/ubuntu-16.10-server-i386.iso.txt b/tests/isodata/ubuntu/ubuntu16.10/ubuntu-16.10-server-i386.iso.txt -deleted file mode 100644 -index 4ff4093..0000000 ---- a/tests/isodata/ubuntu/ubuntu16.10/ubuntu-16.10-server-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu-Server 16.10 i386 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.1.8 2011.11.20.173001, LIBISOBURN-1.1.8, LIBISOFS-1.1.6, LIBBURN-1.1.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 336896 --El Torito VD version 1 found, boot catalog is in sector 4054 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff B697 46743 -diff --git a/tests/isodata/ubuntu/ubuntu16.10/ubuntu-16.10-server-powerpc.iso.txt b/tests/isodata/ubuntu/ubuntu16.10/ubuntu-16.10-server-powerpc.iso.txt -deleted file mode 100644 -index cb0b576..0000000 ---- a/tests/isodata/ubuntu/ubuntu16.10/ubuntu-16.10-server-powerpc.iso.txt -+++ /dev/null -@@ -1,17 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu-Server 16.10 ppc --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 354498 --CD-ROM uses ISO 9660:1999 relaxed format --NO Joliet present --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/ubuntu/ubuntu16.10/ubuntu-16.10-server-ppc64el.iso.txt b/tests/isodata/ubuntu/ubuntu16.10/ubuntu-16.10-server-ppc64el.iso.txt -deleted file mode 100644 -index d016a49..0000000 ---- a/tests/isodata/ubuntu/ubuntu16.10/ubuntu-16.10-server-ppc64el.iso.txt -+++ /dev/null -@@ -1,17 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu-Server 16.10 ppc64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 322935 --CD-ROM uses ISO 9660:1999 relaxed format --NO Joliet present --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/ubuntu/ubuntu16.10/ubuntu-16.10-server-s390x.iso.txt b/tests/isodata/ubuntu/ubuntu16.10/ubuntu-16.10-server-s390x.iso.txt -deleted file mode 100644 -index d482bfa..0000000 ---- a/tests/isodata/ubuntu/ubuntu16.10/ubuntu-16.10-server-s390x.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu-Server 16.10 s390x --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 283116 --El Torito VD version 1 found, boot catalog is in sector 1971 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect FFFFDA80 -- Bootoff 7B4 1972 -diff --git a/tests/isodata/ubuntu/ubuntu17.04/ubuntu-17.04-desktop-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu17.04/ubuntu-17.04-desktop-amd64.iso.txt -deleted file mode 100644 -index 80bcf51..0000000 ---- a/tests/isodata/ubuntu/ubuntu17.04/ubuntu-17.04-desktop-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu 17.04 amd64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.2.4 2012.07.20.130001, LIBISOBURN-1.2.4, LIBISOFS-1.2.4, LIBBURN-1.2.4 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 785664 --El Torito VD version 1 found, boot catalog is in sector 173 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff BDC0A 777226 -diff --git a/tests/isodata/ubuntu/ubuntu17.04/ubuntu-17.04-desktop-i386.iso.txt b/tests/isodata/ubuntu/ubuntu17.04/ubuntu-17.04-desktop-i386.iso.txt -deleted file mode 100644 -index be25b9e..0000000 ---- a/tests/isodata/ubuntu/ubuntu17.04/ubuntu-17.04-desktop-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu 17.04 i386 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.1.8 2011.11.20.173001, LIBISOBURN-1.1.8, LIBISOFS-1.1.6, LIBBURN-1.1.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 797328 --El Torito VD version 1 found, boot catalog is in sector 256 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff C1A0D 793101 -diff --git a/tests/isodata/ubuntu/ubuntu17.04/ubuntu-17.04-server-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu17.04/ubuntu-17.04-server-amd64.iso.txt -deleted file mode 100644 -index 191e274..0000000 ---- a/tests/isodata/ubuntu/ubuntu17.04/ubuntu-17.04-server-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu-Server 17.04 amd64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.2.4 2012.07.20.130001, LIBISOBURN-1.2.4, LIBISOFS-1.2.4, LIBBURN-1.2.4 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 350720 --El Torito VD version 1 found, boot catalog is in sector 2093 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff B1C5 45509 -diff --git a/tests/isodata/ubuntu/ubuntu17.04/ubuntu-17.04-server-arm64.iso.txt b/tests/isodata/ubuntu/ubuntu17.04/ubuntu-17.04-server-arm64.iso.txt -deleted file mode 100644 -index 9a78ddc..0000000 ---- a/tests/isodata/ubuntu/ubuntu17.04/ubuntu-17.04-server-arm64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu-Server 17.04 arm64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.2.4 2012.07.20.130001, LIBISOBURN-1.2.4, LIBISOFS-1.2.4, LIBBURN-1.2.4 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 316447 --El Torito VD version 1 found, boot catalog is in sector 2050 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 239 (Unknown Arch) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 380 -- Bootoff 10034 65588 -diff --git a/tests/isodata/ubuntu/ubuntu17.04/ubuntu-17.04-server-i386.iso.txt b/tests/isodata/ubuntu/ubuntu17.04/ubuntu-17.04-server-i386.iso.txt -deleted file mode 100644 -index d25278d..0000000 ---- a/tests/isodata/ubuntu/ubuntu17.04/ubuntu-17.04-server-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu-Server 17.04 i386 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.1.8 2011.11.20.173001, LIBISOBURN-1.1.8, LIBISOFS-1.1.6, LIBBURN-1.1.8 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 349184 --El Torito VD version 1 found, boot catalog is in sector 4100 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff B851 47185 -diff --git a/tests/isodata/ubuntu/ubuntu17.04/ubuntu-17.04-server-ppc64el.iso.txt b/tests/isodata/ubuntu/ubuntu17.04/ubuntu-17.04-server-ppc64el.iso.txt -deleted file mode 100644 -index ea661d7..0000000 ---- a/tests/isodata/ubuntu/ubuntu17.04/ubuntu-17.04-server-ppc64el.iso.txt -+++ /dev/null -@@ -1,17 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu-Server 17.04 ppc64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 362532 --CD-ROM uses ISO 9660:1999 relaxed format --NO Joliet present --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/ubuntu/ubuntu17.04/ubuntu-17.04-server-s390x.iso.txt b/tests/isodata/ubuntu/ubuntu17.04/ubuntu-17.04-server-s390x.iso.txt -deleted file mode 100644 -index 7c13dab..0000000 ---- a/tests/isodata/ubuntu/ubuntu17.04/ubuntu-17.04-server-s390x.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu-Server 17.04 s390x --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 288035 --El Torito VD version 1 found, boot catalog is in sector 1988 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect FFFFDAD0 -- Bootoff 7C5 1989 -diff --git a/tests/isodata/ubuntu/ubuntu17.10/ubuntu-17.10-desktop-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu17.10/ubuntu-17.10-desktop-amd64.iso.txt -deleted file mode 100644 -index 6a34942..0000000 ---- a/tests/isodata/ubuntu/ubuntu17.10/ubuntu-17.10-desktop-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu 17.10 amd64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.2.4 2012.07.20.130001, LIBISOBURN-1.2.4, LIBISOFS-1.2.4, LIBBURN-1.2.4 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 732960 --El Torito VD version 1 found, boot catalog is in sector 189 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff F1 241 -diff --git a/tests/isodata/ubuntu/ubuntu17.10/ubuntu-17.10-server-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu17.10/ubuntu-17.10-server-amd64.iso.txt -deleted file mode 100644 -index 1d9fa24..0000000 ---- a/tests/isodata/ubuntu/ubuntu17.10/ubuntu-17.10-server-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu-Server 17.10 amd64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.2.4 2012.07.20.130001, LIBISOBURN-1.2.4, LIBISOFS-1.2.4, LIBBURN-1.2.4 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 381440 --El Torito VD version 1 found, boot catalog is in sector 2190 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff D5EA 54762 -diff --git a/tests/isodata/ubuntu/ubuntu17.10/ubuntu-17.10-server-arm64.iso.txt b/tests/isodata/ubuntu/ubuntu17.10/ubuntu-17.10-server-arm64.iso.txt -deleted file mode 100644 -index 252d3b6..0000000 ---- a/tests/isodata/ubuntu/ubuntu17.10/ubuntu-17.10-server-arm64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu-Server 17.10 arm64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.2.4 2012.07.20.130001, LIBISOBURN-1.2.4, LIBISOFS-1.2.4, LIBBURN-1.2.4 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 343704 --El Torito VD version 1 found, boot catalog is in sector 4278 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 239 (Unknown Arch) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 380 -- Bootoff 12E8F 77455 -diff --git a/tests/isodata/ubuntu/ubuntu17.10/ubuntu-17.10-server-i386.iso.txt b/tests/isodata/ubuntu/ubuntu17.10/ubuntu-17.10-server-i386.iso.txt -deleted file mode 100644 -index 256bf3f..0000000 ---- a/tests/isodata/ubuntu/ubuntu17.10/ubuntu-17.10-server-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu-Server 17.10 i386 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.4.2 2015.11.28.140001, LIBISOBURN-1.4.2, LIBISOFS-1.4.2, LIBBURN-1.4.2 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 380416 --El Torito VD version 1 found, boot catalog is in sector 4292 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 10C5 4293 -diff --git a/tests/isodata/ubuntu/ubuntu17.10/ubuntu-17.10-server-ppc64el.iso.txt b/tests/isodata/ubuntu/ubuntu17.10/ubuntu-17.10-server-ppc64el.iso.txt -deleted file mode 100644 -index 8235b25..0000000 ---- a/tests/isodata/ubuntu/ubuntu17.10/ubuntu-17.10-server-ppc64el.iso.txt -+++ /dev/null -@@ -1,17 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu-Server 17.10 ppc64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 395905 --CD-ROM uses ISO 9660:1999 relaxed format --NO Joliet present --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/ubuntu/ubuntu17.10/ubuntu-17.10-server-s390x.iso.txt b/tests/isodata/ubuntu/ubuntu17.10/ubuntu-17.10-server-s390x.iso.txt -deleted file mode 100644 -index dd8fc34..0000000 ---- a/tests/isodata/ubuntu/ubuntu17.10/ubuntu-17.10-server-s390x.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu-Server 17.10 s390x --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 305699 --El Torito VD version 1 found, boot catalog is in sector 2074 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect FFFFDCB0 -- Bootoff 81B 2075 -diff --git a/tests/isodata/ubuntu/ubuntu18.04/ubuntu-18.04-desktop-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu18.04/ubuntu-18.04-desktop-amd64.iso.txt -deleted file mode 100644 -index 025620f..0000000 ---- a/tests/isodata/ubuntu/ubuntu18.04/ubuntu-18.04-desktop-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu 18.04 LTS amd64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.2.4 2012.07.20.130001, LIBISOBURN-1.2.4, LIBISOFS-1.2.4, LIBBURN-1.2.4 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 938400 --El Torito VD version 1 found, boot catalog is in sector 201 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff DFC5B 916571 -diff --git a/tests/isodata/ubuntu/ubuntu18.04/ubuntu-18.04-server-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu18.04/ubuntu-18.04-server-amd64.iso.txt -deleted file mode 100644 -index 124804d..0000000 ---- a/tests/isodata/ubuntu/ubuntu18.04/ubuntu-18.04-server-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu-Server 18.04 LTS amd64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.2.4 2012.07.20.130001, LIBISOBURN-1.2.4, LIBISOFS-1.2.4, LIBBURN-1.2.4 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 360448 --El Torito VD version 1 found, boot catalog is in sector 2110 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff D100 53504 -diff --git a/tests/isodata/ubuntu/ubuntu18.04/ubuntu-18.04-server-arm64.iso.txt b/tests/isodata/ubuntu/ubuntu18.04/ubuntu-18.04-server-arm64.iso.txt -deleted file mode 100644 -index ce42a5e..0000000 ---- a/tests/isodata/ubuntu/ubuntu18.04/ubuntu-18.04-server-arm64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu-Server 18.04 LTS arm64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.2.4 2012.07.20.130001, LIBISOBURN-1.2.4, LIBISOFS-1.2.4, LIBBURN-1.2.4 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 342740 --El Torito VD version 1 found, boot catalog is in sector 3998 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 239 (Unknown Arch) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 380 -- Bootoff 182AF 98991 -diff --git a/tests/isodata/ubuntu/ubuntu18.04/ubuntu-18.04-server-ppc64el.iso.txt b/tests/isodata/ubuntu/ubuntu18.04/ubuntu-18.04-server-ppc64el.iso.txt -deleted file mode 100644 -index d7c9249..0000000 ---- a/tests/isodata/ubuntu/ubuntu18.04/ubuntu-18.04-server-ppc64el.iso.txt -+++ /dev/null -@@ -1,17 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu-Server 18.04 LTS ppc64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 377082 --CD-ROM uses ISO 9660:1999 relaxed format --NO Joliet present --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/ubuntu/ubuntu18.04/ubuntu-18.04-server-s390x.iso.txt b/tests/isodata/ubuntu/ubuntu18.04/ubuntu-18.04-server-s390x.iso.txt -deleted file mode 100644 -index 19c702d..0000000 ---- a/tests/isodata/ubuntu/ubuntu18.04/ubuntu-18.04-server-s390x.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu-Server 18.04 LTS s390x --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 289280 --El Torito VD version 1 found, boot catalog is in sector 1934 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect FFFFE610 -- Bootoff 78F 1935 -diff --git a/tests/isodata/ubuntu/ubuntu18.04/ubuntu-18.04.1-desktop-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu18.04/ubuntu-18.04.1-desktop-amd64.iso.txt -deleted file mode 100644 -index f2ca3de..0000000 ---- a/tests/isodata/ubuntu/ubuntu18.04/ubuntu-18.04.1-desktop-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu 18.04.1 LTS amd64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.2.4 2012.07.20.130001, LIBISOBURN-1.2.4, LIBISOFS-1.2.4, LIBBURN-1.2.4 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 953784 --El Torito VD version 1 found, boot catalog is in sector 191 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff E3B56 932694 -diff --git a/tests/isodata/ubuntu/ubuntu18.04/ubuntu-18.04.1.0-live-server-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu18.04/ubuntu-18.04.1.0-live-server-amd64.iso.txt -deleted file mode 100644 -index 4358746..0000000 ---- a/tests/isodata/ubuntu/ubuntu18.04/ubuntu-18.04.1.0-live-server-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu-Server 18.04.1+ LTS amd64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.2.4 2012.07.20.130001, LIBISOBURN-1.2.4, LIBISOFS-1.2.4, LIBBURN-1.2.4 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 415744 --El Torito VD version 1 found, boot catalog is in sector 193 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 2675F 157535 -diff --git a/tests/isodata/ubuntu/ubuntu18.10/cosmic-desktop-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu18.10/cosmic-desktop-amd64.iso.txt -deleted file mode 100644 -index ad94849..0000000 ---- a/tests/isodata/ubuntu/ubuntu18.10/cosmic-desktop-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu 18.10 amd64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.2.4 2012.07.20.130001, LIBISOBURN-1.2.4, LIBISOFS-1.2.4, LIBBURN-1.2.4 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 976320 --El Torito VD version 1 found, boot catalog is in sector 194 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff E9066 954470 -diff --git a/tests/isodata/ubuntu/ubuntu18.10/cosmic-live-server-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu18.10/cosmic-live-server-amd64.iso.txt -deleted file mode 100644 -index 7e25c68..0000000 ---- a/tests/isodata/ubuntu/ubuntu18.10/cosmic-live-server-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu-Server 18.10 amd64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.2.4 2012.07.20.130001, LIBISOBURN-1.2.4, LIBISOFS-1.2.4, LIBBURN-1.2.4 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 451072 --El Torito VD version 1 found, boot catalog is in sector 196 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 68EDF 429791 -diff --git a/tests/isodata/ubuntu/ubuntu18.10/cosmic-server-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu18.10/cosmic-server-amd64.iso.txt -deleted file mode 100644 -index 3574006..0000000 ---- a/tests/isodata/ubuntu/ubuntu18.10/cosmic-server-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu-Server 18.10 amd64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.2.4 2012.07.20.130001, LIBISOBURN-1.2.4, LIBISOFS-1.2.4, LIBBURN-1.2.4 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 367104 --El Torito VD version 1 found, boot catalog is in sector 2115 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff DD43 56643 -diff --git a/tests/isodata/ubuntu/ubuntu18.10/cosmic-server-arm64.iso.txt b/tests/isodata/ubuntu/ubuntu18.10/cosmic-server-arm64.iso.txt -deleted file mode 100644 -index 7729543..0000000 ---- a/tests/isodata/ubuntu/ubuntu18.10/cosmic-server-arm64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu-Server 18.10 arm64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.2.4 2012.07.20.130001, LIBISOBURN-1.2.4, LIBISOFS-1.2.4, LIBBURN-1.2.4 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 368334 --El Torito VD version 1 found, boot catalog is in sector 4058 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 239 (Unknown Arch) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 3C0 -- Bootoff 1A245 107077 -diff --git a/tests/isodata/ubuntu/ubuntu18.10/cosmic-server-ppc64el.iso.txt b/tests/isodata/ubuntu/ubuntu18.10/cosmic-server-ppc64el.iso.txt -deleted file mode 100644 -index 081c295..0000000 ---- a/tests/isodata/ubuntu/ubuntu18.10/cosmic-server-ppc64el.iso.txt -+++ /dev/null -@@ -1,17 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu-Server 18.10 ppc64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 396150 --CD-ROM uses ISO 9660:1999 relaxed format --NO Joliet present --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/ubuntu/ubuntu18.10/cosmic-server-s390x.iso.txt b/tests/isodata/ubuntu/ubuntu18.10/cosmic-server-s390x.iso.txt -deleted file mode 100644 -index b26a1e2..0000000 ---- a/tests/isodata/ubuntu/ubuntu18.10/cosmic-server-s390x.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu-Server 18.10 s390x --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 292740 --El Torito VD version 1 found, boot catalog is in sector 1892 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect FFFFE858 -- Bootoff 765 1893 -diff --git a/tests/isodata/ubuntu/ubuntu19.04/disco-desktop-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu19.04/disco-desktop-amd64.iso.txt -deleted file mode 100644 -index 9e264cf..0000000 ---- a/tests/isodata/ubuntu/ubuntu19.04/disco-desktop-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu 19.04 amd64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.2.4 2012.07.20.130001, LIBISOBURN-1.2.4, LIBISOFS-1.2.4, LIBBURN-1.2.4 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 971040 --El Torito VD version 1 found, boot catalog is in sector 194 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff E7DF2 949746 -diff --git a/tests/isodata/ubuntu/ubuntu19.04/disco-server-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu19.04/disco-server-amd64.iso.txt -deleted file mode 100644 -index bdb1d12..0000000 ---- a/tests/isodata/ubuntu/ubuntu19.04/disco-server-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu-Server 19.04 amd64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.2.4 2012.07.20.130001, LIBISOBURN-1.2.4, LIBISOFS-1.2.4, LIBBURN-1.2.4 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 366080 --El Torito VD version 1 found, boot catalog is in sector 2078 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff DD86 56710 -diff --git a/tests/isodata/ubuntu/ubuntu19.04/disco-server-arm64.iso.txt b/tests/isodata/ubuntu/ubuntu19.04/disco-server-arm64.iso.txt -deleted file mode 100644 -index 8427fe9..0000000 ---- a/tests/isodata/ubuntu/ubuntu19.04/disco-server-arm64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: Ubuntu-Server 19.04 arm64 --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.2.4 2012.07.20.130001, LIBISOBURN-1.2.4, LIBISOFS-1.2.4, LIBBURN-1.2.4 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 367588 --El Torito VD version 1 found, boot catalog is in sector 3972 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 239 (Unknown Arch) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 3C0 -- Bootoff 19EF0 106224 -diff --git a/tests/isodata/ubuntu/ubuntu19.04/disco-server-ppc64el.iso.txt b/tests/isodata/ubuntu/ubuntu19.04/disco-server-ppc64el.iso.txt -deleted file mode 100644 -index f798e4a..0000000 ---- a/tests/isodata/ubuntu/ubuntu19.04/disco-server-ppc64el.iso.txt -+++ /dev/null -@@ -1,17 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu-Server 19.04 ppc64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 411869 --CD-ROM uses ISO 9660:1999 relaxed format --NO Joliet present --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/ubuntu/ubuntu19.04/disco-server-s390x.iso.txt b/tests/isodata/ubuntu/ubuntu19.04/disco-server-s390x.iso.txt -deleted file mode 100644 -index 5c75f63..0000000 ---- a/tests/isodata/ubuntu/ubuntu19.04/disco-server-s390x.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu-Server 19.04 s390x --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 290357 --El Torito VD version 1 found, boot catalog is in sector 1838 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect FFFFE858 -- Bootoff 72F 1839 -diff --git a/tests/isodata/ubuntu/ubuntu5.04/ubuntu-5.04-install-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu5.04/ubuntu-5.04-install-amd64.iso.txt -deleted file mode 100644 -index 9410231..0000000 ---- a/tests/isodata/ubuntu/ubuntu5.04/ubuntu-5.04-install-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 5.04 amd64 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 310836 --El Torito VD version 1 found, boot catalog is in sector 1995 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 7D6 2006 -diff --git a/tests/isodata/ubuntu/ubuntu5.04/ubuntu-5.04-install-i386.iso.txt b/tests/isodata/ubuntu/ubuntu5.04/ubuntu-5.04-install-i386.iso.txt -deleted file mode 100644 -index 5cb837a..0000000 ---- a/tests/isodata/ubuntu/ubuntu5.04/ubuntu-5.04-install-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 5.04 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 300443 --El Torito VD version 1 found, boot catalog is in sector 1999 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 7DA 2010 -diff --git a/tests/isodata/ubuntu/ubuntu5.04/ubuntu-5.04-install-powerpc.iso.txt b/tests/isodata/ubuntu/ubuntu5.04/ubuntu-5.04-install-powerpc.iso.txt -deleted file mode 100644 -index 724e426..0000000 ---- a/tests/isodata/ubuntu/ubuntu5.04/ubuntu-5.04-install-powerpc.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 5.04 ppc --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 319400 --NO Joliet present --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/ubuntu/ubuntu5.04/ubuntu-5.04-live-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu5.04/ubuntu-5.04-live-amd64.iso.txt -deleted file mode 100644 -index 34db6bf..0000000 ---- a/tests/isodata/ubuntu/ubuntu5.04/ubuntu-5.04-live-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 5.04 amd64 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 305167 --El Torito VD version 1 found, boot catalog is in sector 586 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 255 597 -diff --git a/tests/isodata/ubuntu/ubuntu5.04/ubuntu-5.04-live-i386.iso.txt b/tests/isodata/ubuntu/ubuntu5.04/ubuntu-5.04-live-i386.iso.txt -deleted file mode 100644 -index f5a0e23..0000000 ---- a/tests/isodata/ubuntu/ubuntu5.04/ubuntu-5.04-live-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 5.04 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 319951 --El Torito VD version 1 found, boot catalog is in sector 652 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 297 663 -diff --git a/tests/isodata/ubuntu/ubuntu5.04/ubuntu-5.04-live-powerpc.iso.txt b/tests/isodata/ubuntu/ubuntu5.04/ubuntu-5.04-live-powerpc.iso.txt -deleted file mode 100644 -index 39ae664..0000000 ---- a/tests/isodata/ubuntu/ubuntu5.04/ubuntu-5.04-live-powerpc.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 5.04 ppc --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 317890 --NO Joliet present --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/ubuntu/ubuntu5.10/ubuntu-5.10-dvd-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu5.10/ubuntu-5.10-dvd-amd64.iso.txt -deleted file mode 100644 -index c38d5ba..0000000 ---- a/tests/isodata/ubuntu/ubuntu5.10/ubuntu-5.10-dvd-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 5.10 amd64 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1501792 --El Torito VD version 1 found, boot catalog is in sector 4596 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 11F5 4597 -diff --git a/tests/isodata/ubuntu/ubuntu5.10/ubuntu-5.10-dvd-i386.iso.txt b/tests/isodata/ubuntu/ubuntu5.10/ubuntu-5.10-dvd-i386.iso.txt -deleted file mode 100644 -index 1697788..0000000 ---- a/tests/isodata/ubuntu/ubuntu5.10/ubuntu-5.10-dvd-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 5.10 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1488369 --El Torito VD version 1 found, boot catalog is in sector 4609 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1202 4610 -diff --git a/tests/isodata/ubuntu/ubuntu5.10/ubuntu-5.10-dvd-powerpc.iso.txt b/tests/isodata/ubuntu/ubuntu5.10/ubuntu-5.10-dvd-powerpc.iso.txt -deleted file mode 100644 -index 24ec84a..0000000 ---- a/tests/isodata/ubuntu/ubuntu5.10/ubuntu-5.10-dvd-powerpc.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 5.10 ppc --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1541526 --NO Joliet present --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/ubuntu/ubuntu5.10/ubuntu-5.10-install-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu5.10/ubuntu-5.10-install-amd64.iso.txt -deleted file mode 100644 -index 62f1a64..0000000 ---- a/tests/isodata/ubuntu/ubuntu5.10/ubuntu-5.10-install-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 5.10 amd64 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 328399 --El Torito VD version 1 found, boot catalog is in sector 2584 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff A19 2585 -diff --git a/tests/isodata/ubuntu/ubuntu5.10/ubuntu-5.10-install-i386.iso.txt b/tests/isodata/ubuntu/ubuntu5.10/ubuntu-5.10-install-i386.iso.txt -deleted file mode 100644 -index 52aba6a..0000000 ---- a/tests/isodata/ubuntu/ubuntu5.10/ubuntu-5.10-install-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 5.10 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 315981 --El Torito VD version 1 found, boot catalog is in sector 2599 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff A28 2600 -diff --git a/tests/isodata/ubuntu/ubuntu5.10/ubuntu-5.10-install-powerpc.iso.txt b/tests/isodata/ubuntu/ubuntu5.10/ubuntu-5.10-install-powerpc.iso.txt -deleted file mode 100644 -index 8037e52..0000000 ---- a/tests/isodata/ubuntu/ubuntu5.10/ubuntu-5.10-install-powerpc.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 5.10 ppc --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 329994 --NO Joliet present --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/ubuntu/ubuntu5.10/ubuntu-5.10-live-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu5.10/ubuntu-5.10-live-amd64.iso.txt -deleted file mode 100644 -index 863ddfa..0000000 ---- a/tests/isodata/ubuntu/ubuntu5.10/ubuntu-5.10-live-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 5.10 amd64 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 329589 --El Torito VD version 1 found, boot catalog is in sector 343 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 158 344 -diff --git a/tests/isodata/ubuntu/ubuntu5.10/ubuntu-5.10-live-i386.iso.txt b/tests/isodata/ubuntu/ubuntu5.10/ubuntu-5.10-live-i386.iso.txt -deleted file mode 100644 -index 969a75b..0000000 ---- a/tests/isodata/ubuntu/ubuntu5.10/ubuntu-5.10-live-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 5.10 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 321277 --El Torito VD version 1 found, boot catalog is in sector 344 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 159 345 -diff --git a/tests/isodata/ubuntu/ubuntu5.10/ubuntu-5.10-live-powerpc.iso.txt b/tests/isodata/ubuntu/ubuntu5.10/ubuntu-5.10-live-powerpc.iso.txt -deleted file mode 100644 -index addb6df..0000000 ---- a/tests/isodata/ubuntu/ubuntu5.10/ubuntu-5.10-live-powerpc.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 5.10 ppc --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 321050 --NO Joliet present --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-alternate-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-alternate-amd64.iso.txt -deleted file mode 100644 -index 9031287..0000000 ---- a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-alternate-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 6.06 amd64 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 355268 --El Torito VD version 1 found, boot catalog is in sector 2209 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 89A 2202 -diff --git a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-alternate-hppa.iso.txt b/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-alternate-hppa.iso.txt -deleted file mode 100644 -index adf5b44..0000000 ---- a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-alternate-hppa.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 6.06 hppa --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 283807 --NO Joliet present --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-alternate-i386.iso.txt b/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-alternate-i386.iso.txt -deleted file mode 100644 -index cd2e4de..0000000 ---- a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-alternate-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 6.06 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 354455 --El Torito VD version 1 found, boot catalog is in sector 2607 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff A28 2600 -diff --git a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-alternate-ia64.iso.txt b/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-alternate-ia64.iso.txt -deleted file mode 100644 -index 1bc4376..0000000 ---- a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-alternate-ia64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 6.06 ia64 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 333850 --El Torito VD version 1 found, boot catalog is in sector 1930 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect FFFF8000 -- Bootoff 78B 1931 -diff --git a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-alternate-powerpc.iso.txt b/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-alternate-powerpc.iso.txt -deleted file mode 100644 -index e1899e1..0000000 ---- a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-alternate-powerpc.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 6.06 ppc --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 354228 --NO Joliet present --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-desktop-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-desktop-amd64.iso.txt -deleted file mode 100644 -index 57a0dba..0000000 ---- a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-desktop-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 6.06 amd64 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 357835 --El Torito VD version 1 found, boot catalog is in sector 258 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff FB 251 -diff --git a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-desktop-i386.iso.txt b/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-desktop-i386.iso.txt -deleted file mode 100644 -index bf2c10c..0000000 ---- a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-desktop-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 6.06 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 357297 --El Torito VD version 1 found, boot catalog is in sector 258 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff FB 251 -diff --git a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-desktop-powerpc.iso.txt b/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-desktop-powerpc.iso.txt -deleted file mode 100644 -index 22e1a2e..0000000 ---- a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-desktop-powerpc.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 6.06 ppc --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 358944 --NO Joliet present --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-dvd-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-dvd-amd64.iso.txt -deleted file mode 100644 -index 968a0ab..0000000 ---- a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-dvd-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 6.06 amd64 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1681156 --El Torito VD version 1 found, boot catalog is in sector 4654 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1227 4647 -diff --git a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-dvd-i386.iso.txt b/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-dvd-i386.iso.txt -deleted file mode 100644 -index f413747..0000000 ---- a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-dvd-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 6.06 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1646178 --El Torito VD version 1 found, boot catalog is in sector 4683 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1244 4676 -diff --git a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-dvd-powerpc.iso.txt b/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-dvd-powerpc.iso.txt -deleted file mode 100644 -index 5c4ffdc..0000000 ---- a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-dvd-powerpc.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 6.06 ppc --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1738329 --NO Joliet present --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-server-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-server-amd64.iso.txt -deleted file mode 100644 -index ddde135..0000000 ---- a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-server-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu-Server 6.06 amd64 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 219414 --El Torito VD version 1 found, boot catalog is in sector 1266 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 4EB 1259 -diff --git a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-server-hppa.iso.txt b/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-server-hppa.iso.txt -deleted file mode 100644 -index d961f73..0000000 ---- a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-server-hppa.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu-Server 6.06 hppa --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 155012 --NO Joliet present --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-server-i386.iso.txt b/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-server-i386.iso.txt -deleted file mode 100644 -index bdcf53f..0000000 ---- a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-server-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu-Server 6.06 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 220998 --El Torito VD version 1 found, boot catalog is in sector 1272 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 4F1 1265 -diff --git a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-server-ia64.iso.txt b/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-server-ia64.iso.txt -deleted file mode 100644 -index c61bfa1..0000000 ---- a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-server-ia64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu-Server 6.06 ia64 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 217257 --El Torito VD version 1 found, boot catalog is in sector 1181 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect FFFF8000 -- Bootoff 49E 1182 -diff --git a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-server-powerpc.iso.txt b/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-server-powerpc.iso.txt -deleted file mode 100644 -index 7f20afc..0000000 ---- a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-server-powerpc.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu-Server 6.06 ppc --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 240006 --NO Joliet present --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-server-sparc.iso.txt b/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-server-sparc.iso.txt -deleted file mode 100644 -index 0070fe9..0000000 ---- a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06-server-sparc.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu-Server 6.06 sparc --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 200630 --NO Joliet present --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-alternate-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-alternate-amd64.iso.txt -deleted file mode 100644 -index 118a9fa..0000000 ---- a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-alternate-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 6.06.1 amd64 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 357261 --El Torito VD version 1 found, boot catalog is in sector 2211 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 89C 2204 -diff --git a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-alternate-hppa.iso.txt b/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-alternate-hppa.iso.txt -deleted file mode 100644 -index b3df90e..0000000 ---- a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-alternate-hppa.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 6.06.1 hppa --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 285461 --NO Joliet present --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-alternate-i386.iso.txt b/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-alternate-i386.iso.txt -deleted file mode 100644 -index 6764fe6..0000000 ---- a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-alternate-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 6.06.1 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 356775 --El Torito VD version 1 found, boot catalog is in sector 2609 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff A2A 2602 -diff --git a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-alternate-ia64.iso.txt b/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-alternate-ia64.iso.txt -deleted file mode 100644 -index f1fa6de..0000000 ---- a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-alternate-ia64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 6.06.1 ia64 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 335518 --El Torito VD version 1 found, boot catalog is in sector 1930 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect FFFF8000 -- Bootoff 78B 1931 -diff --git a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-alternate-powerpc.iso.txt b/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-alternate-powerpc.iso.txt -deleted file mode 100644 -index 35e88f4..0000000 ---- a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-alternate-powerpc.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 6.06.1 ppc --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 355884 --NO Joliet present --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-desktop-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-desktop-amd64.iso.txt -deleted file mode 100644 -index 185738f..0000000 ---- a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-desktop-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 6.06.1 amd64 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 358277 --El Torito VD version 1 found, boot catalog is in sector 260 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff FD 253 -diff --git a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-desktop-i386.iso.txt b/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-desktop-i386.iso.txt -deleted file mode 100644 -index dc84eb5..0000000 ---- a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-desktop-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 6.06.1 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 357586 --El Torito VD version 1 found, boot catalog is in sector 260 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff FD 253 -diff --git a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-desktop-powerpc.iso.txt b/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-desktop-powerpc.iso.txt -deleted file mode 100644 -index bea1bb4..0000000 ---- a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-desktop-powerpc.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 6.06.1 ppc --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 357636 --NO Joliet present --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-dvd-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-dvd-amd64.iso.txt -deleted file mode 100644 -index 03ceb64..0000000 ---- a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-dvd-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 6.06.1 amd64 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1684402 --El Torito VD version 1 found, boot catalog is in sector 4660 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 122D 4653 -diff --git a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-dvd-i386.iso.txt b/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-dvd-i386.iso.txt -deleted file mode 100644 -index 37d437d..0000000 ---- a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-dvd-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 6.06.1 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1649296 --El Torito VD version 1 found, boot catalog is in sector 4689 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 124A 4682 -diff --git a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-dvd-powerpc.iso.txt b/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-dvd-powerpc.iso.txt -deleted file mode 100644 -index c6283a3..0000000 ---- a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-dvd-powerpc.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 6.06.1 ppc --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1739922 --NO Joliet present --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-server-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-server-amd64.iso.txt -deleted file mode 100644 -index d9e7037..0000000 ---- a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-server-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu-Server 6.06.1 amd64 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 219637 --El Torito VD version 1 found, boot catalog is in sector 1268 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 4ED 1261 -diff --git a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-server-hppa.iso.txt b/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-server-hppa.iso.txt -deleted file mode 100644 -index e94e0cc..0000000 ---- a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-server-hppa.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu-Server 6.06.1 hppa --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 155103 --NO Joliet present --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-server-i386.iso.txt b/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-server-i386.iso.txt -deleted file mode 100644 -index d9560b6..0000000 ---- a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-server-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu-Server 6.06.1 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 221256 --El Torito VD version 1 found, boot catalog is in sector 1274 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 4F3 1267 -diff --git a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-server-ia64.iso.txt b/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-server-ia64.iso.txt -deleted file mode 100644 -index 4127031..0000000 ---- a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-server-ia64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu-Server 6.06.1 ia64 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 217370 --El Torito VD version 1 found, boot catalog is in sector 1181 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect FFFF8000 -- Bootoff 49E 1182 -diff --git a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-server-powerpc.iso.txt b/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-server-powerpc.iso.txt -deleted file mode 100644 -index 7ce3ec0..0000000 ---- a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-server-powerpc.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu-Server 6.06.1 ppc --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 240298 --NO Joliet present --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-server-sparc.iso.txt b/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-server-sparc.iso.txt -deleted file mode 100644 -index 073484d..0000000 ---- a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.1-server-sparc.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu-Server 6.06.1 sparc --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 200790 --NO Joliet present --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.2-server-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.2-server-amd64.iso.txt -deleted file mode 100644 -index 9fee852..0000000 ---- a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.2-server-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu-Server 6.06.2 amd64 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 220423 --El Torito VD version 1 found, boot catalog is in sector 1270 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 4EF 1263 -diff --git a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.2-server-i386.iso.txt b/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.2-server-i386.iso.txt -deleted file mode 100644 -index 2978a23..0000000 ---- a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.2-server-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu-Server 6.06.2 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 222179 --El Torito VD version 1 found, boot catalog is in sector 1276 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 4F5 1269 -diff --git a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.2-server-powerpc.iso.txt b/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.2-server-powerpc.iso.txt -deleted file mode 100644 -index f21ea0a..0000000 ---- a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.2-server-powerpc.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu-Server 6.06.2 ppc --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 241442 --NO Joliet present --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.2-server-sparc.iso.txt b/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.2-server-sparc.iso.txt -deleted file mode 100644 -index 0efb9a4..0000000 ---- a/tests/isodata/ubuntu/ubuntu6.06/ubuntu-6.06.2-server-sparc.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu-Server 6.06.2 sparc --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 201590 --NO Joliet present --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/ubuntu/ubuntu6.10/ubuntu-6.10-alternate-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu6.10/ubuntu-6.10-alternate-amd64.iso.txt -deleted file mode 100644 -index 61b0d6b..0000000 ---- a/tests/isodata/ubuntu/ubuntu6.10/ubuntu-6.10-alternate-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 6.10 amd64 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 355781 --El Torito VD version 1 found, boot catalog is in sector 2402 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 95B 2395 -diff --git a/tests/isodata/ubuntu/ubuntu6.10/ubuntu-6.10-alternate-i386.iso.txt b/tests/isodata/ubuntu/ubuntu6.10/ubuntu-6.10-alternate-i386.iso.txt -deleted file mode 100644 -index b374962..0000000 ---- a/tests/isodata/ubuntu/ubuntu6.10/ubuntu-6.10-alternate-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 6.10 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 356900 --El Torito VD version 1 found, boot catalog is in sector 2353 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 92A 2346 -diff --git a/tests/isodata/ubuntu/ubuntu6.10/ubuntu-6.10-alternate-powerpc.iso.txt b/tests/isodata/ubuntu/ubuntu6.10/ubuntu-6.10-alternate-powerpc.iso.txt -deleted file mode 100644 -index 12785d5..0000000 ---- a/tests/isodata/ubuntu/ubuntu6.10/ubuntu-6.10-alternate-powerpc.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 6.10 ppc --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 357528 --NO Joliet present --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/ubuntu/ubuntu6.10/ubuntu-6.10-desktop-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu6.10/ubuntu-6.10-desktop-amd64.iso.txt -deleted file mode 100644 -index 92ad6af..0000000 ---- a/tests/isodata/ubuntu/ubuntu6.10/ubuntu-6.10-desktop-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 6.10 amd64 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 353611 --El Torito VD version 1 found, boot catalog is in sector 257 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff FA 250 -diff --git a/tests/isodata/ubuntu/ubuntu6.10/ubuntu-6.10-desktop-i386.iso.txt b/tests/isodata/ubuntu/ubuntu6.10/ubuntu-6.10-desktop-i386.iso.txt -deleted file mode 100644 -index 9a56a45..0000000 ---- a/tests/isodata/ubuntu/ubuntu6.10/ubuntu-6.10-desktop-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 6.10 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 357565 --El Torito VD version 1 found, boot catalog is in sector 257 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff FA 250 -diff --git a/tests/isodata/ubuntu/ubuntu6.10/ubuntu-6.10-desktop-powerpc.iso.txt b/tests/isodata/ubuntu/ubuntu6.10/ubuntu-6.10-desktop-powerpc.iso.txt -deleted file mode 100644 -index a4de4b3..0000000 ---- a/tests/isodata/ubuntu/ubuntu6.10/ubuntu-6.10-desktop-powerpc.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 6.10 ppc --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 352674 --NO Joliet present --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/ubuntu/ubuntu6.10/ubuntu-6.10-server-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu6.10/ubuntu-6.10-server-amd64.iso.txt -deleted file mode 100644 -index e76f620..0000000 ---- a/tests/isodata/ubuntu/ubuntu6.10/ubuntu-6.10-server-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu-Server 6.10 amd64 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 237339 --El Torito VD version 1 found, boot catalog is in sector 1189 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 49E 1182 -diff --git a/tests/isodata/ubuntu/ubuntu6.10/ubuntu-6.10-server-i386.iso.txt b/tests/isodata/ubuntu/ubuntu6.10/ubuntu-6.10-server-i386.iso.txt -deleted file mode 100644 -index 18e3d74..0000000 ---- a/tests/isodata/ubuntu/ubuntu6.10/ubuntu-6.10-server-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu-Server 6.10 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 231286 --El Torito VD version 1 found, boot catalog is in sector 1195 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 4A4 1188 -diff --git a/tests/isodata/ubuntu/ubuntu6.10/ubuntu-6.10-server-powerpc.iso.txt b/tests/isodata/ubuntu/ubuntu6.10/ubuntu-6.10-server-powerpc.iso.txt -deleted file mode 100644 -index dd87374..0000000 ---- a/tests/isodata/ubuntu/ubuntu6.10/ubuntu-6.10-server-powerpc.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu-Server 6.10 ppc --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 249890 --NO Joliet present --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/ubuntu/ubuntu6.10/ubuntu-6.10-server-sparc.iso.txt b/tests/isodata/ubuntu/ubuntu6.10/ubuntu-6.10-server-sparc.iso.txt -deleted file mode 100644 -index 15be54d..0000000 ---- a/tests/isodata/ubuntu/ubuntu6.10/ubuntu-6.10-server-sparc.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu-Server 6.10 sparc --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 210710 --NO Joliet present --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/ubuntu/ubuntu7.04/ubuntu-7.04-alternate-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu7.04/ubuntu-7.04-alternate-amd64.iso.txt -deleted file mode 100644 -index 9f161fa..0000000 ---- a/tests/isodata/ubuntu/ubuntu7.04/ubuntu-7.04-alternate-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 7.04 amd64 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 357431 --El Torito VD version 1 found, boot catalog is in sector 2024 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 7E1 2017 -diff --git a/tests/isodata/ubuntu/ubuntu7.04/ubuntu-7.04-alternate-i386.iso.txt b/tests/isodata/ubuntu/ubuntu7.04/ubuntu-7.04-alternate-i386.iso.txt -deleted file mode 100644 -index 0708c92..0000000 ---- a/tests/isodata/ubuntu/ubuntu7.04/ubuntu-7.04-alternate-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 7.04 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 356473 --El Torito VD version 1 found, boot catalog is in sector 2105 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 832 2098 -diff --git a/tests/isodata/ubuntu/ubuntu7.04/ubuntu-7.04-desktop-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu7.04/ubuntu-7.04-desktop-amd64.iso.txt -deleted file mode 100644 -index 170db17..0000000 ---- a/tests/isodata/ubuntu/ubuntu7.04/ubuntu-7.04-desktop-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 7.04 amd64 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 357994 --El Torito VD version 1 found, boot catalog is in sector 275 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 10C 268 -diff --git a/tests/isodata/ubuntu/ubuntu7.04/ubuntu-7.04-desktop-i386.iso.txt b/tests/isodata/ubuntu/ubuntu7.04/ubuntu-7.04-desktop-i386.iso.txt -deleted file mode 100644 -index 893ec54..0000000 ---- a/tests/isodata/ubuntu/ubuntu7.04/ubuntu-7.04-desktop-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 7.04 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 357323 --El Torito VD version 1 found, boot catalog is in sector 275 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 10C 268 -diff --git a/tests/isodata/ubuntu/ubuntu7.04/ubuntu-7.04-server-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu7.04/ubuntu-7.04-server-amd64.iso.txt -deleted file mode 100644 -index 16262a5..0000000 ---- a/tests/isodata/ubuntu/ubuntu7.04/ubuntu-7.04-server-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu-Server 7.04 amd64 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 245915 --El Torito VD version 1 found, boot catalog is in sector 1224 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 4C1 1217 -diff --git a/tests/isodata/ubuntu/ubuntu7.04/ubuntu-7.04-server-i386.iso.txt b/tests/isodata/ubuntu/ubuntu7.04/ubuntu-7.04-server-i386.iso.txt -deleted file mode 100644 -index 9caac7d..0000000 ---- a/tests/isodata/ubuntu/ubuntu7.04/ubuntu-7.04-server-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu-Server 7.04 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 252117 --El Torito VD version 1 found, boot catalog is in sector 1236 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 4CD 1229 -diff --git a/tests/isodata/ubuntu/ubuntu7.04/ubuntu-7.04-server-sparc.iso.txt b/tests/isodata/ubuntu/ubuntu7.04/ubuntu-7.04-server-sparc.iso.txt -deleted file mode 100644 -index bb0d682..0000000 ---- a/tests/isodata/ubuntu/ubuntu7.04/ubuntu-7.04-server-sparc.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu-Server 7.04 sparc --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 225270 --NO Joliet present --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/ubuntu/ubuntu7.10/ubuntu-7.10-alternate-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu7.10/ubuntu-7.10-alternate-amd64.iso.txt -deleted file mode 100644 -index 9b6b100..0000000 ---- a/tests/isodata/ubuntu/ubuntu7.10/ubuntu-7.10-alternate-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 7.10 amd64 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 355219 --El Torito VD version 1 found, boot catalog is in sector 2169 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 872 2162 -diff --git a/tests/isodata/ubuntu/ubuntu7.10/ubuntu-7.10-alternate-i386.iso.txt b/tests/isodata/ubuntu/ubuntu7.10/ubuntu-7.10-alternate-i386.iso.txt -deleted file mode 100644 -index 49992c9..0000000 ---- a/tests/isodata/ubuntu/ubuntu7.10/ubuntu-7.10-alternate-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 7.10 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 354816 --El Torito VD version 1 found, boot catalog is in sector 2238 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 8B7 2231 -diff --git a/tests/isodata/ubuntu/ubuntu7.10/ubuntu-7.10-desktop-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu7.10/ubuntu-7.10-desktop-amd64.iso.txt -deleted file mode 100644 -index 8d3b575..0000000 ---- a/tests/isodata/ubuntu/ubuntu7.10/ubuntu-7.10-desktop-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 7.10 amd64 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 356783 --El Torito VD version 1 found, boot catalog is in sector 277 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 10E 270 -diff --git a/tests/isodata/ubuntu/ubuntu7.10/ubuntu-7.10-desktop-i386.iso.txt b/tests/isodata/ubuntu/ubuntu7.10/ubuntu-7.10-desktop-i386.iso.txt -deleted file mode 100644 -index 03a1a24..0000000 ---- a/tests/isodata/ubuntu/ubuntu7.10/ubuntu-7.10-desktop-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 7.10 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 356254 --El Torito VD version 1 found, boot catalog is in sector 281 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 112 274 -diff --git a/tests/isodata/ubuntu/ubuntu7.10/ubuntu-7.10-server-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu7.10/ubuntu-7.10-server-amd64.iso.txt -deleted file mode 100644 -index 5296354..0000000 ---- a/tests/isodata/ubuntu/ubuntu7.10/ubuntu-7.10-server-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu-Server 7.10 amd64 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 261452 --El Torito VD version 1 found, boot catalog is in sector 1461 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 5AE 1454 -diff --git a/tests/isodata/ubuntu/ubuntu7.10/ubuntu-7.10-server-i386.iso.txt b/tests/isodata/ubuntu/ubuntu7.10/ubuntu-7.10-server-i386.iso.txt -deleted file mode 100644 -index cf43e5a..0000000 ---- a/tests/isodata/ubuntu/ubuntu7.10/ubuntu-7.10-server-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu-Server 7.10 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 255889 --El Torito VD version 1 found, boot catalog is in sector 1480 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 5C1 1473 -diff --git a/tests/isodata/ubuntu/ubuntu7.10/ubuntu-7.10-server-sparc.iso.txt b/tests/isodata/ubuntu/ubuntu7.10/ubuntu-7.10-server-sparc.iso.txt -deleted file mode 100644 -index 2827cfb..0000000 ---- a/tests/isodata/ubuntu/ubuntu7.10/ubuntu-7.10-server-sparc.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu-Server 7.10 sparc --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 241750 --NO Joliet present --Rock Ridge signatures version 1 found -diff --git a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04-alternate-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04-alternate-amd64.iso.txt -deleted file mode 100644 -index 6542b88..0000000 ---- a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04-alternate-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 8.04 amd64 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 356352 --El Torito VD version 1 found, boot catalog is in sector 2081 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 81A 2074 -diff --git a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04-alternate-i386.iso.txt b/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04-alternate-i386.iso.txt -deleted file mode 100644 -index 3ebba05..0000000 ---- a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04-alternate-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 8.04 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 356916 --El Torito VD version 1 found, boot catalog is in sector 2152 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 861 2145 -diff --git a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04-desktop-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04-desktop-amd64.iso.txt -deleted file mode 100644 -index 11d8354..0000000 ---- a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04-desktop-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 8.04 amd64 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 357017 --El Torito VD version 1 found, boot catalog is in sector 158 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 97 151 -diff --git a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04-desktop-i386.iso.txt b/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04-desktop-i386.iso.txt -deleted file mode 100644 -index 6aff7da..0000000 ---- a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04-desktop-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 8.04 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 357949 --El Torito VD version 1 found, boot catalog is in sector 162 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 9B 155 -diff --git a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04-dvd-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04-dvd-amd64.iso.txt -deleted file mode 100644 -index 5f41044..0000000 ---- a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04-dvd-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 8.04 amd64 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1910203 --El Torito VD version 1 found, boot catalog is in sector 5175 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 1430 5168 -diff --git a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04-dvd-i386.iso.txt b/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04-dvd-i386.iso.txt -deleted file mode 100644 -index 319bdaf..0000000 ---- a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04-dvd-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 8.04 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1943205 --El Torito VD version 1 found, boot catalog is in sector 5222 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 145F 5215 -diff --git a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04-server-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04-server-amd64.iso.txt -deleted file mode 100644 -index 8f561ca..0000000 ---- a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04-server-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu-Server 8.04 amd64 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 274068 --El Torito VD version 1 found, boot catalog is in sector 1537 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 5FA 1530 -diff --git a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04-server-i386.iso.txt b/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04-server-i386.iso.txt -deleted file mode 100644 -index 424fef7..0000000 ---- a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04-server-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu-Server 8.04 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 268667 --El Torito VD version 1 found, boot catalog is in sector 1547 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 604 1540 -diff --git a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.1-alternate-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.1-alternate-amd64.iso.txt -deleted file mode 100644 -index 7b50895..0000000 ---- a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.1-alternate-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 8.04.1 amd64 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 357772 --El Torito VD version 1 found, boot catalog is in sector 2078 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 817 2071 -diff --git a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.1-alternate-i386.iso.txt b/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.1-alternate-i386.iso.txt -deleted file mode 100644 -index 0df0c79..0000000 ---- a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.1-alternate-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 8.04.1 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 357640 --El Torito VD version 1 found, boot catalog is in sector 2129 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 84A 2122 -diff --git a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.1-desktop-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.1-desktop-amd64.iso.txt -deleted file mode 100644 -index 268719e..0000000 ---- a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.1-desktop-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 8.04.1 amd64 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 354689 --El Torito VD version 1 found, boot catalog is in sector 158 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 97 151 -diff --git a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.1-desktop-i386.iso.txt b/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.1-desktop-i386.iso.txt -deleted file mode 100644 -index 78b42d3..0000000 ---- a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.1-desktop-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 8.04.1 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 355577 --El Torito VD version 1 found, boot catalog is in sector 162 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 9B 155 -diff --git a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.1-server-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.1-server-amd64.iso.txt -deleted file mode 100644 -index 64c1027..0000000 ---- a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.1-server-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu-Server 8.04.1 amd64 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 284790 --El Torito VD version 1 found, boot catalog is in sector 1547 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 604 1540 -diff --git a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.1-server-i386.iso.txt b/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.1-server-i386.iso.txt -deleted file mode 100644 -index 612db71..0000000 ---- a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.1-server-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu-Server 8.04.1 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: MKISOFS ISO 9660/HFS FILESYSTEM BUILDER & CDRECORD CD-R/DVD CREATOR (C) 1993 E.YOUNGDALE (C) 1997 J.PEARSON/J.SCHILLING --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 285509 --El Torito VD version 1 found, boot catalog is in sector 1557 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 60E 1550 -diff --git a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.2-alternate-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.2-alternate-amd64.iso.txt -deleted file mode 100644 -index ac531ab..0000000 ---- a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.2-alternate-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 8.04.2 amd64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 355195 --El Torito VD version 1 found, boot catalog is in sector 2061 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 806 2054 -diff --git a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.2-alternate-i386.iso.txt b/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.2-alternate-i386.iso.txt -deleted file mode 100644 -index 068ca8b..0000000 ---- a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.2-alternate-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 8.04.2 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 356172 --El Torito VD version 1 found, boot catalog is in sector 2112 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 839 2105 -diff --git a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.2-desktop-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.2-desktop-amd64.iso.txt -deleted file mode 100644 -index d93364a..0000000 ---- a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.2-desktop-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 8.04.2 amd64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 356497 --El Torito VD version 1 found, boot catalog is in sector 158 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 97 151 -diff --git a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.2-desktop-i386.iso.txt b/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.2-desktop-i386.iso.txt -deleted file mode 100644 -index 475d232..0000000 ---- a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.2-desktop-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 8.04.2 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 357358 --El Torito VD version 1 found, boot catalog is in sector 162 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 9B 155 -diff --git a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.2-server-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.2-server-amd64.iso.txt -deleted file mode 100644 -index c7a3cfc..0000000 ---- a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.2-server-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu-Server 8.04.2 amd64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 292281 --El Torito VD version 1 found, boot catalog is in sector 1549 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 606 1542 -diff --git a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.2-server-i386.iso.txt b/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.2-server-i386.iso.txt -deleted file mode 100644 -index c6da0f0..0000000 ---- a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.2-server-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu-Server 8.04.2 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 299011 --El Torito VD version 1 found, boot catalog is in sector 1562 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 613 1555 -diff --git a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.3-alternate-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.3-alternate-amd64.iso.txt -deleted file mode 100644 -index c4965df..0000000 ---- a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.3-alternate-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 8.04.3 amd64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 356498 --El Torito VD version 1 found, boot catalog is in sector 2061 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 806 2054 -diff --git a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.3-alternate-i386.iso.txt b/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.3-alternate-i386.iso.txt -deleted file mode 100644 -index 2c40c3f..0000000 ---- a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.3-alternate-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 8.04.3 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 358341 --El Torito VD version 1 found, boot catalog is in sector 2112 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 839 2105 -diff --git a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.3-desktop-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.3-desktop-amd64.iso.txt -deleted file mode 100644 -index 75b8517..0000000 ---- a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.3-desktop-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 8.04.3 amd64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 356662 --El Torito VD version 1 found, boot catalog is in sector 158 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 97 151 -diff --git a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.3-desktop-i386.iso.txt b/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.3-desktop-i386.iso.txt -deleted file mode 100644 -index 9d880d0..0000000 ---- a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.3-desktop-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 8.04.3 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 357539 --El Torito VD version 1 found, boot catalog is in sector 162 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 9B 155 -diff --git a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.3-server-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.3-server-amd64.iso.txt -deleted file mode 100644 -index 8049cdb..0000000 ---- a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.3-server-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu-Server 8.04.3 amd64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 298538 --El Torito VD version 1 found, boot catalog is in sector 1550 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 607 1543 -diff --git a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.3-server-i386.iso.txt b/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.3-server-i386.iso.txt -deleted file mode 100644 -index 9622abd..0000000 ---- a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.3-server-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu-Server 8.04.3 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 308226 --El Torito VD version 1 found, boot catalog is in sector 1564 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 615 1557 -diff --git a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.4-alternate-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.4-alternate-amd64.iso.txt -deleted file mode 100644 -index 121c1e2..0000000 ---- a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.4-alternate-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 8.04.4 amd64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 355677 --El Torito VD version 1 found, boot catalog is in sector 2061 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 806 2054 -diff --git a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.4-alternate-i386.iso.txt b/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.4-alternate-i386.iso.txt -deleted file mode 100644 -index dde0ff7..0000000 ---- a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.4-alternate-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 8.04.4 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 356955 --El Torito VD version 1 found, boot catalog is in sector 2112 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 839 2105 -diff --git a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.4-desktop-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.4-desktop-amd64.iso.txt -deleted file mode 100644 -index 95ab1af..0000000 ---- a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.4-desktop-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 8.04.4 amd64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 357203 --El Torito VD version 1 found, boot catalog is in sector 158 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 97 151 -diff --git a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.4-desktop-i386.iso.txt b/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.4-desktop-i386.iso.txt -deleted file mode 100644 -index 9a82506..0000000 ---- a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.4-desktop-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 8.04.4 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 358372 --El Torito VD version 1 found, boot catalog is in sector 162 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 9B 155 -diff --git a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.4-server-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.4-server-amd64.iso.txt -deleted file mode 100644 -index 195ab8e..0000000 ---- a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.4-server-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu-Server 8.04.4 amd64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 290052 --El Torito VD version 1 found, boot catalog is in sector 1547 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 604 1540 -diff --git a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.4-server-i386.iso.txt b/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.4-server-i386.iso.txt -deleted file mode 100644 -index 2e9977f..0000000 ---- a/tests/isodata/ubuntu/ubuntu8.04/ubuntu-8.04.4-server-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu-Server 8.04.4 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 290745 --El Torito VD version 1 found, boot catalog is in sector 1557 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 60E 1550 -diff --git a/tests/isodata/ubuntu/ubuntu8.10/ubuntu-8.10-alternate-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu8.10/ubuntu-8.10-alternate-amd64.iso.txt -deleted file mode 100644 -index 9a2310b..0000000 ---- a/tests/isodata/ubuntu/ubuntu8.10/ubuntu-8.10-alternate-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 8.10 amd64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 357326 --El Torito VD version 1 found, boot catalog is in sector 2234 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 8B2 2226 -diff --git a/tests/isodata/ubuntu/ubuntu8.10/ubuntu-8.10-alternate-i386.iso.txt b/tests/isodata/ubuntu/ubuntu8.10/ubuntu-8.10-alternate-i386.iso.txt -deleted file mode 100644 -index d26e427..0000000 ---- a/tests/isodata/ubuntu/ubuntu8.10/ubuntu-8.10-alternate-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 8.10 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 356769 --El Torito VD version 1 found, boot catalog is in sector 2291 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 8EB 2283 -diff --git a/tests/isodata/ubuntu/ubuntu8.10/ubuntu-8.10-desktop-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu8.10/ubuntu-8.10-desktop-amd64.iso.txt -deleted file mode 100644 -index fe01544..0000000 ---- a/tests/isodata/ubuntu/ubuntu8.10/ubuntu-8.10-desktop-amd64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 8.10 amd64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 357905 --El Torito VD version 1 found, boot catalog is in sector 149 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 8D 141 -diff --git a/tests/isodata/ubuntu/ubuntu8.10/ubuntu-8.10-desktop-i386.iso.txt b/tests/isodata/ubuntu/ubuntu8.10/ubuntu-8.10-desktop-i386.iso.txt -deleted file mode 100644 -index 8f0b291..0000000 ---- a/tests/isodata/ubuntu/ubuntu8.10/ubuntu-8.10-desktop-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 8.10 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 357796 --El Torito VD version 1 found, boot catalog is in sector 149 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 8D 141 -diff --git a/tests/isodata/ubuntu/ubuntu8.10/ubuntu-8.10-server-amd64.iso.txt b/tests/isodata/ubuntu/ubuntu8.10/ubuntu-8.10-server-amd64.iso.txt -deleted file mode 100644 -index 412988f..0000000 ---- a/tests/isodata/ubuntu/ubuntu8.10/ubuntu-8.10-server-amd64.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu-Server 8.10 amd64 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 334202 --El Torito VD version 1 found, boot catalog is in sector 1651 --Joliet with UCS level 3 found -diff --git a/tests/isodata/ubuntu/ubuntu9.04/ubuntu-9.04-desktop-i386.iso.txt b/tests/isodata/ubuntu/ubuntu9.04/ubuntu-9.04-desktop-i386.iso.txt -deleted file mode 100644 -index 23f5e99..0000000 ---- a/tests/isodata/ubuntu/ubuntu9.04/ubuntu-9.04-desktop-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu 9.04 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 357866 --El Torito VD version 1 found, boot catalog is in sector 145 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 89 137 -diff --git a/tests/isodata/ubuntu/ubuntu9.04/ubuntu-9.04-server-i386.iso.txt b/tests/isodata/ubuntu/ubuntu9.04/ubuntu-9.04-server-i386.iso.txt -deleted file mode 100644 -index 005da6d..0000000 ---- a/tests/isodata/ubuntu/ubuntu9.04/ubuntu-9.04-server-i386.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: LINUX --Volume id: Ubuntu-Server 9.04 i386 --Volume set id: --Publisher id: --Data preparer id: --Application id: GENISOIMAGE ISO 9660/HFS FILESYSTEM CREATOR (C) 1993 E.YOUNGDALE (C) 1997-2006 J.PEARSON/J.SCHILLING (C) 2006-2007 CDRKIT TEAM --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 295534 --El Torito VD version 1 found, boot catalog is in sector 1574 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 61E 1566 -diff --git a/tests/isodata/voidlinux/voidlinux/void-live-i686-20181111.iso.txt b/tests/isodata/voidlinux/voidlinux/void-live-i686-20181111.iso.txt -deleted file mode 100644 -index 1631f09..0000000 ---- a/tests/isodata/voidlinux/voidlinux/void-live-i686-20181111.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: VOID_LIVE --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.5.1 2018.09.16.150917, LIBISOBURN-1.5.1, LIBISOFS-1.5.1, LIBBURN-1.5.1 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 172032 --El Torito VD version 1 found, boot catalog is in sector 38 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 4027 16423 -diff --git a/tests/isodata/voidlinux/voidlinux/void-live-x86_64-20181111.iso.txt b/tests/isodata/voidlinux/voidlinux/void-live-x86_64-20181111.iso.txt -deleted file mode 100644 -index 111648c..0000000 ---- a/tests/isodata/voidlinux/voidlinux/void-live-x86_64-20181111.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: VOID_LIVE --Volume set id: --Publisher id: --Data preparer id: XORRISO-1.5.1 2018.09.16.150917, LIBISOBURN-1.5.1, LIBISOFS-1.5.1, LIBBURN-1.5.1 --Application id: --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 184320 --El Torito VD version 1 found, boot catalog is in sector 38 --Joliet with UCS level 3 found --Rock Ridge signatures version 1 found --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID '' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 4027 16423 -diff --git a/tests/isodata/windows/win10/14393.0.160715-1616.RS1_RELEASE_CLIENTENTERPRISE_S_EVAL_X64FRE_EN-US.ISO.txt b/tests/isodata/windows/win10/14393.0.160715-1616.RS1_RELEASE_CLIENTENTERPRISE_S_EVAL_X64FRE_EN-US.ISO.txt -deleted file mode 100644 -index ca9c035..0000000 ---- a/tests/isodata/windows/win10/14393.0.160715-1616.RS1_RELEASE_CLIENTENTERPRISE_S_EVAL_X64FRE_EN-US.ISO.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: CESE_X64FREE_EN-US_DV5 --Volume set id: CESE_X64FREE_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.56 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1746893 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 21B 539 -diff --git a/tests/isodata/windows/win10/14393.0.160715-1616.RS1_RELEASE_CLIENTENTERPRISE_S_EVAL_X86FRE_EN-GB.ISO.txt b/tests/isodata/windows/win10/14393.0.160715-1616.RS1_RELEASE_CLIENTENTERPRISE_S_EVAL_X86FRE_EN-GB.ISO.txt -deleted file mode 100644 -index 139c19f..0000000 ---- a/tests/isodata/windows/win10/14393.0.160715-1616.RS1_RELEASE_CLIENTENTERPRISE_S_EVAL_X86FRE_EN-GB.ISO.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: CESE_X86FREE_EN-GB_DV5 --Volume set id: CESE_X86FREE_EN-GB_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.56 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1288647 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 219 537 -diff --git a/tests/isodata/windows/win10/en_windows_10_education_n_version_1511_updated_apr_2016_x64_dvd_8705540.iso.txt b/tests/isodata/windows/win10/en_windows_10_education_n_version_1511_updated_apr_2016_x64_dvd_8705540.iso.txt -deleted file mode 100644 -index 195b3ce..0000000 ---- a/tests/isodata/windows/win10/en_windows_10_education_n_version_1511_updated_apr_2016_x64_dvd_8705540.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: J_CEDNA_X64FRE_EN-US_DV5 --Volume set id: J_CEDNA_X64FRE_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1980950 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 21D 541 -diff --git a/tests/isodata/windows/win10/en_windows_10_education_n_version_1607_updated_jul_2016_x86_dvd_9055560.iso.txt b/tests/isodata/windows/win10/en_windows_10_education_n_version_1607_updated_jul_2016_x86_dvd_9055560.iso.txt -deleted file mode 100644 -index edeb871..0000000 ---- a/tests/isodata/windows/win10/en_windows_10_education_n_version_1607_updated_jul_2016_x86_dvd_9055560.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: CEDNA_X86FRE_EN-US_DV5 --Volume set id: CEDNA_X86FRE_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.56 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1360327 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 219 537 -diff --git a/tests/isodata/windows/win10/en_windows_10_education_n_x64_dvd_6847236.iso.txt b/tests/isodata/windows/win10/en_windows_10_education_n_x64_dvd_6847236.iso.txt -deleted file mode 100644 -index 75011a8..0000000 ---- a/tests/isodata/windows/win10/en_windows_10_education_n_x64_dvd_6847236.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: J_CEDNA_X64FRE_EN-US_DV5 --Volume set id: J_CEDNA_X64FRE_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1849016 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 221 545 -diff --git a/tests/isodata/windows/win10/en_windows_10_education_x86_dvd_6848121.iso.txt b/tests/isodata/windows/win10/en_windows_10_education_x86_dvd_6848121.iso.txt -deleted file mode 100644 -index f9b0ce5..0000000 ---- a/tests/isodata/windows/win10/en_windows_10_education_x86_dvd_6848121.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: J_CEDA_X86FRE_EN-US_DV5 --Volume set id: J_CEDA_X86FRE_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1426630 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 222 546 -diff --git a/tests/isodata/windows/win10/en_windows_10_enterprise_2015_ltsb_n_x64_dvd_6848316.iso.txt b/tests/isodata/windows/win10/en_windows_10_enterprise_2015_ltsb_n_x64_dvd_6848316.iso.txt -deleted file mode 100644 -index d92828a..0000000 ---- a/tests/isodata/windows/win10/en_windows_10_enterprise_2015_ltsb_n_x64_dvd_6848316.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: J_CESNN_X64FREV_EN-US_DV5 --Volume set id: J_CESNN_X64FREV_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1742823 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 221 545 -diff --git a/tests/isodata/windows/win10/en_windows_10_enterprise_2015_ltsb_x64_dvd_6848446.iso.txt b/tests/isodata/windows/win10/en_windows_10_enterprise_2015_ltsb_x64_dvd_6848446.iso.txt -deleted file mode 100644 -index e096bd8..0000000 ---- a/tests/isodata/windows/win10/en_windows_10_enterprise_2015_ltsb_x64_dvd_6848446.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: J_CES_X64FREV_EN-US_DV5 --Volume set id: J_CES_X64FREV_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1802801 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 221 545 -diff --git a/tests/isodata/windows/win10/en_windows_10_enterprise_n_x64_dvd_6852541.iso.txt b/tests/isodata/windows/win10/en_windows_10_enterprise_n_x64_dvd_6852541.iso.txt -deleted file mode 100644 -index d884c5d..0000000 ---- a/tests/isodata/windows/win10/en_windows_10_enterprise_n_x64_dvd_6852541.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: J_CENNA_X64FREV_EN-US_DV5 --Volume set id: J_CENNA_X64FREV_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1849189 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 221 545 -diff --git a/tests/isodata/windows/win10/en_windows_10_enterprise_x64_dvd_6851151.iso.txt b/tests/isodata/windows/win10/en_windows_10_enterprise_x64_dvd_6851151.iso.txt -deleted file mode 100644 -index add60dd..0000000 ---- a/tests/isodata/windows/win10/en_windows_10_enterprise_x64_dvd_6851151.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: J_CENA_X64FREV_EN-US_DV5 --Volume set id: J_CENA_X64FREV_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1923455 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 221 545 -diff --git a/tests/isodata/windows/win10/en_windows_10_enterprise_x86_dvd_6851156.iso.txt b/tests/isodata/windows/win10/en_windows_10_enterprise_x86_dvd_6851156.iso.txt -deleted file mode 100644 -index eaeaf6b..0000000 ---- a/tests/isodata/windows/win10/en_windows_10_enterprise_x86_dvd_6851156.iso.txt -+++ /dev/null -@@ -1,30 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: J_CENA_X86FREV_EN-US_DV5 --Volume set id: J_CENA_X86FREV_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, --(425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1420691 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 222 546 -diff --git a/tests/isodata/windows/win10/en_windows_10_multi-edition_version_1709_updated_sept_2017_x64_dvd_100090817.iso.txt b/tests/isodata/windows/win10/en_windows_10_multi-edition_version_1709_updated_sept_2017_x64_dvd_100090817.iso.txt -deleted file mode 100644 -index 7c32993..0000000 ---- a/tests/isodata/windows/win10/en_windows_10_multi-edition_version_1709_updated_sept_2017_x64_dvd_100090817.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: CCCOMA_X64FRE_EN-US_DV9 --Volume set id: CCCOMA_X64FRE_EN-US_DV9 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.56 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2293634 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 20C 524 -diff --git a/tests/isodata/windows/win10/en_windows_10_multiple_editions_x64_dvd_6846432.iso.txt b/tests/isodata/windows/win10/en_windows_10_multiple_editions_x64_dvd_6846432.iso.txt -deleted file mode 100644 -index 000529b..0000000 ---- a/tests/isodata/windows/win10/en_windows_10_multiple_editions_x64_dvd_6846432.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: J_CCSA_X64FRE_EN-US_DV5 --Volume set id: J_CCSA_X64FRE_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1994069 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 221 545 -diff --git a/tests/isodata/windows/win10/en_windows_10_n_multiple_editions_version_1607_updated_jul_2016_x64_dvd_9053861.iso.txt b/tests/isodata/windows/win10/en_windows_10_n_multiple_editions_version_1607_updated_jul_2016_x64_dvd_9053861.iso.txt -deleted file mode 100644 -index 6b0a1b8..0000000 ---- a/tests/isodata/windows/win10/en_windows_10_n_multiple_editions_version_1607_updated_jul_2016_x64_dvd_9053861.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: CCSNA_X64FRE_EN-US_DV5 --Volume set id: CCSNA_X64FRE_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.56 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1858285 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 21B 539 -diff --git a/tests/isodata/windows/win10/en_windows_10_n_multiple_editions_x64_dvd_6846434.iso.txt b/tests/isodata/windows/win10/en_windows_10_n_multiple_editions_x64_dvd_6846434.iso.txt -deleted file mode 100644 -index b8b536d..0000000 ---- a/tests/isodata/windows/win10/en_windows_10_n_multiple_editions_x64_dvd_6846434.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: J_CCSNA_X64FRE_EN-US_DV5 --Volume set id: J_CCSNA_X64FRE_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1880567 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 221 545 -diff --git a/tests/isodata/windows/win10/fr_windows_10_enterprise_version_1607_updated_jul_2016_x86_dvd_9057460.iso.txt b/tests/isodata/windows/win10/fr_windows_10_enterprise_version_1607_updated_jul_2016_x86_dvd_9057460.iso.txt -deleted file mode 100644 -index 16a9122..0000000 ---- a/tests/isodata/windows/win10/fr_windows_10_enterprise_version_1607_updated_jul_2016_x86_dvd_9057460.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: CENA_X86FREV_FR-FR_DV5 --Volume set id: CENA_X86FREV_FR-FR_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.56 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1419355 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 219 537 -diff --git a/tests/isodata/windows/win2k/Win2000S-disk.iso.txt b/tests/isodata/windows/win2k/Win2000S-disk.iso.txt -deleted file mode 100644 -index 19851f3..0000000 ---- a/tests/isodata/windows/win2k/Win2000S-disk.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: WIN2000_EN --Volume set id: WIN2000_EN --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.46 (10/12/2000 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 249152 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 34C 844 -diff --git a/tests/isodata/windows/win2k12/en_microsoft_hyper-v_server_2012_debug_checked_build_x64_dvd_917521.iso.txt b/tests/isodata/windows/win2k12/en_microsoft_hyper-v_server_2012_debug_checked_build_x64_dvd_917521.iso.txt -deleted file mode 100644 -index 03e8742..0000000 ---- a/tests/isodata/windows/win2k12/en_microsoft_hyper-v_server_2012_debug_checked_build_x64_dvd_917521.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: HRM_SHV_X64CHK_EN-US_DV5 --Volume set id: HRM_SHV_X64CHK_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 886717 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 863 2147 -diff --git a/tests/isodata/windows/win2k12/en_microsoft_hyper-v_server_2012_x64_dvd_915600.iso.txt b/tests/isodata/windows/win2k12/en_microsoft_hyper-v_server_2012_x64_dvd_915600.iso.txt -deleted file mode 100644 -index 8fb48f4..0000000 ---- a/tests/isodata/windows/win2k12/en_microsoft_hyper-v_server_2012_x64_dvd_915600.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: HRM_SHV_X64FRE_EN-US_DV5 --Volume set id: HRM_SHV_X64FRE_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 867796 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 863 2147 -diff --git a/tests/isodata/windows/win2k12/en_server_install_disc_windows_server_2012_essentials_x64_dvd_1022281.iso.txt b/tests/isodata/windows/win2k12/en_server_install_disc_windows_server_2012_essentials_x64_dvd_1022281.iso.txt -deleted file mode 100644 -index bd6a0e2..0000000 ---- a/tests/isodata/windows/win2k12/en_server_install_disc_windows_server_2012_essentials_x64_dvd_1022281.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: HRM_SSSO_X64FRE_EN-US_DV5 --Volume set id: HRM_SSSO_X64FRE_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2106454 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 867 2151 -diff --git a/tests/isodata/windows/win2k12/en_windows_server_2012_debug_checked_build_x64_dvd_917505.iso.txt b/tests/isodata/windows/win2k12/en_windows_server_2012_debug_checked_build_x64_dvd_917505.iso.txt -deleted file mode 100644 -index 6da02e0..0000000 ---- a/tests/isodata/windows/win2k12/en_windows_server_2012_debug_checked_build_x64_dvd_917505.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: HRM_SSS_X64CHK_EN-US_DV5 --Volume set id: HRM_SSS_X64CHK_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1872030 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 863 2147 -diff --git a/tests/isodata/windows/win2k12/en_windows_server_2012_storage_server_and_foundation_x64_dvd_915793.iso.txt b/tests/isodata/windows/win2k12/en_windows_server_2012_storage_server_and_foundation_x64_dvd_915793.iso.txt -deleted file mode 100644 -index 1d4f25d..0000000 ---- a/tests/isodata/windows/win2k12/en_windows_server_2012_storage_server_and_foundation_x64_dvd_915793.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: HRM_SFST_X64FREO_EN-US_DV5 --Volume set id: HRM_SFST_X64FREO_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1741405 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 863 2147 -diff --git a/tests/isodata/windows/win2k12/en_windows_server_2012_vl_x64_dvd_917758.iso.txt b/tests/isodata/windows/win2k12/en_windows_server_2012_vl_x64_dvd_917758.iso.txt -deleted file mode 100644 -index 8d439c7..0000000 ---- a/tests/isodata/windows/win2k12/en_windows_server_2012_vl_x64_dvd_917758.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: HRM_SSS_X64FREV_EN-US_DV5 --Volume set id: HRM_SSS_X64FREV_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1803767 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 863 2147 -diff --git a/tests/isodata/windows/win2k12/en_windows_server_2012_x64_dvd_915478.iso.txt b/tests/isodata/windows/win2k12/en_windows_server_2012_x64_dvd_915478.iso.txt -deleted file mode 100644 -index e682bc5..0000000 ---- a/tests/isodata/windows/win2k12/en_windows_server_2012_x64_dvd_915478.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: HRM_SSS_X64FRE_EN-US_DV5 --Volume set id: HRM_SSS_X64FRE_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1804287 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 863 2147 -diff --git a/tests/isodata/windows/win2k12r2/en_microsoft_hyper-v_server_2012_r2_debug_checked_x64_dvd_2708216.iso.txt b/tests/isodata/windows/win2k12r2/en_microsoft_hyper-v_server_2012_r2_debug_checked_x64_dvd_2708216.iso.txt -deleted file mode 100644 -index 934e7ef..0000000 ---- a/tests/isodata/windows/win2k12r2/en_microsoft_hyper-v_server_2012_r2_debug_checked_x64_dvd_2708216.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IRM_SHV_X64CHK_EN-US_DV5 --Volume set id: IRM_SHV_X64CHK_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 940608 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 876 2166 -diff --git a/tests/isodata/windows/win2k12r2/en_microsoft_hyper-v_server_2012_r2_x64_dvd_2708236.iso.txt b/tests/isodata/windows/win2k12r2/en_microsoft_hyper-v_server_2012_r2_x64_dvd_2708236.iso.txt -deleted file mode 100644 -index 4ae6f79..0000000 ---- a/tests/isodata/windows/win2k12r2/en_microsoft_hyper-v_server_2012_r2_x64_dvd_2708236.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IRM_SHV_X64FRE_EN-US_DV5 --Volume set id: IRM_SHV_X64FRE_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 981556 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 876 2166 -diff --git a/tests/isodata/windows/win2k12r2/en_windows_server_2012_r2_debug_checked_x64_dvd_2707937.iso.txt b/tests/isodata/windows/win2k12r2/en_windows_server_2012_r2_debug_checked_x64_dvd_2707937.iso.txt -deleted file mode 100644 -index 76b9427..0000000 ---- a/tests/isodata/windows/win2k12r2/en_windows_server_2012_r2_debug_checked_x64_dvd_2707937.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IRM_SSS_X64CHK_EN-US_DV5 --Volume set id: IRM_SSS_X64CHK_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2077379 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 876 2166 -diff --git a/tests/isodata/windows/win2k12r2/en_windows_server_2012_r2_essentials_debug_checked_x64_dvd_2707170.iso.txt b/tests/isodata/windows/win2k12r2/en_windows_server_2012_r2_essentials_debug_checked_x64_dvd_2707170.iso.txt -deleted file mode 100644 -index d309efe..0000000 ---- a/tests/isodata/windows/win2k12r2/en_windows_server_2012_r2_essentials_debug_checked_x64_dvd_2707170.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IRM_SSSO_X64CHK_EN-US_DV5 --Volume set id: IRM_SSSO_X64CHK_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1950182 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 876 2166 -diff --git a/tests/isodata/windows/win2k12r2/en_windows_server_2012_r2_essentials_with_update_x64_dvd_6052824.iso.txt b/tests/isodata/windows/win2k12r2/en_windows_server_2012_r2_essentials_with_update_x64_dvd_6052824.iso.txt -deleted file mode 100644 -index 1a3a2bc..0000000 ---- a/tests/isodata/windows/win2k12r2/en_windows_server_2012_r2_essentials_with_update_x64_dvd_6052824.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IR5_SSSO_X64FRE_EN-US_DV9 --Volume set id: IR5_SSSO_X64FRE_EN-US_DV9 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2472408 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 876 2166 -diff --git a/tests/isodata/windows/win2k12r2/en_windows_server_2012_r2_essentials_x64_dvd_2707177.iso.txt b/tests/isodata/windows/win2k12r2/en_windows_server_2012_r2_essentials_x64_dvd_2707177.iso.txt -deleted file mode 100644 -index 49a1eca..0000000 ---- a/tests/isodata/windows/win2k12r2/en_windows_server_2012_r2_essentials_x64_dvd_2707177.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IRM_SSSO_X64FRE_EN-US_DV5 --Volume set id: IRM_SSSO_X64FRE_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1976914 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 876 2166 -diff --git a/tests/isodata/windows/win2k12r2/en_windows_server_2012_r2_vl_with_update_x64_dvd_6052766.iso.txt b/tests/isodata/windows/win2k12r2/en_windows_server_2012_r2_vl_with_update_x64_dvd_6052766.iso.txt -deleted file mode 100644 -index a361e3f..0000000 ---- a/tests/isodata/windows/win2k12r2/en_windows_server_2012_r2_vl_with_update_x64_dvd_6052766.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IR5_SSS_X64FREV_EN-US_DV9 --Volume set id: IR5_SSS_X64FREV_EN-US_DV9 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2636775 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 876 2166 -diff --git a/tests/isodata/windows/win2k12r2/en_windows_server_2012_r2_vl_x64_dvd_3319595.iso.txt b/tests/isodata/windows/win2k12r2/en_windows_server_2012_r2_vl_x64_dvd_3319595.iso.txt -deleted file mode 100644 -index 2e0c2eb..0000000 ---- a/tests/isodata/windows/win2k12r2/en_windows_server_2012_r2_vl_x64_dvd_3319595.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IR2_SSS_X64FREV_EN-US_DV5 --Volume set id: IR2_SSS_X64FREV_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2186310 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 876 2166 -diff --git a/tests/isodata/windows/win2k12r2/en_windows_server_2012_r2_with_update_x64_dvd_4065220.iso.txt b/tests/isodata/windows/win2k12r2/en_windows_server_2012_r2_with_update_x64_dvd_4065220.iso.txt -deleted file mode 100644 -index 717533d..0000000 ---- a/tests/isodata/windows/win2k12r2/en_windows_server_2012_r2_with_update_x64_dvd_4065220.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IR3_SSS_X64FRE_EN-US_DV9 --Volume set id: IR3_SSS_X64FRE_EN-US_DV9 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2218385 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 876 2166 -diff --git a/tests/isodata/windows/win2k12r2/en_windows_server_2012_r2_with_update_x64_dvd_6052708.iso.txt b/tests/isodata/windows/win2k12r2/en_windows_server_2012_r2_with_update_x64_dvd_6052708.iso.txt -deleted file mode 100644 -index a5da1bf..0000000 ---- a/tests/isodata/windows/win2k12r2/en_windows_server_2012_r2_with_update_x64_dvd_6052708.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IR5_SSS_X64FRE_EN-US_DV9 --Volume set id: IR5_SSS_X64FRE_EN-US_DV9 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2635688 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 876 2166 -diff --git a/tests/isodata/windows/win2k12r2/en_windows_server_2012_r2_x64_dvd_2707946.iso.txt b/tests/isodata/windows/win2k12r2/en_windows_server_2012_r2_x64_dvd_2707946.iso.txt -deleted file mode 100644 -index a38a1d8..0000000 ---- a/tests/isodata/windows/win2k12r2/en_windows_server_2012_r2_x64_dvd_2707946.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IRM_SSS_X64FRE_EN-US_DV5 --Volume set id: IRM_SSS_X64FRE_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2084280 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 876 2166 -diff --git a/tests/isodata/windows/win2k12r2/en_windows_storage_server_2012_r2_and_windows_server_2012_r2_foundation_x64_dvd_2708426.iso.txt b/tests/isodata/windows/win2k12r2/en_windows_storage_server_2012_r2_and_windows_server_2012_r2_foundation_x64_dvd_2708426.iso.txt -deleted file mode 100644 -index adff0f1..0000000 ---- a/tests/isodata/windows/win2k12r2/en_windows_storage_server_2012_r2_and_windows_server_2012_r2_foundation_x64_dvd_2708426.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IRM_SFST_X64FREO_EN-US_DV5 --Volume set id: IRM_SFST_X64FREO_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1976406 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 876 2166 -diff --git a/tests/isodata/windows/win2k16/14393.0.161119-1705.RS1_REFRESH_SERVERHYPERCORE_OEM_X64FRE_EN-US.ISO.txt b/tests/isodata/windows/win2k16/14393.0.161119-1705.RS1_REFRESH_SERVERHYPERCORE_OEM_X64FRE_EN-US.ISO.txt -deleted file mode 100644 -index 67b9ee3..0000000 ---- a/tests/isodata/windows/win2k16/14393.0.161119-1705.RS1_REFRESH_SERVERHYPERCORE_OEM_X64FRE_EN-US.ISO.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: SHV_X64FRE_EN-US_DV9 --Volume set id: SHV_X64FRE_EN-US_DV9 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.56 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1380217 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 227 551 -diff --git a/tests/isodata/windows/win2k16/en_windows_server_2016_x64_dvd_9718492.iso.txt b/tests/isodata/windows/win2k16/en_windows_server_2016_x64_dvd_9718492.iso.txt -deleted file mode 100644 -index a4e98ce..0000000 ---- a/tests/isodata/windows/win2k16/en_windows_server_2016_x64_dvd_9718492.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: SSS_X64FRE_EN-US_DV9 --Volume set id: SSS_X64FRE_EN-US_DV9 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.56 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2872706 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 233 563 -diff --git a/tests/isodata/windows/win2k3/en_windows_server_2003_enterprise_x64.iso.txt b/tests/isodata/windows/win2k3/en_windows_server_2003_enterprise_x64.iso.txt -deleted file mode 100644 -index 11b0067..0000000 ---- a/tests/isodata/windows/win2k3/en_windows_server_2003_enterprise_x64.iso.txt -+++ /dev/null -@@ -1,31 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: ARMEXFPP_EN --Volume set id: ARMEXFPP_EN --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.52 (03/09/2004 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 303956 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -- --No SUSP/Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Cksum 4C 49 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 103 259 -diff --git a/tests/isodata/windows/win2k3/en_windows_server_2003_sp2_ia64_cd.iso.txt b/tests/isodata/windows/win2k3/en_windows_server_2003_sp2_ia64_cd.iso.txt -deleted file mode 100644 -index aaf151f..0000000 ---- a/tests/isodata/windows/win2k3/en_windows_server_2003_sp2_ia64_cd.iso.txt -+++ /dev/null -@@ -1,17 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: CR0SPI2_EN --Volume set id: CR0SPI2_EN --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.52 (03/09/2004 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 294119 -- --Joliet with UCS level 3 found. --No SUSP/Rock Ridge present -diff --git a/tests/isodata/windows/win2k3/en_windows_server_2003_sp2_x64_cd.iso.txt b/tests/isodata/windows/win2k3/en_windows_server_2003_sp2_x64_cd.iso.txt -deleted file mode 100644 -index fedf924..0000000 ---- a/tests/isodata/windows/win2k3/en_windows_server_2003_sp2_x64_cd.iso.txt -+++ /dev/null -@@ -1,17 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: CR0SPX2_EN --Volume set id: CR0SPX2_EN --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.52 (03/09/2004 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 243199 --NO Joliet present -- --No SUSP/Rock Ridge present -diff --git a/tests/isodata/windows/win2k3/en_windows_server_2003_sp2_x86_cd.iso.txt b/tests/isodata/windows/win2k3/en_windows_server_2003_sp2_x86_cd.iso.txt -deleted file mode 100644 -index c324f3a..0000000 ---- a/tests/isodata/windows/win2k3/en_windows_server_2003_sp2_x86_cd.iso.txt -+++ /dev/null -@@ -1,17 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: CR0SP2_EN --Volume set id: CR0SP2_EN --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.52 (03/09/2004 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 267886 --NO Joliet present -- --No SUSP/Rock Ridge present -diff --git a/tests/isodata/windows/win2k3/en_windows_server_2003_standard.iso.txt b/tests/isodata/windows/win2k3/en_windows_server_2003_standard.iso.txt -deleted file mode 100644 -index dd56b2f..0000000 ---- a/tests/isodata/windows/win2k3/en_windows_server_2003_standard.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: NRMSFPP_EN --Volume set id: NRMSFPP_EN --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.47 (10/12/2000 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 277479 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff FB 251 -diff --git a/tests/isodata/windows/win2k3/en_windows_server_2003_standard_x64.iso.txt b/tests/isodata/windows/win2k3/en_windows_server_2003_standard_x64.iso.txt -deleted file mode 100644 -index f55aac1..0000000 ---- a/tests/isodata/windows/win2k3/en_windows_server_2003_standard_x64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: ARMSXFPP_EN --Volume set id: ARMSXFPP_EN --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.52 (03/09/2004 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 303268 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 102 258 -diff --git a/tests/isodata/windows/win2k3/en_windows_server_2003_with_sp1_enterprise.iso.txt b/tests/isodata/windows/win2k3/en_windows_server_2003_with_sp1_enterprise.iso.txt -deleted file mode 100644 -index cf5023e..0000000 ---- a/tests/isodata/windows/win2k3/en_windows_server_2003_with_sp1_enterprise.iso.txt -+++ /dev/null -@@ -1,31 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: ARMEFPP_EN --Volume set id: ARMEFPP_EN --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.52 (03/09/2004 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 290304 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -- --No SUSP/Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Cksum 4C 49 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff F7 247 -diff --git a/tests/isodata/windows/win2k3/en_windows_server_2003_with_sp1_standard.iso.txt b/tests/isodata/windows/win2k3/en_windows_server_2003_with_sp1_standard.iso.txt -deleted file mode 100644 -index 1c21141..0000000 ---- a/tests/isodata/windows/win2k3/en_windows_server_2003_with_sp1_standard.iso.txt -+++ /dev/null -@@ -1,31 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: ARMSFPP_EN --Volume set id: ARMSFPP_EN --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.52 (03/09/2004 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 289608 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -- --No SUSP/Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Cksum 4C 49 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff F7 247 -diff --git a/tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_enterprise_cd1.iso.txt b/tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_enterprise_cd1.iso.txt -deleted file mode 100644 -index 21e760c..0000000 ---- a/tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_enterprise_cd1.iso.txt -+++ /dev/null -@@ -1,31 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: BX2EFPP_EN --Volume set id: BX2EFPP_EN --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.52 (03/09/2004 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 293941 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -- --No SUSP/Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Cksum 4C 49 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff F8 248 -diff --git a/tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_enterprise_cd2.iso.txt b/tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_enterprise_cd2.iso.txt -deleted file mode 100644 -index 2b94d7d..0000000 ---- a/tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_enterprise_cd2.iso.txt -+++ /dev/null -@@ -1,17 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: BRMECD2FRE_EN --Volume set id: BRMECD2FRE_EN --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.52 (03/09/2004 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 61919 --NO Joliet present -- --No SUSP/Rock Ridge present -diff --git a/tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_enterprise_with_sp2_cd1_X13-05460.iso.txt b/tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_enterprise_with_sp2_cd1_X13-05460.iso.txt -deleted file mode 100644 -index ea76f9d..0000000 ---- a/tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_enterprise_with_sp2_cd1_X13-05460.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: CRMEFPP_EN --Volume set id: CRMEFPP_EN --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.52 (03/09/2004 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 304942 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff FB 251 -diff --git a/tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_enterprise_with_sp2_cd2_X13-68584.iso.txt b/tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_enterprise_with_sp2_cd2_X13-68584.iso.txt -deleted file mode 100644 -index bc542e4..0000000 ---- a/tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_enterprise_with_sp2_cd2_X13-68584.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: CR0ECD2_EN --Volume set id: CR0ECD2_EN --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.52 (03/09/2004 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 62163 --NO Joliet present --NO Rock Ridge present -diff --git a/tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_enterprise_x64_cd1.iso.txt b/tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_enterprise_x64_cd1.iso.txt -deleted file mode 100644 -index 1344e67..0000000 ---- a/tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_enterprise_x64_cd1.iso.txt -+++ /dev/null -@@ -1,31 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: BX2EXFPP_EN --Volume set id: BX2EXFPP_EN --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.52 (03/09/2004 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 317822 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -- --No SUSP/Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Cksum 4C 49 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 105 261 -diff --git a/tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_enterprise_x64_cd2.iso.txt b/tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_enterprise_x64_cd2.iso.txt -deleted file mode 100644 -index c6e4910..0000000 ---- a/tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_enterprise_x64_cd2.iso.txt -+++ /dev/null -@@ -1,17 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: BRMECD2XFRE_EN --Volume set id: BRMECD2XFRE_EN --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.52 (03/09/2004 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 85601 --NO Joliet present -- --No SUSP/Rock Ridge present -diff --git a/tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_enterprise_x64_with_sp2_cd1_X13-06188.iso.txt b/tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_enterprise_x64_with_sp2_cd1_X13-06188.iso.txt -deleted file mode 100644 -index 99fe605..0000000 ---- a/tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_enterprise_x64_with_sp2_cd1_X13-06188.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: CRMEXFPP_EN --Volume set id: CRMEXFPP_EN --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.52 (03/09/2004 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 319428 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 108 264 -diff --git a/tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_enterprise_x64_with_sp2_cd2_X13-68588.iso.txt b/tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_enterprise_x64_with_sp2_cd2_X13-68588.iso.txt -deleted file mode 100644 -index c5802b7..0000000 ---- a/tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_enterprise_x64_with_sp2_cd2_X13-68588.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: CR0ECD2X_EN --Volume set id: CR0ECD2X_EN --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.52 (03/09/2004 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 85522 --NO Joliet present --NO Rock Ridge present -diff --git a/tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_standard_cd1.iso.txt b/tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_standard_cd1.iso.txt -deleted file mode 100644 -index 42745ed..0000000 ---- a/tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_standard_cd1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: BX2SFPP_EN --Volume set id: BX2SFPP_EN --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.52 (03/09/2004 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 293244 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff F8 248 -diff --git a/tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_standard_cd2.iso.txt b/tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_standard_cd2.iso.txt -deleted file mode 100644 -index 8db0bb6..0000000 ---- a/tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_standard_cd2.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: BRMSCD2FRE_EN --Volume set id: BRMSCD2FRE_EN --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.52 (03/09/2004 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 61926 --NO Joliet present --NO Rock Ridge present -diff --git a/tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_standard_with_sp2_cd1_x13-04790.iso.txt b/tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_standard_with_sp2_cd1_x13-04790.iso.txt -deleted file mode 100644 -index 77dc27c..0000000 ---- a/tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_standard_with_sp2_cd1_x13-04790.iso.txt -+++ /dev/null -@@ -1,31 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: CRMSFPP_EN --Volume set id: CRMSFPP_EN --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.52 (03/09/2004 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 304236 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -- --No SUSP/Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Cksum 4C 49 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff FB 251 -diff --git a/tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_standard_with_sp2_cd2_x13-68583.iso.txt b/tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_standard_with_sp2_cd2_x13-68583.iso.txt -deleted file mode 100644 -index c2c9f1f..0000000 ---- a/tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_standard_with_sp2_cd2_x13-68583.iso.txt -+++ /dev/null -@@ -1,17 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: CR0SCD2_EN --Volume set id: CR0SCD2_EN --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.52 (03/09/2004 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 62360 --NO Joliet present -- --No SUSP/Rock Ridge present -diff --git a/tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_standard_x64_cd1.iso.txt b/tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_standard_x64_cd1.iso.txt -deleted file mode 100644 -index 9f5fb72..0000000 ---- a/tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_standard_x64_cd1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: BX2SXFPP_EN --Volume set id: BX2SXFPP_EN --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.52 (03/09/2004 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 317134 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 104 260 -diff --git a/tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_standard_x64_cd2.iso.txt b/tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_standard_x64_cd2.iso.txt -deleted file mode 100644 -index 5bfa8e5..0000000 ---- a/tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_standard_x64_cd2.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: BRMSCD2XFRE_EN --Volume set id: BRMSCD2XFRE_EN --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.52 (03/09/2004 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 85607 --NO Joliet present --NO Rock Ridge present -diff --git a/tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_standard_x64_with_sp2_cd1_x13-05757.iso.txt b/tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_standard_x64_with_sp2_cd1_x13-05757.iso.txt -deleted file mode 100644 -index b38e0e9..0000000 ---- a/tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_standard_x64_with_sp2_cd1_x13-05757.iso.txt -+++ /dev/null -@@ -1,31 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: CRMSXFPP_EN --Volume set id: CRMSXFPP_EN --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.52 (03/09/2004 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 318539 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -- --No SUSP/Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Cksum 4C 49 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 107 263 -diff --git a/tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_standard_x64_with_sp2_cd2_x13-68587.iso.txt b/tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_standard_x64_with_sp2_cd2_x13-68587.iso.txt -deleted file mode 100644 -index bae68ab..0000000 ---- a/tests/isodata/windows/win2k3r2/en_win_srv_2003_r2_standard_x64_with_sp2_cd2_x13-68587.iso.txt -+++ /dev/null -@@ -1,17 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: CR0SCD2X_EN --Volume set id: CR0SCD2X_EN --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.52 (03/09/2004 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 85529 --NO Joliet present -- --No SUSP/Rock Ridge present -diff --git a/tests/isodata/windows/win2k8/en_windows_server_2008_datacenter_enterprise_standard_sp2_checked_build_x64_dvd_342435.iso.txt b/tests/isodata/windows/win2k8/en_windows_server_2008_datacenter_enterprise_standard_sp2_checked_build_x64_dvd_342435.iso.txt -deleted file mode 100644 -index 6d29e29..0000000 ---- a/tests/isodata/windows/win2k8/en_windows_server_2008_datacenter_enterprise_standard_sp2_checked_build_x64_dvd_342435.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: KRTMSXCHK_EN_DVD --Volume set id: KRTMSXCHK_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1300919 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 344 836 -diff --git a/tests/isodata/windows/win2k8/en_windows_server_2008_datacenter_enterprise_standard_sp2_x64_dvd_342336.iso.txt b/tests/isodata/windows/win2k8/en_windows_server_2008_datacenter_enterprise_standard_sp2_x64_dvd_342336.iso.txt -deleted file mode 100644 -index ddf2156..0000000 ---- a/tests/isodata/windows/win2k8/en_windows_server_2008_datacenter_enterprise_standard_sp2_x64_dvd_342336.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: KRTMSXVOL_EN_DVD --Volume set id: KRTMSXVOL_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1345648 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 33F 831 -diff --git a/tests/isodata/windows/win2k8/en_windows_server_2008_datacenter_enterprise_standard_sp2_x86_dvd_342333.iso.txt b/tests/isodata/windows/win2k8/en_windows_server_2008_datacenter_enterprise_standard_sp2_x86_dvd_342333.iso.txt -deleted file mode 100644 -index 1c520b4..0000000 ---- a/tests/isodata/windows/win2k8/en_windows_server_2008_datacenter_enterprise_standard_sp2_x86_dvd_342333.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: KRTMSVOL_EN_DVD --Volume set id: KRTMSVOL_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 992309 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 33F 831 -diff --git a/tests/isodata/windows/win2k8/en_windows_server_2008_datacenter_enterprise_standard_x64_dvd_X14-26714.iso.txt b/tests/isodata/windows/win2k8/en_windows_server_2008_datacenter_enterprise_standard_x64_dvd_X14-26714.iso.txt -deleted file mode 100644 -index b14c359..0000000 ---- a/tests/isodata/windows/win2k8/en_windows_server_2008_datacenter_enterprise_standard_x64_dvd_X14-26714.iso.txt -+++ /dev/null -@@ -1,31 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: KRMSXVOL_EN_DVD --Volume set id: KRMSXVOL_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1301640 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present -- --No SUSP/Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Cksum 4C 49 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 33B 827 -diff --git a/tests/isodata/windows/win2k8/en_windows_server_2008_datacenter_enterprise_standard_x86_dvd_X14-26710.iso.txt b/tests/isodata/windows/win2k8/en_windows_server_2008_datacenter_enterprise_standard_x86_dvd_X14-26710.iso.txt -deleted file mode 100644 -index 1d9f613..0000000 ---- a/tests/isodata/windows/win2k8/en_windows_server_2008_datacenter_enterprise_standard_x86_dvd_X14-26710.iso.txt -+++ /dev/null -@@ -1,31 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: KRMSVOL_EN_DVD --Volume set id: KRMSVOL_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 918526 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present -- --No SUSP/Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Cksum 4C 49 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 33B 827 -diff --git a/tests/isodata/windows/win2k8/en_windows_server_2008_with_sp2_x64_dvd_342336.iso.txt b/tests/isodata/windows/win2k8/en_windows_server_2008_with_sp2_x64_dvd_342336.iso.txt -deleted file mode 100644 -index 44e4c95..0000000 ---- a/tests/isodata/windows/win2k8/en_windows_server_2008_with_sp2_x64_dvd_342336.iso.txt -+++ /dev/null -@@ -1,31 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: KRTMSXVOL_EN_DVD --Volume set id: KRTMSXVOL_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1345648 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present -- --No SUSP/Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Cksum 4C 49 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 33F 831 -diff --git a/tests/isodata/windows/win2k8/en_windows_server_2008_with_sp2_x86_dvd_342333.iso.txt b/tests/isodata/windows/win2k8/en_windows_server_2008_with_sp2_x86_dvd_342333.iso.txt -deleted file mode 100644 -index d37e6c1..0000000 ---- a/tests/isodata/windows/win2k8/en_windows_server_2008_with_sp2_x86_dvd_342333.iso.txt -+++ /dev/null -@@ -1,31 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: KRTMSVOL_EN_DVD --Volume set id: KRTMSVOL_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 992309 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present -- --No SUSP/Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Cksum 4C 49 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 33F 831 -diff --git a/tests/isodata/windows/win2k8/en_windows_web_server_2008_x64_dvd_X14-26683.iso.txt b/tests/isodata/windows/win2k8/en_windows_web_server_2008_x64_dvd_X14-26683.iso.txt -deleted file mode 100644 -index deed8ce..0000000 ---- a/tests/isodata/windows/win2k8/en_windows_web_server_2008_x64_dvd_X14-26683.iso.txt -+++ /dev/null -@@ -1,31 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: KRMWXVOL_EN_DVD --Volume set id: KRMWXVOL_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1097357 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present -- --No SUSP/Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Cksum 4C 49 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 33A 826 -diff --git a/tests/isodata/windows/win2k8/en_windows_web_server_2008_x86_dvd_X14-26678.iso.txt b/tests/isodata/windows/win2k8/en_windows_web_server_2008_x86_dvd_X14-26678.iso.txt -deleted file mode 100644 -index 17054ed..0000000 ---- a/tests/isodata/windows/win2k8/en_windows_web_server_2008_x86_dvd_X14-26678.iso.txt -+++ /dev/null -@@ -1,31 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: KRMWVOL_EN_DVD --Volume set id: KRMWVOL_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 815736 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present -- --No SUSP/Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Cksum 4C 49 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 33A 826 -diff --git a/tests/isodata/windows/win2k8r2/cz_windows_server_2008_r2_st_ent_dc_web_retail_x64_X15-50363.img.txt b/tests/isodata/windows/win2k8r2/cz_windows_server_2008_r2_st_ent_dc_web_retail_x64_X15-50363.img.txt -deleted file mode 100644 -index 974eb11..0000000 ---- a/tests/isodata/windows/win2k8r2/cz_windows_server_2008_r2_st_ent_dc_web_retail_x64_X15-50363.img.txt -+++ /dev/null -@@ -1,31 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GRMSXFRER_CS_DVD --Volume set id: GRMSXFRER_CS_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1508350 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present -- --No SUSP/Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Cksum 4C 49 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 3E4 996 -diff --git a/tests/isodata/windows/win2k8r2/en_windows_server_2008_r2_hpc_edition_with_service_pack_1_x64_dvd_700562.iso.txt b/tests/isodata/windows/win2k8r2/en_windows_server_2008_r2_hpc_edition_with_service_pack_1_x64_dvd_700562.iso.txt -deleted file mode 100644 -index 7d446f5..0000000 ---- a/tests/isodata/windows/win2k8r2/en_windows_server_2008_r2_hpc_edition_with_service_pack_1_x64_dvd_700562.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GRMSHXVOL_EN_DVD --Volume set id: GRMSHXVOL_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1416446 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 3E4 996 -diff --git a/tests/isodata/windows/win2k8r2/en_windows_server_2008_r2_hpc_x64_dvd_552761.iso.txt b/tests/isodata/windows/win2k8r2/en_windows_server_2008_r2_hpc_x64_dvd_552761.iso.txt -deleted file mode 100644 -index f72095b..0000000 ---- a/tests/isodata/windows/win2k8r2/en_windows_server_2008_r2_hpc_x64_dvd_552761.iso.txt -+++ /dev/null -@@ -1,31 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: SRVHPCR2_EN_VL --Volume set id: SRVHPCR2_EN_VL --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.52 (03/09/2004 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1358757 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present -- --No SUSP/Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Cksum 4C 49 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 3E4 996 -diff --git a/tests/isodata/windows/win2k8r2/en_windows_server_2008_r2_standard_enterprise_datacenter_and_web_with_sp1_x64_dvd_617601.iso.txt b/tests/isodata/windows/win2k8r2/en_windows_server_2008_r2_standard_enterprise_datacenter_and_web_with_sp1_x64_dvd_617601.iso.txt -deleted file mode 100644 -index 81c330d..0000000 ---- a/tests/isodata/windows/win2k8r2/en_windows_server_2008_r2_standard_enterprise_datacenter_and_web_with_sp1_x64_dvd_617601.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GRMSXFRER_EN_DVD --Volume set id: GRMSXFRER_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1546184 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 3E4 996 -diff --git a/tests/isodata/windows/win2k8r2/en_windows_server_2008_r2_standard_enterprise_datacenter_and_web_x64_dvd_x15-59754.iso.txt b/tests/isodata/windows/win2k8r2/en_windows_server_2008_r2_standard_enterprise_datacenter_and_web_x64_dvd_x15-59754.iso.txt -deleted file mode 100644 -index 56c9790..0000000 ---- a/tests/isodata/windows/win2k8r2/en_windows_server_2008_r2_standard_enterprise_datacenter_and_web_x64_dvd_x15-59754.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GRMSXVOL_EN_DVD --Volume set id: GRMSXVOL_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1463281 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 3E4 996 -diff --git a/tests/isodata/windows/win2k8r2/en_windows_server_2008_r2_standard_enterprise_datacenter_web_retail_build_x64_dvd_x15-50365.iso.txt b/tests/isodata/windows/win2k8r2/en_windows_server_2008_r2_standard_enterprise_datacenter_web_retail_build_x64_dvd_x15-50365.iso.txt -deleted file mode 100644 -index 11f9192..0000000 ---- a/tests/isodata/windows/win2k8r2/en_windows_server_2008_r2_standard_enterprise_datacenter_web_retail_build_x64_dvd_x15-50365.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GRMSXFRER_EN_DVD --Volume set id: GRMSXFRER_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1463273 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 3E4 996 -diff --git a/tests/isodata/windows/win2k8r2/en_windows_server_2008_r2_with_sp1_for_itanium_based_systems_ia64_dvd_617558.iso.txt b/tests/isodata/windows/win2k8r2/en_windows_server_2008_r2_with_sp1_for_itanium_based_systems_ia64_dvd_617558.iso.txt -deleted file mode 100644 -index 7523604..0000000 ---- a/tests/isodata/windows/win2k8r2/en_windows_server_2008_r2_with_sp1_for_itanium_based_systems_ia64_dvd_617558.iso.txt -+++ /dev/null -@@ -1,31 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GRMSIAIVOL_EN_DVD --Volume set id: GRMSIAIVOL_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1286236 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present -- --No SUSP/Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 239 (Unknown Arch) -- ID 'Microsoft Corporation' -- Cksum 4C 5A OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 1 -- Bootoff 3D6 982 -diff --git a/tests/isodata/windows/win2k8r2/en_windows_server_2008_r2_with_sp1_x64_dvd_617601.iso.txt b/tests/isodata/windows/win2k8r2/en_windows_server_2008_r2_with_sp1_x64_dvd_617601.iso.txt -deleted file mode 100644 -index 215231c..0000000 ---- a/tests/isodata/windows/win2k8r2/en_windows_server_2008_r2_with_sp1_x64_dvd_617601.iso.txt -+++ /dev/null -@@ -1,31 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GRMSXFRER_EN_DVD --Volume set id: GRMSXFRER_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1546184 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present -- --No SUSP/Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Cksum 4C 49 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 3E4 996 -diff --git a/tests/isodata/windows/win2k8r2/en_windows_server_2008_r2_x64_dvd_x15-50365.iso.txt b/tests/isodata/windows/win2k8r2/en_windows_server_2008_r2_x64_dvd_x15-50365.iso.txt -deleted file mode 100644 -index 11f9192..0000000 ---- a/tests/isodata/windows/win2k8r2/en_windows_server_2008_r2_x64_dvd_x15-50365.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GRMSXFRER_EN_DVD --Volume set id: GRMSXFRER_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1463273 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 3E4 996 -diff --git a/tests/isodata/windows/win2k8r2/eng_windows_server_2008_r2_st_ent_dc_web_retail_x64_X15-50365.img.txt b/tests/isodata/windows/win2k8r2/eng_windows_server_2008_r2_st_ent_dc_web_retail_x64_X15-50365.img.txt -deleted file mode 100644 -index 75e7b4f..0000000 ---- a/tests/isodata/windows/win2k8r2/eng_windows_server_2008_r2_st_ent_dc_web_retail_x64_X15-50365.img.txt -+++ /dev/null -@@ -1,31 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GRMSXFRER_EN_DVD --Volume set id: GRMSXFRER_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1463273 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present -- --No SUSP/Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Cksum 4C 49 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 3E4 996 -diff --git a/tests/isodata/windows/win7/Win7ProX86.iso.txt b/tests/isodata/windows/win7/Win7ProX86.iso.txt -deleted file mode 100644 -index 5e6999f..0000000 ---- a/tests/isodata/windows/win7/Win7ProX86.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GRMCPRFREO_NL_DVD --Volume set id: GRMCPRFREO_NL_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1167144 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 2DF 735 -diff --git a/tests/isodata/windows/win7/cs_windows_7_professional_with_sp1_x64_dvd_u_676956.iso.lng b/tests/isodata/windows/win7/cs_windows_7_professional_with_sp1_x64_dvd_u_676956.iso.lng -deleted file mode 100644 -index 6051601..0000000 ---- a/tests/isodata/windows/win7/cs_windows_7_professional_with_sp1_x64_dvd_u_676956.iso.lng -+++ /dev/null -@@ -1,2 +0,0 @@ --[general] --l10n-language=cs_CZ -diff --git a/tests/isodata/windows/win7/cs_windows_7_professional_with_sp1_x64_dvd_u_676956.iso.txt b/tests/isodata/windows/win7/cs_windows_7_professional_with_sp1_x64_dvd_u_676956.iso.txt -deleted file mode 100644 -index 71548e8..0000000 ---- a/tests/isodata/windows/win7/cs_windows_7_professional_with_sp1_x64_dvd_u_676956.iso.txt -+++ /dev/null -@@ -1,31 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GSP1RMCPRXFRER_CS_DVD --Volume set id: GSP1RMCPRXFRER_CS_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1559664 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present -- --No SUSP/Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Cksum 4C 49 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 2DE 734 -diff --git a/tests/isodata/windows/win7/cs_windows_7_professional_with_sp1_x86_dvd_u_677077.iso.lng b/tests/isodata/windows/win7/cs_windows_7_professional_with_sp1_x86_dvd_u_677077.iso.lng -deleted file mode 100644 -index 6051601..0000000 ---- a/tests/isodata/windows/win7/cs_windows_7_professional_with_sp1_x86_dvd_u_677077.iso.lng -+++ /dev/null -@@ -1,2 +0,0 @@ --[general] --l10n-language=cs_CZ -diff --git a/tests/isodata/windows/win7/cs_windows_7_professional_with_sp1_x86_dvd_u_677077.iso.txt b/tests/isodata/windows/win7/cs_windows_7_professional_with_sp1_x86_dvd_u_677077.iso.txt -deleted file mode 100644 -index 639a169..0000000 ---- a/tests/isodata/windows/win7/cs_windows_7_professional_with_sp1_x86_dvd_u_677077.iso.txt -+++ /dev/null -@@ -1,31 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GSP1RMCPRFRER_CS_DVD --Volume set id: GSP1RMCPRFRER_CS_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1189084 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present -- --No SUSP/Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Cksum 4C 49 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 2DF 735 -diff --git a/tests/isodata/windows/win7/en_windows_7_debug_checked_build_dvd_x64_398741.iso.txt b/tests/isodata/windows/win7/en_windows_7_debug_checked_build_dvd_x64_398741.iso.txt -deleted file mode 100644 -index d9852aa..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_debug_checked_build_dvd_x64_398741.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GRMCXCHK_EN_DVD --Volume set id: GRMCXCHK_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1543824 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 2E2 738 -diff --git a/tests/isodata/windows/win7/en_windows_7_debug_checked_build_dvd_x86_398742.iso.txt b/tests/isodata/windows/win7/en_windows_7_debug_checked_build_dvd_x86_398742.iso.txt -deleted file mode 100644 -index 04a5825..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_debug_checked_build_dvd_x86_398742.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GRMCCHK_EN_DVD --Volume set id: GRMCCHK_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1189413 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 2E3 739 -diff --git a/tests/isodata/windows/win7/en_windows_7_enterprise_n_with_sp1_x64_dvd_u_677704.iso.lng b/tests/isodata/windows/win7/en_windows_7_enterprise_n_with_sp1_x64_dvd_u_677704.iso.lng -deleted file mode 100644 -index e46008a..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_enterprise_n_with_sp1_x64_dvd_u_677704.iso.lng -+++ /dev/null -@@ -1,2 +0,0 @@ --[general] --l10n-language=en_US -diff --git a/tests/isodata/windows/win7/en_windows_7_enterprise_n_with_sp1_x64_dvd_u_677704.iso.txt b/tests/isodata/windows/win7/en_windows_7_enterprise_n_with_sp1_x64_dvd_u_677704.iso.txt -deleted file mode 100644 -index 9f8097c..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_enterprise_n_with_sp1_x64_dvd_u_677704.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GSP1RMCNENXVOL_EN_DVD --Volume set id: GSP1RMCNENXVOL_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1049368 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 2DF 735 -diff --git a/tests/isodata/windows/win7/en_windows_7_enterprise_n_with_sp1_x86_dvd_u_677703.iso.txt b/tests/isodata/windows/win7/en_windows_7_enterprise_n_with_sp1_x86_dvd_u_677703.iso.txt -deleted file mode 100644 -index 6671578..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_enterprise_n_with_sp1_x86_dvd_u_677703.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GSP1RMCNENVOL_EN_DVD --Volume set id: GSP1RMCNENVOL_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1049368 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 2DF 735 -diff --git a/tests/isodata/windows/win7/en_windows_7_enterprise_n_x64_dvd_x16-11943.iso.lng b/tests/isodata/windows/win7/en_windows_7_enterprise_n_x64_dvd_x16-11943.iso.lng -deleted file mode 100644 -index e46008a..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_enterprise_n_x64_dvd_x16-11943.iso.lng -+++ /dev/null -@@ -1,2 +0,0 @@ --[general] --l10n-language=en_US -diff --git a/tests/isodata/windows/win7/en_windows_7_enterprise_n_x64_dvd_x16-11943.iso.txt b/tests/isodata/windows/win7/en_windows_7_enterprise_n_x64_dvd_x16-11943.iso.txt -deleted file mode 100644 -index 677f473..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_enterprise_n_x64_dvd_x16-11943.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GRMCNENXVOL_EN_DVD --Volume set id: GRMCNENXVOL_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1369076 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 2DE 734 -diff --git a/tests/isodata/windows/win7/en_windows_7_enterprise_n_x86_dvd_x16-11935.iso.lng b/tests/isodata/windows/win7/en_windows_7_enterprise_n_x86_dvd_x16-11935.iso.lng -deleted file mode 100644 -index e46008a..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_enterprise_n_x86_dvd_x16-11935.iso.lng -+++ /dev/null -@@ -1,2 +0,0 @@ --[general] --l10n-language=en_US -diff --git a/tests/isodata/windows/win7/en_windows_7_enterprise_n_x86_dvd_x16-11935.iso.txt b/tests/isodata/windows/win7/en_windows_7_enterprise_n_x86_dvd_x16-11935.iso.txt -deleted file mode 100644 -index 91bb435..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_enterprise_n_x86_dvd_x16-11935.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GRMCNENVOL_EN_DVD --Volume set id: GRMCNENVOL_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1039189 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 2DF 735 -diff --git a/tests/isodata/windows/win7/en_windows_7_enterprise_with_sp1_x64_dvd_u_677651.iso.txt b/tests/isodata/windows/win7/en_windows_7_enterprise_with_sp1_x64_dvd_u_677651.iso.txt -deleted file mode 100644 -index f0ebfb0..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_enterprise_with_sp1_x64_dvd_u_677651.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GSP1RMCENXVOL_EN_DVD --Volume set id: GSP1RMCENXVOL_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1554006 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 2DE 734 -diff --git a/tests/isodata/windows/win7/en_windows_7_enterprise_with_sp1_x86_dvd_u_677710.iso.txt b/tests/isodata/windows/win7/en_windows_7_enterprise_with_sp1_x86_dvd_u_677710.iso.txt -deleted file mode 100644 -index 7243fad..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_enterprise_with_sp1_x86_dvd_u_677710.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GSP1RMCENVOL_EN_DVD --Volume set id: GSP1RMCENVOL_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1188722 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 2DF 735 -diff --git a/tests/isodata/windows/win7/en_windows_7_enterprise_x64_dvd_x15-70749.iso.lng b/tests/isodata/windows/win7/en_windows_7_enterprise_x64_dvd_x15-70749.iso.lng -deleted file mode 100644 -index e46008a..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_enterprise_x64_dvd_x15-70749.iso.lng -+++ /dev/null -@@ -1,2 +0,0 @@ --[general] --l10n-language=en_US -diff --git a/tests/isodata/windows/win7/en_windows_7_enterprise_x64_dvd_x15-70749.iso.txt b/tests/isodata/windows/win7/en_windows_7_enterprise_x64_dvd_x15-70749.iso.txt -deleted file mode 100644 -index d088cdf..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_enterprise_x64_dvd_x15-70749.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GRMCENXVOL_EN_DVD --Volume set id: GRMCENXVOL_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1524031 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 2DE 734 -diff --git a/tests/isodata/windows/win7/en_windows_7_enterprise_x86_dvd_x15-70745.iso.lng b/tests/isodata/windows/win7/en_windows_7_enterprise_x86_dvd_x15-70745.iso.lng -deleted file mode 100644 -index e46008a..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_enterprise_x86_dvd_x15-70745.iso.lng -+++ /dev/null -@@ -1,2 +0,0 @@ --[general] --l10n-language=en_US -diff --git a/tests/isodata/windows/win7/en_windows_7_enterprise_x86_dvd_x15-70745.iso.txt b/tests/isodata/windows/win7/en_windows_7_enterprise_x86_dvd_x15-70745.iso.txt -deleted file mode 100644 -index 5b4f3ef..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_enterprise_x86_dvd_x15-70745.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GRMCENVOL_EN_DVD --Volume set id: GRMCENVOL_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1172071 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 2DF 735 -diff --git a/tests/isodata/windows/win7/en_windows_7_home_basic_with_sp1_x86_dvd_u_676470.iso.txt b/tests/isodata/windows/win7/en_windows_7_home_basic_with_sp1_x86_dvd_u_676470.iso.txt -deleted file mode 100644 -index 65fa647..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_home_basic_with_sp1_x86_dvd_u_676470.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GSP1RMCHBFRER_EN_DVD --Volume set id: GSP1RMCHBFRER_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1252186 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 2DF 735 -diff --git a/tests/isodata/windows/win7/en_windows_7_home_basic_x86_dvd_x15-65654.iso.txt b/tests/isodata/windows/win7/en_windows_7_home_basic_x86_dvd_x15-65654.iso.txt -deleted file mode 100644 -index 1e000e3..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_home_basic_x86_dvd_x15-65654.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GRMCHBFRER_EN_DVD --Volume set id: GRMCHBFRER_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1221628 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 2DF 735 -diff --git a/tests/isodata/windows/win7/en_windows_7_home_premium_n_with_sp1_x64_dvd_u_676825.iso.txt b/tests/isodata/windows/win7/en_windows_7_home_premium_n_with_sp1_x64_dvd_u_676825.iso.txt -deleted file mode 100644 -index 1838b04..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_home_premium_n_with_sp1_x64_dvd_u_676825.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GSP1RMCNHPXFRER_EN_DVD --Volume set id: GSP1RMCNHPXFRER_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1452418 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 2DE 734 -diff --git a/tests/isodata/windows/win7/en_windows_7_home_premium_n_with_sp1_x86_dvd_u_676913.iso.txt b/tests/isodata/windows/win7/en_windows_7_home_premium_n_with_sp1_x86_dvd_u_676913.iso.txt -deleted file mode 100644 -index c24f2a9..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_home_premium_n_with_sp1_x86_dvd_u_676913.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GSP1RMCNHPFRER_EN_DVD --Volume set id: GSP1RMCNHPFRER_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1108598 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 2DF 735 -diff --git a/tests/isodata/windows/win7/en_windows_7_home_premium_n_x64_dvd_x16-13459.iso.txt b/tests/isodata/windows/win7/en_windows_7_home_premium_n_x64_dvd_x16-13459.iso.txt -deleted file mode 100644 -index b8b4b27..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_home_premium_n_x64_dvd_x16-13459.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GRMCNHPXFRER_EN_DVD --Volume set id: GRMCNHPXFRER_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1420193 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 2DE 734 -diff --git a/tests/isodata/windows/win7/en_windows_7_home_premium_n_x86_dvd_x16-13457.iso.txt b/tests/isodata/windows/win7/en_windows_7_home_premium_n_x86_dvd_x16-13457.iso.txt -deleted file mode 100644 -index 6fcda6f..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_home_premium_n_x86_dvd_x16-13457.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GRMCNHPFRER_EN_DVD --Volume set id: GRMCNHPFRER_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1088204 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 2DF 735 -diff --git a/tests/isodata/windows/win7/en_windows_7_home_premium_with_sp1_x64_dvd_u_676549.iso.txt b/tests/isodata/windows/win7/en_windows_7_home_premium_with_sp1_x64_dvd_u_676549.iso.txt -deleted file mode 100644 -index 8a2a16f..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_home_premium_with_sp1_x64_dvd_u_676549.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GSP1RMCHPXFRER_EN_DVD --Volume set id: GSP1RMCHPXFRER_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1621535 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 2DE 734 -diff --git a/tests/isodata/windows/win7/en_windows_7_home_premium_with_sp1_x86_dvd_u_676701.iso.txt b/tests/isodata/windows/win7/en_windows_7_home_premium_with_sp1_x86_dvd_u_676701.iso.txt -deleted file mode 100644 -index a5fd5f4..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_home_premium_with_sp1_x86_dvd_u_676701.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GSP1RMCHPFRER_EN_DVD --Volume set id: GSP1RMCHPFRER_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1252186 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 2DF 735 -diff --git a/tests/isodata/windows/win7/en_windows_7_home_premium_x64_dvd_x15-65733.iso.txt b/tests/isodata/windows/win7/en_windows_7_home_premium_x64_dvd_x15-65733.iso.txt -deleted file mode 100644 -index 1f35e80..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_home_premium_x64_dvd_x15-65733.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GRMCHPXFRER_EN_DVD --Volume set id: GRMCHPXFRER_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1574554 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 2DE 734 -diff --git a/tests/isodata/windows/win7/en_windows_7_home_premium_x86_dvd_x15-65732.iso.txt b/tests/isodata/windows/win7/en_windows_7_home_premium_x86_dvd_x15-65732.iso.txt -deleted file mode 100644 -index ed8aaf0..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_home_premium_x86_dvd_x15-65732.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GRMCHPFRER_EN_DVD --Volume set id: GRMCHPFRER_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1221628 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 2DF 735 -diff --git a/tests/isodata/windows/win7/en_windows_7_professional_n_with_sp1_x64_dvd_u_677207.iso.txt b/tests/isodata/windows/win7/en_windows_7_professional_n_with_sp1_x64_dvd_u_677207.iso.txt -deleted file mode 100644 -index 438d4d5..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_professional_n_with_sp1_x64_dvd_u_677207.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GSP1RMCNPRXFRER_EN_DVD --Volume set id: GSP1RMCNPRXFRER_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1452418 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 2DE 734 -diff --git a/tests/isodata/windows/win7/en_windows_7_professional_n_with_sp1_x86_dvd_u_677328.iso.lng b/tests/isodata/windows/win7/en_windows_7_professional_n_with_sp1_x86_dvd_u_677328.iso.lng -deleted file mode 100644 -index e46008a..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_professional_n_with_sp1_x86_dvd_u_677328.iso.lng -+++ /dev/null -@@ -1,2 +0,0 @@ --[general] --l10n-language=en_US -diff --git a/tests/isodata/windows/win7/en_windows_7_professional_n_with_sp1_x86_dvd_u_677328.iso.txt b/tests/isodata/windows/win7/en_windows_7_professional_n_with_sp1_x86_dvd_u_677328.iso.txt -deleted file mode 100644 -index ce9100f..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_professional_n_with_sp1_x86_dvd_u_677328.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GSP1RMCNPRFRER_EN_DVD --Volume set id: GSP1RMCNPRFRER_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1108598 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 2DF 735 -diff --git a/tests/isodata/windows/win7/en_windows_7_professional_n_x64_dvd_x16-13550.iso.txt b/tests/isodata/windows/win7/en_windows_7_professional_n_x64_dvd_x16-13550.iso.txt -deleted file mode 100644 -index 2d92088..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_professional_n_x64_dvd_x16-13550.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GRMCNPRXFRER_EN_DVD --Volume set id: GRMCNPRXFRER_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1420193 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 2DE 734 -diff --git a/tests/isodata/windows/win7/en_windows_7_professional_n_x86_dvd_x16-13548.iso.txt b/tests/isodata/windows/win7/en_windows_7_professional_n_x86_dvd_x16-13548.iso.txt -deleted file mode 100644 -index 38cf354..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_professional_n_x86_dvd_x16-13548.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GRMCNPRFRER_EN_DVD --Volume set id: GRMCNPRFRER_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1088204 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 2DF 735 -diff --git a/tests/isodata/windows/win7/en_windows_7_professional_vl_build_x64_dvd_x15-71037.iso.txt b/tests/isodata/windows/win7/en_windows_7_professional_vl_build_x64_dvd_x15-71037.iso.txt -deleted file mode 100644 -index cf39a8f..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_professional_vl_build_x64_dvd_x15-71037.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GRMCPRXVOL_EN_DVD --Volume set id: GRMCPRXVOL_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1523954 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 2DE 734 -diff --git a/tests/isodata/windows/win7/en_windows_7_professional_vl_build_x86_dvd_x15-71033.iso.txt b/tests/isodata/windows/win7/en_windows_7_professional_vl_build_x86_dvd_x15-71033.iso.txt -deleted file mode 100644 -index 1be0c47..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_professional_vl_build_x86_dvd_x15-71033.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GRMCPRVOL_EN_DVD --Volume set id: GRMCPRVOL_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1171992 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 2DF 735 -diff --git a/tests/isodata/windows/win7/en_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677791.iso.txt b/tests/isodata/windows/win7/en_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677791.iso.txt -deleted file mode 100644 -index 8b6e3eb..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677791.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GSP1RMCPRXVOL_EN_DVD --Volume set id: GSP1RMCPRXVOL_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1554220 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 2DE 734 -diff --git a/tests/isodata/windows/win7/en_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677896.iso.txt b/tests/isodata/windows/win7/en_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677896.iso.txt -deleted file mode 100644 -index 5079d7f..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677896.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GSP1RMCPRVOL_EN_DVD --Volume set id: GSP1RMCPRVOL_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1188753 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 2DF 735 -diff --git a/tests/isodata/windows/win7/en_windows_7_professional_with_sp1_x64_dvd_u_676939.iso.lng b/tests/isodata/windows/win7/en_windows_7_professional_with_sp1_x64_dvd_u_676939.iso.lng -deleted file mode 100644 -index e46008a..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_professional_with_sp1_x64_dvd_u_676939.iso.lng -+++ /dev/null -@@ -1,2 +0,0 @@ --[general] --l10n-language=en_US -diff --git a/tests/isodata/windows/win7/en_windows_7_professional_with_sp1_x64_dvd_u_676939.iso.txt b/tests/isodata/windows/win7/en_windows_7_professional_with_sp1_x64_dvd_u_676939.iso.txt -deleted file mode 100644 -index 3721d48..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_professional_with_sp1_x64_dvd_u_676939.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GSP1RMCPRXFRER_EN_DVD --Volume set id: GSP1RMCPRXFRER_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1621535 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 2DE 734 -diff --git a/tests/isodata/windows/win7/en_windows_7_professional_with_sp1_x86_dvd_u_677056.iso.lng b/tests/isodata/windows/win7/en_windows_7_professional_with_sp1_x86_dvd_u_677056.iso.lng -deleted file mode 100644 -index e46008a..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_professional_with_sp1_x86_dvd_u_677056.iso.lng -+++ /dev/null -@@ -1,2 +0,0 @@ --[general] --l10n-language=en_US -diff --git a/tests/isodata/windows/win7/en_windows_7_professional_with_sp1_x86_dvd_u_677056.iso.txt b/tests/isodata/windows/win7/en_windows_7_professional_with_sp1_x86_dvd_u_677056.iso.txt -deleted file mode 100644 -index a7e1782..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_professional_with_sp1_x86_dvd_u_677056.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GSP1RMCPRFRER_EN_DVD --Volume set id: GSP1RMCPRFRER_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1252186 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 2DF 735 -diff --git a/tests/isodata/windows/win7/en_windows_7_professional_x86_dvd_x15-65804.iso.txt b/tests/isodata/windows/win7/en_windows_7_professional_x86_dvd_x15-65804.iso.txt -deleted file mode 100644 -index 5e8cfaa..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_professional_x86_dvd_x15-65804.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GRMCPRFRER_EN_DVD --Volume set id: GRMCPRFRER_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1221628 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 2DF 735 -diff --git a/tests/isodata/windows/win7/en_windows_7_starter_n_with_sp1_x86_dvd_u_678339.iso.txt b/tests/isodata/windows/win7/en_windows_7_starter_n_with_sp1_x86_dvd_u_678339.iso.txt -deleted file mode 100644 -index 4deea6e..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_starter_n_with_sp1_x86_dvd_u_678339.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GSP1RMCNSTFREO_EN_DVD --Volume set id: GSP1RMCNSTFREO_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1108598 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 2DF 735 -diff --git a/tests/isodata/windows/win7/en_windows_7_starter_n_x86_dvd_x16-15928.iso.txt b/tests/isodata/windows/win7/en_windows_7_starter_n_x86_dvd_x16-15928.iso.txt -deleted file mode 100644 -index d4d58f8..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_starter_n_x86_dvd_x16-15928.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GRMCNSTFREO_EN_DVD --Volume set id: GRMCNSTFREO_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1088204 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 2DF 735 -diff --git a/tests/isodata/windows/win7/en_windows_7_starter_with_sp1_x86_dvd_u_678562.iso.txt b/tests/isodata/windows/win7/en_windows_7_starter_with_sp1_x86_dvd_u_678562.iso.txt -deleted file mode 100644 -index 1786c99..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_starter_with_sp1_x86_dvd_u_678562.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GSP1RMCSTFREO_EN_DVD --Volume set id: GSP1RMCSTFREO_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1252186 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 2DF 735 -diff --git a/tests/isodata/windows/win7/en_windows_7_starter_x86_dvd_x15-68956.iso.txt b/tests/isodata/windows/win7/en_windows_7_starter_x86_dvd_x15-68956.iso.txt -deleted file mode 100644 -index 72a176a..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_starter_x86_dvd_x15-68956.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GRMCSTFREO_EN_DVD --Volume set id: GRMCSTFREO_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1221628 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 2DF 735 -diff --git a/tests/isodata/windows/win7/en_windows_7_ultimate_n_with_sp1_x64_dvd_u_677543.iso.txt b/tests/isodata/windows/win7/en_windows_7_ultimate_n_with_sp1_x64_dvd_u_677543.iso.txt -deleted file mode 100644 -index be0338e..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_ultimate_n_with_sp1_x64_dvd_u_677543.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GSP1RMCNULXFRER_EN_DVD --Volume set id: GSP1RMCNULXFRER_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1452418 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 2DE 734 -diff --git a/tests/isodata/windows/win7/en_windows_7_ultimate_n_with_sp1_x86_dvd_u_677597.iso.lng b/tests/isodata/windows/win7/en_windows_7_ultimate_n_with_sp1_x86_dvd_u_677597.iso.lng -deleted file mode 100644 -index e46008a..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_ultimate_n_with_sp1_x86_dvd_u_677597.iso.lng -+++ /dev/null -@@ -1,2 +0,0 @@ --[general] --l10n-language=en_US -diff --git a/tests/isodata/windows/win7/en_windows_7_ultimate_n_with_sp1_x86_dvd_u_677597.iso.txt b/tests/isodata/windows/win7/en_windows_7_ultimate_n_with_sp1_x86_dvd_u_677597.iso.txt -deleted file mode 100644 -index ecb5e6f..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_ultimate_n_with_sp1_x86_dvd_u_677597.iso.txt -+++ /dev/null -@@ -1,30 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GSP1RMCNULFRER_EN_DVD --Volume set id: GSP1RMCNULFRER_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, --(425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1108598 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 2DF 735 -diff --git a/tests/isodata/windows/win7/en_windows_7_ultimate_n_x64_dvd_x16-13641.iso.txt b/tests/isodata/windows/win7/en_windows_7_ultimate_n_x64_dvd_x16-13641.iso.txt -deleted file mode 100644 -index fafea58..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_ultimate_n_x64_dvd_x16-13641.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GRMCNULXFRER_EN_DVD --Volume set id: GRMCNULXFRER_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1420193 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 2DE 734 -diff --git a/tests/isodata/windows/win7/en_windows_7_ultimate_n_x86_dvd_x16-13640.iso.txt b/tests/isodata/windows/win7/en_windows_7_ultimate_n_x86_dvd_x16-13640.iso.txt -deleted file mode 100644 -index cb98a99..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_ultimate_n_x86_dvd_x16-13640.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GRMCNULFRER_EN_DVD --Volume set id: GRMCNULFRER_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1088204 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 2DF 735 -diff --git a/tests/isodata/windows/win7/en_windows_7_ultimate_with_sp1_x64_dvd_u_677332.iso.txt b/tests/isodata/windows/win7/en_windows_7_ultimate_with_sp1_x64_dvd_u_677332.iso.txt -deleted file mode 100644 -index 18313a1..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_ultimate_with_sp1_x64_dvd_u_677332.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GSP1RMCULXFRER_EN_DVD --Volume set id: GSP1RMCULXFRER_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1621535 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 2DE 734 -diff --git a/tests/isodata/windows/win7/en_windows_7_ultimate_with_sp1_x86_dvd_u_677460.iso.txt b/tests/isodata/windows/win7/en_windows_7_ultimate_with_sp1_x86_dvd_u_677460.iso.txt -deleted file mode 100644 -index e4537ee..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_ultimate_with_sp1_x86_dvd_u_677460.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GSP1RMCULFRER_EN_DVD --Volume set id: GSP1RMCULFRER_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1252186 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 2DF 735 -diff --git a/tests/isodata/windows/win7/en_windows_7_ultimate_x64_dvd_unknown.iso.txt b/tests/isodata/windows/win7/en_windows_7_ultimate_x64_dvd_unknown.iso.txt -deleted file mode 100644 -index fafea58..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_ultimate_x64_dvd_unknown.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GRMCNULXFRER_EN_DVD --Volume set id: GRMCNULXFRER_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1420193 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 2DE 734 -diff --git a/tests/isodata/windows/win7/en_windows_7_ultimate_x64_dvd_unknown.lng b/tests/isodata/windows/win7/en_windows_7_ultimate_x64_dvd_unknown.lng -deleted file mode 100644 -index e46008a..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_ultimate_x64_dvd_unknown.lng -+++ /dev/null -@@ -1,2 +0,0 @@ --[general] --l10n-language=en_US -diff --git a/tests/isodata/windows/win7/en_windows_7_ultimate_x64_dvd_x15-65922.iso.lng b/tests/isodata/windows/win7/en_windows_7_ultimate_x64_dvd_x15-65922.iso.lng -deleted file mode 100644 -index e46008a..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_ultimate_x64_dvd_x15-65922.iso.lng -+++ /dev/null -@@ -1,2 +0,0 @@ --[general] --l10n-language=en_US -diff --git a/tests/isodata/windows/win7/en_windows_7_ultimate_x64_dvd_x15-65922.iso.txt b/tests/isodata/windows/win7/en_windows_7_ultimate_x64_dvd_x15-65922.iso.txt -deleted file mode 100644 -index 1513e18..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_ultimate_x64_dvd_x15-65922.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GRMCULXFRER_EN_DVD --Volume set id: GRMCULXFRER_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1574554 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 2DE 734 -diff --git a/tests/isodata/windows/win7/en_windows_7_ultimate_x86_dvd_unknown.iso.txt b/tests/isodata/windows/win7/en_windows_7_ultimate_x86_dvd_unknown.iso.txt -deleted file mode 100644 -index cb98a99..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_ultimate_x86_dvd_unknown.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GRMCNULFRER_EN_DVD --Volume set id: GRMCNULFRER_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1088204 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 2DF 735 -diff --git a/tests/isodata/windows/win7/en_windows_7_ultimate_x86_dvd_unknown.lng b/tests/isodata/windows/win7/en_windows_7_ultimate_x86_dvd_unknown.lng -deleted file mode 100644 -index e46008a..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_ultimate_x86_dvd_unknown.lng -+++ /dev/null -@@ -1,2 +0,0 @@ --[general] --l10n-language=en_US -diff --git a/tests/isodata/windows/win7/en_windows_7_ultimate_x86_dvd_x15-65921.iso.lng b/tests/isodata/windows/win7/en_windows_7_ultimate_x86_dvd_x15-65921.iso.lng -deleted file mode 100644 -index e46008a..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_ultimate_x86_dvd_x15-65921.iso.lng -+++ /dev/null -@@ -1,2 +0,0 @@ --[general] --l10n-language=en_US -diff --git a/tests/isodata/windows/win7/en_windows_7_ultimate_x86_dvd_x15-65921.iso.txt b/tests/isodata/windows/win7/en_windows_7_ultimate_x86_dvd_x15-65921.iso.txt -deleted file mode 100644 -index 1f7de44..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_ultimate_x86_dvd_x15-65921.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GRMCULFRER_EN_DVD --Volume set id: GRMCULFRER_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1221628 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 2DF 735 -diff --git a/tests/isodata/windows/win7/en_windows_7_with_sp1_debug_checked_build_x64_dvd_619601.iso.txt b/tests/isodata/windows/win7/en_windows_7_with_sp1_debug_checked_build_x64_dvd_619601.iso.txt -deleted file mode 100644 -index 79e8cb7..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_with_sp1_debug_checked_build_x64_dvd_619601.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GRMCXCHK_EN_DVD --Volume set id: GRMCXCHK_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1549490 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 2E2 738 -diff --git a/tests/isodata/windows/win7/en_windows_7_with_sp1_debug_checked_build_x86_dvd_619602.iso.txt b/tests/isodata/windows/win7/en_windows_7_with_sp1_debug_checked_build_x86_dvd_619602.iso.txt -deleted file mode 100644 -index b661d5d..0000000 ---- a/tests/isodata/windows/win7/en_windows_7_with_sp1_debug_checked_build_x86_dvd_619602.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GRMCCHK_EN_DVD --Volume set id: GRMCCHK_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1193100 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 2E3 739 -diff --git a/tests/isodata/windows/win7/fi_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677808.iso.lng b/tests/isodata/windows/win7/fi_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677808.iso.lng -deleted file mode 100644 -index 6d482fb..0000000 ---- a/tests/isodata/windows/win7/fi_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677808.iso.lng -+++ /dev/null -@@ -1,2 +0,0 @@ --[general] --l10n-language=fi_FI -diff --git a/tests/isodata/windows/win7/fi_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677808.iso.txt b/tests/isodata/windows/win7/fi_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677808.iso.txt -deleted file mode 100644 -index 2d9faad..0000000 ---- a/tests/isodata/windows/win7/fi_windows_7_professional_with_sp1_vl_build_x64_dvd_u_677808.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GSP1RMCPRXVOL_FI_DVD --Volume set id: GSP1RMCPRXVOL_FI_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1489070 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 2DE 734 -diff --git a/tests/isodata/windows/win7/fi_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677759.iso.lng b/tests/isodata/windows/win7/fi_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677759.iso.lng -deleted file mode 100644 -index 6d482fb..0000000 ---- a/tests/isodata/windows/win7/fi_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677759.iso.lng -+++ /dev/null -@@ -1,2 +0,0 @@ --[general] --l10n-language=fi_FI -diff --git a/tests/isodata/windows/win7/fi_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677759.iso.txt b/tests/isodata/windows/win7/fi_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677759.iso.txt -deleted file mode 100644 -index 3977b48..0000000 ---- a/tests/isodata/windows/win7/fi_windows_7_professional_with_sp1_vl_build_x86_dvd_u_677759.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GSP1RMCPRVOL_FI_DVD --Volume set id: GSP1RMCPRVOL_FI_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1122105 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 2DF 735 -diff --git a/tests/isodata/windows/win7/fr_windows_7_home_premium_n_with_sp1_x64_dvd_u_676833.iso.lng b/tests/isodata/windows/win7/fr_windows_7_home_premium_n_with_sp1_x64_dvd_u_676833.iso.lng -deleted file mode 100644 -index e4519a7..0000000 ---- a/tests/isodata/windows/win7/fr_windows_7_home_premium_n_with_sp1_x64_dvd_u_676833.iso.lng -+++ /dev/null -@@ -1,2 +0,0 @@ --[general] --l10n-language=fr_FR -diff --git a/tests/isodata/windows/win7/fr_windows_7_home_premium_n_with_sp1_x64_dvd_u_676833.iso.txt b/tests/isodata/windows/win7/fr_windows_7_home_premium_n_with_sp1_x64_dvd_u_676833.iso.txt -deleted file mode 100644 -index 0ec47c2..0000000 ---- a/tests/isodata/windows/win7/fr_windows_7_home_premium_n_with_sp1_x64_dvd_u_676833.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GSP1RMCNHPXFRER_FR_DVD --Volume set id: GSP1RMCNHPXFRER_FR_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1418569 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 2DE 734 -diff --git a/tests/isodata/windows/win7/ru_windows_7_enterprise_with_sp1_x64_dvd_u_677671.iso.lng b/tests/isodata/windows/win7/ru_windows_7_enterprise_with_sp1_x64_dvd_u_677671.iso.lng -deleted file mode 100644 -index 08940d5..0000000 ---- a/tests/isodata/windows/win7/ru_windows_7_enterprise_with_sp1_x64_dvd_u_677671.iso.lng -+++ /dev/null -@@ -1,2 +0,0 @@ --[general] --l10n-language=ru_RU -diff --git a/tests/isodata/windows/win7/ru_windows_7_enterprise_with_sp1_x64_dvd_u_677671.iso.txt b/tests/isodata/windows/win7/ru_windows_7_enterprise_with_sp1_x64_dvd_u_677671.iso.txt -deleted file mode 100644 -index ef15f99..0000000 ---- a/tests/isodata/windows/win7/ru_windows_7_enterprise_with_sp1_x64_dvd_u_677671.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GSP1RMCENXVOL_RU_DVD --Volume set id: GSP1RMCENXVOL_RU_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1501031 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 2DE 734 -diff --git a/tests/isodata/windows/win7/ru_windows_7_ultimate_with_sp1_x86_dvd_u_677463.iso.lng b/tests/isodata/windows/win7/ru_windows_7_ultimate_with_sp1_x86_dvd_u_677463.iso.lng -deleted file mode 100644 -index 08940d5..0000000 ---- a/tests/isodata/windows/win7/ru_windows_7_ultimate_with_sp1_x86_dvd_u_677463.iso.lng -+++ /dev/null -@@ -1,2 +0,0 @@ --[general] --l10n-language=ru_RU -diff --git a/tests/isodata/windows/win7/ru_windows_7_ultimate_with_sp1_x86_dvd_u_677463.iso.txt b/tests/isodata/windows/win7/ru_windows_7_ultimate_with_sp1_x86_dvd_u_677463.iso.txt -deleted file mode 100644 -index f817b0d..0000000 ---- a/tests/isodata/windows/win7/ru_windows_7_ultimate_with_sp1_x86_dvd_u_677463.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GSP1RMCULFRER_RU_DVD --Volume set id: GSP1RMCULFRER_RU_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1207023 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 2DF 735 -diff --git a/tests/isodata/windows/win8.1/en-gb_windows_8.1_enterprise_with_update_x86_dvd_4050369.iso.txt b/tests/isodata/windows/win8.1/en-gb_windows_8.1_enterprise_with_update_x86_dvd_4050369.iso.txt -deleted file mode 100644 -index 5dddfc3..0000000 ---- a/tests/isodata/windows/win8.1/en-gb_windows_8.1_enterprise_with_update_x86_dvd_4050369.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IR3_CENA_X86FREV_EN-GB_DV9 --Volume set id: IR3_CENA_X86FREV_EN-GB_DV9 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1439762 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 5B4 1460 -diff --git a/tests/isodata/windows/win8.1/en-gb_windows_8_1_enterprise_n_x64_dvd_2971847.iso.txt b/tests/isodata/windows/win8.1/en-gb_windows_8_1_enterprise_n_x64_dvd_2971847.iso.txt -deleted file mode 100644 -index b217bde..0000000 ---- a/tests/isodata/windows/win8.1/en-gb_windows_8_1_enterprise_n_x64_dvd_2971847.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IR1_CENNA_X64FREV_EN-GB_DV5 --Volume set id: IR1_CENNA_X64FREV_EN-GB_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1812292 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 86A 2154 -diff --git a/tests/isodata/windows/win8.1/en-gb_windows_8_1_enterprise_n_x86_dvd_2971852.iso.txt b/tests/isodata/windows/win8.1/en-gb_windows_8_1_enterprise_n_x86_dvd_2971852.iso.txt -deleted file mode 100644 -index 04fd490..0000000 ---- a/tests/isodata/windows/win8.1/en-gb_windows_8_1_enterprise_n_x86_dvd_2971852.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IR1_CENNA_X86FREV_EN-GB_DV5 --Volume set id: IR1_CENNA_X86FREV_EN-GB_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1369589 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 5B4 1460 -diff --git a/tests/isodata/windows/win8.1/en-gb_windows_8_1_enterprise_x64_dvd_2971910.iso.txt b/tests/isodata/windows/win8.1/en-gb_windows_8_1_enterprise_x64_dvd_2971910.iso.txt -deleted file mode 100644 -index 5130b2e..0000000 ---- a/tests/isodata/windows/win8.1/en-gb_windows_8_1_enterprise_x64_dvd_2971910.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IR1_CENA_X64FREV_EN-GB_DV5 --Volume set id: IR1_CENA_X64FREV_EN-GB_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1884892 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 86A 2154 -diff --git a/tests/isodata/windows/win8.1/en-gb_windows_8_1_enterprise_x86_dvd_2972291.iso.txt b/tests/isodata/windows/win8.1/en-gb_windows_8_1_enterprise_x86_dvd_2972291.iso.txt -deleted file mode 100644 -index 6504185..0000000 ---- a/tests/isodata/windows/win8.1/en-gb_windows_8_1_enterprise_x86_dvd_2972291.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IR1_CENA_X86FREV_EN-GB_DV5 --Volume set id: IR1_CENA_X86FREV_EN-GB_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1419097 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 5B4 1460 -diff --git a/tests/isodata/windows/win8.1/en-gb_windows_8_1_n_x64_dvd_2707898.iso.txt b/tests/isodata/windows/win8.1/en-gb_windows_8_1_n_x64_dvd_2707898.iso.txt -deleted file mode 100644 -index 2b46cdd..0000000 ---- a/tests/isodata/windows/win8.1/en-gb_windows_8_1_n_x64_dvd_2707898.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IRM_CCSNA_X64FRE_EN-GB_DV5 --Volume set id: IRM_CCSNA_X64FRE_EN-GB_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1813111 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 86A 2154 -diff --git a/tests/isodata/windows/win8.1/en-gb_windows_8_1_n_x86_dvd_2707897.iso.txt b/tests/isodata/windows/win8.1/en-gb_windows_8_1_n_x86_dvd_2707897.iso.txt -deleted file mode 100644 -index a91fb78..0000000 ---- a/tests/isodata/windows/win8.1/en-gb_windows_8_1_n_x86_dvd_2707897.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IRM_CCSNA_X86FRE_EN-GB_DV5 --Volume set id: IRM_CCSNA_X86FRE_EN-GB_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1355762 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 5B4 1460 -diff --git a/tests/isodata/windows/win8.1/en-gb_windows_8_1_pro_n_vl_x64_dvd_2971976.iso.txt b/tests/isodata/windows/win8.1/en-gb_windows_8_1_pro_n_vl_x64_dvd_2971976.iso.txt -deleted file mode 100644 -index 112be95..0000000 ---- a/tests/isodata/windows/win8.1/en-gb_windows_8_1_pro_n_vl_x64_dvd_2971976.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IR1_CPRNA_X64FREV_EN-GB_DV5 --Volume set id: IR1_CPRNA_X64FREV_EN-GB_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1809980 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 86A 2154 -diff --git a/tests/isodata/windows/win8.1/en-gb_windows_8_1_pro_n_vl_x86_dvd_2972710.iso.txt b/tests/isodata/windows/win8.1/en-gb_windows_8_1_pro_n_vl_x86_dvd_2972710.iso.txt -deleted file mode 100644 -index e0e0fb4..0000000 ---- a/tests/isodata/windows/win8.1/en-gb_windows_8_1_pro_n_vl_x86_dvd_2972710.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IR1_CPRNA_X86FREV_EN-GB_DV5 --Volume set id: IR1_CPRNA_X86FREV_EN-GB_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1368708 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 5B4 1460 -diff --git a/tests/isodata/windows/win8.1/en-gb_windows_8_1_pro_vl_x64_dvd_2971955.iso.txt b/tests/isodata/windows/win8.1/en-gb_windows_8_1_pro_vl_x64_dvd_2971955.iso.txt -deleted file mode 100644 -index c6510c6..0000000 ---- a/tests/isodata/windows/win8.1/en-gb_windows_8_1_pro_vl_x64_dvd_2971955.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IR1_CPRA_X64FREV_EN-GB_DV5 --Volume set id: IR1_CPRA_X64FREV_EN-GB_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1882827 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 86A 2154 -diff --git a/tests/isodata/windows/win8.1/en-gb_windows_8_1_pro_vl_x86_dvd_2972634.iso.txt b/tests/isodata/windows/win8.1/en-gb_windows_8_1_pro_vl_x86_dvd_2972634.iso.txt -deleted file mode 100644 -index 0ae0dd3..0000000 ---- a/tests/isodata/windows/win8.1/en-gb_windows_8_1_pro_vl_x86_dvd_2972634.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IR1_CPRA_X86FREV_EN-GB_DV5 --Volume set id: IR1_CPRA_X86FREV_EN-GB_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1417857 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 5B4 1460 -diff --git a/tests/isodata/windows/win8.1/en-gb_windows_8_1_x64_dvd_2707421.iso.txt b/tests/isodata/windows/win8.1/en-gb_windows_8_1_x64_dvd_2707421.iso.txt -deleted file mode 100644 -index 9e5680c..0000000 ---- a/tests/isodata/windows/win8.1/en-gb_windows_8_1_x64_dvd_2707421.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IRM_CCSA_X64FRE_EN-GB_DV5 --Volume set id: IRM_CCSA_X64FRE_EN-GB_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1906311 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 86A 2154 -diff --git a/tests/isodata/windows/win8.1/en-gb_windows_8_1_x86_dvd_2707543.iso.txt b/tests/isodata/windows/win8.1/en-gb_windows_8_1_x86_dvd_2707543.iso.txt -deleted file mode 100644 -index 03775bd..0000000 ---- a/tests/isodata/windows/win8.1/en-gb_windows_8_1_x86_dvd_2707543.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IRM_CCSA_X86FRE_EN-GB_DV5 --Volume set id: IRM_CCSA_X86FRE_EN-GB_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1425756 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 5B4 1460 -diff --git a/tests/isodata/windows/win8.1/en_windows_8.1_enterprise_n_with_update_x64_dvd_4065163.iso.txt b/tests/isodata/windows/win8.1/en_windows_8.1_enterprise_n_with_update_x64_dvd_4065163.iso.txt -deleted file mode 100644 -index c18c734..0000000 ---- a/tests/isodata/windows/win8.1/en_windows_8.1_enterprise_n_with_update_x64_dvd_4065163.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IR3_CENNA_X64FREV_EN-US_DV9 --Volume set id: IR3_CENNA_X64FREV_EN-US_DV9 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1848910 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 86A 2154 -diff --git a/tests/isodata/windows/win8.1/en_windows_8.1_enterprise_n_with_update_x64_dvd_6050225.iso.txt b/tests/isodata/windows/win8.1/en_windows_8.1_enterprise_n_with_update_x64_dvd_6050225.iso.txt -deleted file mode 100644 -index 4ee3585..0000000 ---- a/tests/isodata/windows/win8.1/en_windows_8.1_enterprise_n_with_update_x64_dvd_6050225.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IR5_CENNA_X64FREV_EN-US_DV9 --Volume set id: IR5_CENNA_X64FREV_EN-US_DV9 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1930169 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 86A 2154 -diff --git a/tests/isodata/windows/win8.1/en_windows_8.1_enterprise_with_update_x64_dvd_6054382.iso.txt b/tests/isodata/windows/win8.1/en_windows_8.1_enterprise_with_update_x64_dvd_6054382.iso.txt -deleted file mode 100644 -index 017df86..0000000 ---- a/tests/isodata/windows/win8.1/en_windows_8.1_enterprise_with_update_x64_dvd_6054382.iso.txt -+++ /dev/null -@@ -1,30 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IR5_CENA_X64FREV_EN-US_DV9 --Volume set id: IR5_CENA_X64FREV_EN-US_DV9 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, --(425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2021076 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 86A 2154 -diff --git a/tests/isodata/windows/win8.1/en_windows_8.1_n_with_update_x64_dvd_6051677.iso.txt b/tests/isodata/windows/win8.1/en_windows_8.1_n_with_update_x64_dvd_6051677.iso.txt -deleted file mode 100644 -index f26de05..0000000 ---- a/tests/isodata/windows/win8.1/en_windows_8.1_n_with_update_x64_dvd_6051677.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IR5_CCSNA_X64FRE_EN-US_DV9 --Volume set id: IR5_CCSNA_X64FRE_EN-US_DV9 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1990169 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 86A 2154 -diff --git a/tests/isodata/windows/win8.1/en_windows_8.1_n_with_update_x86_dvd_6051704.iso.txt b/tests/isodata/windows/win8.1/en_windows_8.1_n_with_update_x86_dvd_6051704.iso.txt -deleted file mode 100644 -index c3badf7..0000000 ---- a/tests/isodata/windows/win8.1/en_windows_8.1_n_with_update_x86_dvd_6051704.iso.txt -+++ /dev/null -@@ -1,30 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IR5_CCSNA_X86FRE_EN-US_DV9 --Volume set id: IR5_CCSNA_X86FRE_EN-US_DV9 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, --(425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1476196 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 5B4 1460 -diff --git a/tests/isodata/windows/win8.1/en_windows_8.1_pro_n_vl_with_update_x64_dvd_6050969.iso.txt b/tests/isodata/windows/win8.1/en_windows_8.1_pro_n_vl_with_update_x64_dvd_6050969.iso.txt -deleted file mode 100644 -index 62b06df..0000000 ---- a/tests/isodata/windows/win8.1/en_windows_8.1_pro_n_vl_with_update_x64_dvd_6050969.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IR5_CPRNA_X64FREV_EN-US_DV9 --Volume set id: IR5_CPRNA_X64FREV_EN-US_DV9 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1929794 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 86A 2154 -diff --git a/tests/isodata/windows/win8.1/en_windows_8.1_pro_n_vl_with_update_x86_dvd_6051127.iso.txt b/tests/isodata/windows/win8.1/en_windows_8.1_pro_n_vl_with_update_x86_dvd_6051127.iso.txt -deleted file mode 100644 -index 698af0f..0000000 ---- a/tests/isodata/windows/win8.1/en_windows_8.1_pro_n_vl_with_update_x86_dvd_6051127.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IR5_CPRNA_X86FREV_EN-US_DV9 --Volume set id: IR5_CPRNA_X86FREV_EN-US_DV9 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1425503 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 5B4 1460 -diff --git a/tests/isodata/windows/win8.1/en_windows_8.1_pro_vl_with_update_x64_dvd_6050880.iso.txt b/tests/isodata/windows/win8.1/en_windows_8.1_pro_vl_with_update_x64_dvd_6050880.iso.txt -deleted file mode 100644 -index b343e92..0000000 ---- a/tests/isodata/windows/win8.1/en_windows_8.1_pro_vl_with_update_x64_dvd_6050880.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IR5_CPRA_X64FREV_EN-US_DV9 --Volume set id: IR5_CPRA_X64FREV_EN-US_DV9 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2021654 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 86A 2154 -diff --git a/tests/isodata/windows/win8.1/en_windows_8.1_pro_vl_with_update_x86_dvd_6050918.iso.txt b/tests/isodata/windows/win8.1/en_windows_8.1_pro_vl_with_update_x86_dvd_6050918.iso.txt -deleted file mode 100644 -index 17547d6..0000000 ---- a/tests/isodata/windows/win8.1/en_windows_8.1_pro_vl_with_update_x86_dvd_6050918.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IR5_CPRA_X86FREV_EN-US_DV9 --Volume set id: IR5_CPRA_X86FREV_EN-US_DV9 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1493235 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 5B4 1460 -diff --git a/tests/isodata/windows/win8.1/en_windows_8.1_with_update_x64_dvd_6051480.iso.txt b/tests/isodata/windows/win8.1/en_windows_8.1_with_update_x64_dvd_6051480.iso.txt -deleted file mode 100644 -index 5af8419..0000000 ---- a/tests/isodata/windows/win8.1/en_windows_8.1_with_update_x64_dvd_6051480.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IR5_CCSA_X64FRE_EN-US_DV9 --Volume set id: IR5_CCSA_X64FRE_EN-US_DV9 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 2109632 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 86A 2154 -diff --git a/tests/isodata/windows/win8.1/en_windows_8_1_debug_checked_x64_dvd_2707208.iso.txt b/tests/isodata/windows/win8.1/en_windows_8_1_debug_checked_x64_dvd_2707208.iso.txt -deleted file mode 100644 -index 7ae49a6..0000000 ---- a/tests/isodata/windows/win8.1/en_windows_8_1_debug_checked_x64_dvd_2707208.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IRM_CCSA_X64CHK_EN-US_DV5 --Volume set id: IRM_CCSA_X64CHK_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1846895 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 86A 2154 -diff --git a/tests/isodata/windows/win8.1/en_windows_8_1_debug_checked_x86_dvd_2707387.iso.txt b/tests/isodata/windows/win8.1/en_windows_8_1_debug_checked_x86_dvd_2707387.iso.txt -deleted file mode 100644 -index 7bc31d6..0000000 ---- a/tests/isodata/windows/win8.1/en_windows_8_1_debug_checked_x86_dvd_2707387.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IRM_CCSA_X86CHK_EN-US_DV5 --Volume set id: IRM_CCSA_X86CHK_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1359561 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 5B4 1460 -diff --git a/tests/isodata/windows/win8.1/en_windows_8_1_enterprise_debug_checked_x64_dvd_2756358.iso.txt b/tests/isodata/windows/win8.1/en_windows_8_1_enterprise_debug_checked_x64_dvd_2756358.iso.txt -deleted file mode 100644 -index e90fad9..0000000 ---- a/tests/isodata/windows/win8.1/en_windows_8_1_enterprise_debug_checked_x64_dvd_2756358.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IRM_CENA_X64CHKV_EN-US_DV5 --Volume set id: IRM_CENA_X64CHKV_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1800500 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 86A 2154 -diff --git a/tests/isodata/windows/win8.1/en_windows_8_1_enterprise_debug_checked_x86_dvd_2756359.iso.txt b/tests/isodata/windows/win8.1/en_windows_8_1_enterprise_debug_checked_x86_dvd_2756359.iso.txt -deleted file mode 100644 -index b203140..0000000 ---- a/tests/isodata/windows/win8.1/en_windows_8_1_enterprise_debug_checked_x86_dvd_2756359.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IRM_CENA_X86CHKV_EN-US_DV5 --Volume set id: IRM_CENA_X86CHKV_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1318362 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 5B4 1460 -diff --git a/tests/isodata/windows/win8.1/en_windows_8_1_enterprise_n_debug_checked_x64_dvd_2942525.iso.txt b/tests/isodata/windows/win8.1/en_windows_8_1_enterprise_n_debug_checked_x64_dvd_2942525.iso.txt -deleted file mode 100644 -index fe1cd97..0000000 ---- a/tests/isodata/windows/win8.1/en_windows_8_1_enterprise_n_debug_checked_x64_dvd_2942525.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IRM_CENNA_X64CHKV_EN-US_DV5 --Volume set id: IRM_CENNA_X64CHKV_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1733308 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 86A 2154 -diff --git a/tests/isodata/windows/win8.1/en_windows_8_1_enterprise_n_debug_checked_x86_dvd_2942527.iso.txt b/tests/isodata/windows/win8.1/en_windows_8_1_enterprise_n_debug_checked_x86_dvd_2942527.iso.txt -deleted file mode 100644 -index 1557fff..0000000 ---- a/tests/isodata/windows/win8.1/en_windows_8_1_enterprise_n_debug_checked_x86_dvd_2942527.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IRM_CENNA_X86CHKV_EN-US_DV5 --Volume set id: IRM_CENNA_X86CHKV_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1273074 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 5B4 1460 -diff --git a/tests/isodata/windows/win8.1/en_windows_8_1_enterprise_n_x64_dvd_2791038.iso.txt b/tests/isodata/windows/win8.1/en_windows_8_1_enterprise_n_x64_dvd_2791038.iso.txt -deleted file mode 100644 -index 8ce042b..0000000 ---- a/tests/isodata/windows/win8.1/en_windows_8_1_enterprise_n_x64_dvd_2791038.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IRM_CENNA_X64FREV_EN-US_DV5 --Volume set id: IRM_CENNA_X64FREV_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1786974 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 86A 2154 -diff --git a/tests/isodata/windows/win8.1/en_windows_8_1_enterprise_n_x64_dvd_2971845.iso.txt b/tests/isodata/windows/win8.1/en_windows_8_1_enterprise_n_x64_dvd_2971845.iso.txt -deleted file mode 100644 -index 81121a2..0000000 ---- a/tests/isodata/windows/win8.1/en_windows_8_1_enterprise_n_x64_dvd_2971845.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IR1_CENNA_X64FREV_EN-US_DV5 --Volume set id: IR1_CENNA_X64FREV_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1810146 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 86A 2154 -diff --git a/tests/isodata/windows/win8.1/en_windows_8_1_enterprise_n_x86_dvd_2791297.iso.txt b/tests/isodata/windows/win8.1/en_windows_8_1_enterprise_n_x86_dvd_2791297.iso.txt -deleted file mode 100644 -index c66365c..0000000 ---- a/tests/isodata/windows/win8.1/en_windows_8_1_enterprise_n_x86_dvd_2791297.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IRM_CENNA_X86FREV_EN-US_DV5 --Volume set id: IRM_CENNA_X86FREV_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1335349 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 5B4 1460 -diff --git a/tests/isodata/windows/win8.1/en_windows_8_1_enterprise_n_x86_dvd_2971850.iso.txt b/tests/isodata/windows/win8.1/en_windows_8_1_enterprise_n_x86_dvd_2971850.iso.txt -deleted file mode 100644 -index 5e26b7b..0000000 ---- a/tests/isodata/windows/win8.1/en_windows_8_1_enterprise_n_x86_dvd_2971850.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IR1_CENNA_X86FREV_EN-US_DV5 --Volume set id: IR1_CENNA_X86FREV_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1366994 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 5B4 1460 -diff --git a/tests/isodata/windows/win8.1/en_windows_8_1_enterprise_x64_dvd_2791088.iso.txt b/tests/isodata/windows/win8.1/en_windows_8_1_enterprise_x64_dvd_2791088.iso.txt -deleted file mode 100644 -index 98f78ca..0000000 ---- a/tests/isodata/windows/win8.1/en_windows_8_1_enterprise_x64_dvd_2791088.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IRM_CENA_X64FREV_EN-US_DV5 --Volume set id: IRM_CENA_X64FREV_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1854597 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 86A 2154 -diff --git a/tests/isodata/windows/win8.1/en_windows_8_1_enterprise_x64_dvd_2971902.iso.txt b/tests/isodata/windows/win8.1/en_windows_8_1_enterprise_x64_dvd_2971902.iso.txt -deleted file mode 100644 -index 05116d8..0000000 ---- a/tests/isodata/windows/win8.1/en_windows_8_1_enterprise_x64_dvd_2971902.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IR1_CENA_X64FREV_EN-US_DV5 --Volume set id: IR1_CENA_X64FREV_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1881833 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 86A 2154 -diff --git a/tests/isodata/windows/win8.1/en_windows_8_1_enterprise_x86_dvd_2791510.iso.txt b/tests/isodata/windows/win8.1/en_windows_8_1_enterprise_x86_dvd_2791510.iso.txt -deleted file mode 100644 -index 718b2d3..0000000 ---- a/tests/isodata/windows/win8.1/en_windows_8_1_enterprise_x86_dvd_2791510.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IRM_CENA_X86FREV_EN-US_DV5 --Volume set id: IRM_CENA_X86FREV_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1381065 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 5B4 1460 -diff --git a/tests/isodata/windows/win8.1/en_windows_8_1_enterprise_x86_dvd_2972289.iso.txt b/tests/isodata/windows/win8.1/en_windows_8_1_enterprise_x86_dvd_2972289.iso.txt -deleted file mode 100644 -index 3574500..0000000 ---- a/tests/isodata/windows/win8.1/en_windows_8_1_enterprise_x86_dvd_2972289.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IR1_CENA_X86FREV_EN-US_DV5 --Volume set id: IR1_CENA_X86FREV_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1417237 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 5B4 1460 -diff --git a/tests/isodata/windows/win8.1/en_windows_8_1_n_debug_checked_x64_dvd_2707894.iso.txt b/tests/isodata/windows/win8.1/en_windows_8_1_n_debug_checked_x64_dvd_2707894.iso.txt -deleted file mode 100644 -index 231e310..0000000 ---- a/tests/isodata/windows/win8.1/en_windows_8_1_n_debug_checked_x64_dvd_2707894.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IRM_CCSNA_X64CHK_EN-US_DV5 --Volume set id: IRM_CCSNA_X64CHK_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1750702 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 86A 2154 -diff --git a/tests/isodata/windows/win8.1/en_windows_8_1_n_debug_checked_x86_dvd_2707893.iso.txt b/tests/isodata/windows/win8.1/en_windows_8_1_n_debug_checked_x86_dvd_2707893.iso.txt -deleted file mode 100644 -index 80a95ae..0000000 ---- a/tests/isodata/windows/win8.1/en_windows_8_1_n_debug_checked_x86_dvd_2707893.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IRM_CCSNA_X86CHK_EN-US_DV5 --Volume set id: IRM_CCSNA_X86CHK_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1286780 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 5B4 1460 -diff --git a/tests/isodata/windows/win8.1/en_windows_8_1_n_with_update_x64_dvd_4065114.iso.txt b/tests/isodata/windows/win8.1/en_windows_8_1_n_with_update_x64_dvd_4065114.iso.txt -deleted file mode 100644 -index 2a9baa3..0000000 ---- a/tests/isodata/windows/win8.1/en_windows_8_1_n_with_update_x64_dvd_4065114.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IR3_CCSNA_X64FRE_EN-US_DV9 --Volume set id: IR3_CCSNA_X64FRE_EN-US_DV9 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1899257 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 86A 2154 -diff --git a/tests/isodata/windows/win8.1/en_windows_8_1_n_x64_dvd_2707896.iso.txt b/tests/isodata/windows/win8.1/en_windows_8_1_n_x64_dvd_2707896.iso.txt -deleted file mode 100644 -index e794483..0000000 ---- a/tests/isodata/windows/win8.1/en_windows_8_1_n_x64_dvd_2707896.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IRM_CCSNA_X64FRE_EN-US_DV5 --Volume set id: IRM_CCSNA_X64FRE_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1810774 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 86A 2154 -diff --git a/tests/isodata/windows/win8.1/en_windows_8_1_n_x86_dvd_2707895.iso.txt b/tests/isodata/windows/win8.1/en_windows_8_1_n_x86_dvd_2707895.iso.txt -deleted file mode 100644 -index b71129e..0000000 ---- a/tests/isodata/windows/win8.1/en_windows_8_1_n_x86_dvd_2707895.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IRM_CCSNA_X86FRE_EN-US_DV5 --Volume set id: IRM_CCSNA_X86FRE_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1353462 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 5B4 1460 -diff --git a/tests/isodata/windows/win8.1/en_windows_8_1_pro_n_vl_x64_dvd_2791264.iso.txt b/tests/isodata/windows/win8.1/en_windows_8_1_pro_n_vl_x64_dvd_2791264.iso.txt -deleted file mode 100644 -index e3da298..0000000 ---- a/tests/isodata/windows/win8.1/en_windows_8_1_pro_n_vl_x64_dvd_2791264.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IRM_CPRNA_X64FREV_EN-US_DV5 --Volume set id: IRM_CPRNA_X64FREV_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1785996 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 86A 2154 -diff --git a/tests/isodata/windows/win8.1/en_windows_8_1_pro_n_vl_x64_dvd_2971969.iso.txt b/tests/isodata/windows/win8.1/en_windows_8_1_pro_n_vl_x64_dvd_2971969.iso.txt -deleted file mode 100644 -index 54669ab..0000000 ---- a/tests/isodata/windows/win8.1/en_windows_8_1_pro_n_vl_x64_dvd_2971969.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IR1_CPRNA_X64FREV_EN-US_DV5 --Volume set id: IR1_CPRNA_X64FREV_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1808341 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 86A 2154 -diff --git a/tests/isodata/windows/win8.1/en_windows_8_1_pro_n_vl_x86_dvd_2791509.iso.txt b/tests/isodata/windows/win8.1/en_windows_8_1_pro_n_vl_x86_dvd_2791509.iso.txt -deleted file mode 100644 -index abc0a0a..0000000 ---- a/tests/isodata/windows/win8.1/en_windows_8_1_pro_n_vl_x86_dvd_2791509.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IRM_CPRNA_X86FREV_EN-US_DV5 --Volume set id: IRM_CPRNA_X86FREV_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1334550 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 5B4 1460 -diff --git a/tests/isodata/windows/win8.1/en_windows_8_1_pro_n_vl_x86_dvd_2972709.iso.txt b/tests/isodata/windows/win8.1/en_windows_8_1_pro_n_vl_x86_dvd_2972709.iso.txt -deleted file mode 100644 -index 9244da0..0000000 ---- a/tests/isodata/windows/win8.1/en_windows_8_1_pro_n_vl_x86_dvd_2972709.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IR1_CPRNA_X86FREV_EN-US_DV5 --Volume set id: IR1_CPRNA_X86FREV_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1366161 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 5B4 1460 -diff --git a/tests/isodata/windows/win8.1/en_windows_8_1_pro_vl_x64_dvd_2791292.iso.txt b/tests/isodata/windows/win8.1/en_windows_8_1_pro_vl_x64_dvd_2791292.iso.txt -deleted file mode 100644 -index f316eb4..0000000 ---- a/tests/isodata/windows/win8.1/en_windows_8_1_pro_vl_x64_dvd_2791292.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IRM_CPRA_X64FREV_EN-US_DV5 --Volume set id: IRM_CPRA_X64FREV_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1853637 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 86A 2154 -diff --git a/tests/isodata/windows/win8.1/en_windows_8_1_pro_vl_x64_dvd_2971948.iso.txt b/tests/isodata/windows/win8.1/en_windows_8_1_pro_vl_x64_dvd_2971948.iso.txt -deleted file mode 100644 -index a94510a..0000000 ---- a/tests/isodata/windows/win8.1/en_windows_8_1_pro_vl_x64_dvd_2971948.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IR1_CPRA_X64FREV_EN-US_DV5 --Volume set id: IR1_CPRA_X64FREV_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1880929 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 86A 2154 -diff --git a/tests/isodata/windows/win8.1/en_windows_8_1_pro_vl_x86_dvd_2791634.iso.txt b/tests/isodata/windows/win8.1/en_windows_8_1_pro_vl_x86_dvd_2791634.iso.txt -deleted file mode 100644 -index 0cf82db..0000000 ---- a/tests/isodata/windows/win8.1/en_windows_8_1_pro_vl_x86_dvd_2791634.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IRM_CPRA_X86FREV_EN-US_DV5 --Volume set id: IRM_CPRA_X86FREV_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1380291 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 5B4 1460 -diff --git a/tests/isodata/windows/win8.1/en_windows_8_1_pro_vl_x86_dvd_2972633.iso.txt b/tests/isodata/windows/win8.1/en_windows_8_1_pro_vl_x86_dvd_2972633.iso.txt -deleted file mode 100644 -index 85364fc..0000000 ---- a/tests/isodata/windows/win8.1/en_windows_8_1_pro_vl_x86_dvd_2972633.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IR1_CPRA_X86FREV_EN-US_DV5 --Volume set id: IR1_CPRA_X86FREV_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1416441 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 5B4 1460 -diff --git a/tests/isodata/windows/win8.1/en_windows_8_1_x64_dvd_2707217.iso.txt b/tests/isodata/windows/win8.1/en_windows_8_1_x64_dvd_2707217.iso.txt -deleted file mode 100644 -index 5449da1..0000000 ---- a/tests/isodata/windows/win8.1/en_windows_8_1_x64_dvd_2707217.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IRM_CCSA_X64FRE_EN-US_DV5 --Volume set id: IRM_CCSA_X64FRE_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1903953 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 86A 2154 -diff --git a/tests/isodata/windows/win8.1/en_windows_8_1_x86_dvd_2707392.iso.txt b/tests/isodata/windows/win8.1/en_windows_8_1_x86_dvd_2707392.iso.txt -deleted file mode 100644 -index de73b66..0000000 ---- a/tests/isodata/windows/win8.1/en_windows_8_1_x86_dvd_2707392.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: IRM_CCSA_X86FRE_EN-US_DV5 --Volume set id: IRM_CCSA_X86FRE_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1423404 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 5B4 1460 -diff --git a/tests/isodata/windows/win8/Windows8-ConsumerPreview-32bit-English.iso.lng b/tests/isodata/windows/win8/Windows8-ConsumerPreview-32bit-English.iso.lng -deleted file mode 100644 -index e46008a..0000000 ---- a/tests/isodata/windows/win8/Windows8-ConsumerPreview-32bit-English.iso.lng -+++ /dev/null -@@ -1,2 +0,0 @@ --[general] --l10n-language=en_US -diff --git a/tests/isodata/windows/win8/Windows8-ConsumerPreview-32bit-English.iso.txt b/tests/isodata/windows/win8/Windows8-ConsumerPreview-32bit-English.iso.txt -deleted file mode 100644 -index 29afb6f..0000000 ---- a/tests/isodata/windows/win8/Windows8-ConsumerPreview-32bit-English.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: HB1_CCPA_X86FRE_EN-US_DV5 --Volume set id: HB1_CCPA_X86FRE_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1323924 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 5B2 1458 -diff --git a/tests/isodata/windows/win8/Windows8-ConsumerPreview-64bit-English.iso.lng b/tests/isodata/windows/win8/Windows8-ConsumerPreview-64bit-English.iso.lng -deleted file mode 100644 -index e46008a..0000000 ---- a/tests/isodata/windows/win8/Windows8-ConsumerPreview-64bit-English.iso.lng -+++ /dev/null -@@ -1,2 +0,0 @@ --[general] --l10n-language=en_US -diff --git a/tests/isodata/windows/win8/Windows8-ConsumerPreview-64bit-English.iso.txt b/tests/isodata/windows/win8/Windows8-ConsumerPreview-64bit-English.iso.txt -deleted file mode 100644 -index ce2dfda..0000000 ---- a/tests/isodata/windows/win8/Windows8-ConsumerPreview-64bit-English.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: HB1_CCPA_X64FRE_EN-US_DV5 --Volume set id: HB1_CCPA_X64FRE_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1749857 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 863 2147 -diff --git a/tests/isodata/windows/win8/de_windows_8_enterprise_n_x64_dvd_917975.iso.lng b/tests/isodata/windows/win8/de_windows_8_enterprise_n_x64_dvd_917975.iso.lng -deleted file mode 100644 -index ac695c0..0000000 ---- a/tests/isodata/windows/win8/de_windows_8_enterprise_n_x64_dvd_917975.iso.lng -+++ /dev/null -@@ -1,2 +0,0 @@ --[general] --l10n-language=de_DE -diff --git a/tests/isodata/windows/win8/de_windows_8_enterprise_n_x64_dvd_917975.iso.txt b/tests/isodata/windows/win8/de_windows_8_enterprise_n_x64_dvd_917975.iso.txt -deleted file mode 100644 -index b226f5f..0000000 ---- a/tests/isodata/windows/win8/de_windows_8_enterprise_n_x64_dvd_917975.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: HRM_CENNA_X64FREV_DE-DE_DV5 --Volume set id: HRM_CENNA_X64FREV_DE-DE_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1639276 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 957 2391 -diff --git a/tests/isodata/windows/win8/en-gb_windows_8_enterprise_n_x64_dvd_918053.iso.txt b/tests/isodata/windows/win8/en-gb_windows_8_enterprise_n_x64_dvd_918053.iso.txt -deleted file mode 100644 -index e0f9d78..0000000 ---- a/tests/isodata/windows/win8/en-gb_windows_8_enterprise_n_x64_dvd_918053.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: HRM_CENNA_X64FREV_EN-GB_DV5 --Volume set id: HRM_CENNA_X64FREV_EN-GB_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1613107 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 86C 2156 -diff --git a/tests/isodata/windows/win8/en-gb_windows_8_enterprise_n_x86_dvd_918708.iso.txt b/tests/isodata/windows/win8/en-gb_windows_8_enterprise_n_x86_dvd_918708.iso.txt -deleted file mode 100644 -index 65476f8..0000000 ---- a/tests/isodata/windows/win8/en-gb_windows_8_enterprise_n_x86_dvd_918708.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: HRM_CENNA_X86FREV_EN-GB_DV5 --Volume set id: HRM_CENNA_X86FREV_EN-GB_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1174517 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 5B8 1464 -diff --git a/tests/isodata/windows/win8/en-gb_windows_8_enterprise_x64_dvd_922086.iso.txt b/tests/isodata/windows/win8/en-gb_windows_8_enterprise_x64_dvd_922086.iso.txt -deleted file mode 100644 -index 04274b8..0000000 ---- a/tests/isodata/windows/win8/en-gb_windows_8_enterprise_x64_dvd_922086.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: HRM_CENA_X64FREV_EN-GB_DV5 --Volume set id: HRM_CENA_X64FREV_EN-GB_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1669449 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 86C 2156 -diff --git a/tests/isodata/windows/win8/en-gb_windows_8_enterprise_x86_dvd_917588.iso.txt b/tests/isodata/windows/win8/en-gb_windows_8_enterprise_x86_dvd_917588.iso.txt -deleted file mode 100644 -index 1befd89..0000000 ---- a/tests/isodata/windows/win8/en-gb_windows_8_enterprise_x86_dvd_917588.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: HRM_CENA_X86FREV_EN-GB_DV5 --Volume set id: HRM_CENA_X86FREV_EN-GB_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1210639 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 5B8 1464 -diff --git a/tests/isodata/windows/win8/en-gb_windows_8_n_x64_dvd_915799.iso.txt b/tests/isodata/windows/win8/en-gb_windows_8_n_x64_dvd_915799.iso.txt -deleted file mode 100644 -index f157359..0000000 ---- a/tests/isodata/windows/win8/en-gb_windows_8_n_x64_dvd_915799.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: HRM_CCSNA_X64FRE_EN-GB_DV5 --Volume set id: HRM_CCSNA_X64FRE_EN-GB_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1629459 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 86C 2156 -diff --git a/tests/isodata/windows/win8/en-gb_windows_8_n_x86_dvd_916086.iso.txt b/tests/isodata/windows/win8/en-gb_windows_8_n_x86_dvd_916086.iso.txt -deleted file mode 100644 -index a5aee98..0000000 ---- a/tests/isodata/windows/win8/en-gb_windows_8_n_x86_dvd_916086.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: HRM_CCSNA_X86FRE_EN-GB_DV5 --Volume set id: HRM_CCSNA_X86FRE_EN-GB_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1187670 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 5B8 1464 -diff --git a/tests/isodata/windows/win8/en-gb_windows_8_pro_n_vl_x64_dvd_918679.iso.txt b/tests/isodata/windows/win8/en-gb_windows_8_pro_n_vl_x64_dvd_918679.iso.txt -deleted file mode 100644 -index 5245fac..0000000 ---- a/tests/isodata/windows/win8/en-gb_windows_8_pro_n_vl_x64_dvd_918679.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: HRM_CPRNA_X64FREV_EN-GB_DV5 --Volume set id: HRM_CPRNA_X64FREV_EN-GB_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1611750 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 86C 2156 -diff --git a/tests/isodata/windows/win8/en-gb_windows_8_pro_n_vl_x86_dvd_918878.iso.txt b/tests/isodata/windows/win8/en-gb_windows_8_pro_n_vl_x86_dvd_918878.iso.txt -deleted file mode 100644 -index d86d2eb..0000000 ---- a/tests/isodata/windows/win8/en-gb_windows_8_pro_n_vl_x86_dvd_918878.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: HRM_CPRNA_X86FREV_EN-GB_DV5 --Volume set id: HRM_CPRNA_X86FREV_EN-GB_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1173386 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 5B8 1464 -diff --git a/tests/isodata/windows/win8/en-gb_windows_8_pro_vl_x64_dvd_917700.iso.txt b/tests/isodata/windows/win8/en-gb_windows_8_pro_vl_x64_dvd_917700.iso.txt -deleted file mode 100644 -index c5ffd75..0000000 ---- a/tests/isodata/windows/win8/en-gb_windows_8_pro_vl_x64_dvd_917700.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: HRM_CPRA_X64FREV_EN-GB_DV5 --Volume set id: HRM_CPRA_X64FREV_EN-GB_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1668094 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 86C 2156 -diff --git a/tests/isodata/windows/win8/en-gb_windows_8_pro_vl_x86_dvd_917831.iso.txt b/tests/isodata/windows/win8/en-gb_windows_8_pro_vl_x86_dvd_917831.iso.txt -deleted file mode 100644 -index b553868..0000000 ---- a/tests/isodata/windows/win8/en-gb_windows_8_pro_vl_x86_dvd_917831.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: HRM_CPRA_X86FREV_EN-GB_DV5 --Volume set id: HRM_CPRA_X86FREV_EN-GB_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1209531 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 5B8 1464 -diff --git a/tests/isodata/windows/win8/en-gb_windows_8_x64_dvd_915412.iso.txt b/tests/isodata/windows/win8/en-gb_windows_8_x64_dvd_915412.iso.txt -deleted file mode 100644 -index a1d2c65..0000000 ---- a/tests/isodata/windows/win8/en-gb_windows_8_x64_dvd_915412.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: HRM_CCSA_X64FRE_EN-GB_DV5 --Volume set id: HRM_CCSA_X64FRE_EN-GB_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1714218 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 86C 2156 -diff --git a/tests/isodata/windows/win8/en-gb_windows_8_x86_dvd_915479.iso.lng b/tests/isodata/windows/win8/en-gb_windows_8_x86_dvd_915479.iso.lng -deleted file mode 100644 -index 4964c4d..0000000 ---- a/tests/isodata/windows/win8/en-gb_windows_8_x86_dvd_915479.iso.lng -+++ /dev/null -@@ -1,2 +0,0 @@ --[general] --l10n-language=en_GB -diff --git a/tests/isodata/windows/win8/en-gb_windows_8_x86_dvd_915479.iso.txt b/tests/isodata/windows/win8/en-gb_windows_8_x86_dvd_915479.iso.txt -deleted file mode 100644 -index ae218ae..0000000 ---- a/tests/isodata/windows/win8/en-gb_windows_8_x86_dvd_915479.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: HRM_CCSA_X86FRE_EN-GB_DV5 --Volume set id: HRM_CCSA_X86FRE_EN-GB_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1250720 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 5B8 1464 -diff --git a/tests/isodata/windows/win8/en_windows_8_debug_checked_build_x64_dvd_917558.iso.lng b/tests/isodata/windows/win8/en_windows_8_debug_checked_build_x64_dvd_917558.iso.lng -deleted file mode 100644 -index e46008a..0000000 ---- a/tests/isodata/windows/win8/en_windows_8_debug_checked_build_x64_dvd_917558.iso.lng -+++ /dev/null -@@ -1,2 +0,0 @@ --[general] --l10n-language=en_US -diff --git a/tests/isodata/windows/win8/en_windows_8_debug_checked_build_x64_dvd_917558.iso.txt b/tests/isodata/windows/win8/en_windows_8_debug_checked_build_x64_dvd_917558.iso.txt -deleted file mode 100644 -index 32d5581..0000000 ---- a/tests/isodata/windows/win8/en_windows_8_debug_checked_build_x64_dvd_917558.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: HRM_CCSA_X64CHK_EN-US_DV5 --Volume set id: HRM_CCSA_X64CHK_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1813135 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 86C 2156 -diff --git a/tests/isodata/windows/win8/en_windows_8_debug_checked_build_x86_dvd_917560.iso.lng b/tests/isodata/windows/win8/en_windows_8_debug_checked_build_x86_dvd_917560.iso.lng -deleted file mode 100644 -index e46008a..0000000 ---- a/tests/isodata/windows/win8/en_windows_8_debug_checked_build_x86_dvd_917560.iso.lng -+++ /dev/null -@@ -1,2 +0,0 @@ --[general] --l10n-language=en_US -diff --git a/tests/isodata/windows/win8/en_windows_8_debug_checked_build_x86_dvd_917560.iso.txt b/tests/isodata/windows/win8/en_windows_8_debug_checked_build_x86_dvd_917560.iso.txt -deleted file mode 100644 -index f4192ac..0000000 ---- a/tests/isodata/windows/win8/en_windows_8_debug_checked_build_x86_dvd_917560.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: HRM_CCSA_X86CHK_EN-US_DV5 --Volume set id: HRM_CCSA_X86CHK_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1320437 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 5B8 1464 -diff --git a/tests/isodata/windows/win8/en_windows_8_enterprise_debug_checked_build_x64_dvd_917527.iso.lng b/tests/isodata/windows/win8/en_windows_8_enterprise_debug_checked_build_x64_dvd_917527.iso.lng -deleted file mode 100644 -index e46008a..0000000 ---- a/tests/isodata/windows/win8/en_windows_8_enterprise_debug_checked_build_x64_dvd_917527.iso.lng -+++ /dev/null -@@ -1,2 +0,0 @@ --[general] --l10n-language=en_US -diff --git a/tests/isodata/windows/win8/en_windows_8_enterprise_debug_checked_build_x64_dvd_917527.iso.txt b/tests/isodata/windows/win8/en_windows_8_enterprise_debug_checked_build_x64_dvd_917527.iso.txt -deleted file mode 100644 -index cc74e62..0000000 ---- a/tests/isodata/windows/win8/en_windows_8_enterprise_debug_checked_build_x64_dvd_917527.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: HRM_CENA_X64CHKV_EN-US_DV5 --Volume set id: HRM_CENA_X64CHKV_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1768415 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 86C 2156 -diff --git a/tests/isodata/windows/win8/en_windows_8_enterprise_debug_checked_build_x86_dvd_917529.iso.lng b/tests/isodata/windows/win8/en_windows_8_enterprise_debug_checked_build_x86_dvd_917529.iso.lng -deleted file mode 100644 -index e46008a..0000000 ---- a/tests/isodata/windows/win8/en_windows_8_enterprise_debug_checked_build_x86_dvd_917529.iso.lng -+++ /dev/null -@@ -1,2 +0,0 @@ --[general] --l10n-language=en_US -diff --git a/tests/isodata/windows/win8/en_windows_8_enterprise_debug_checked_build_x86_dvd_917529.iso.txt b/tests/isodata/windows/win8/en_windows_8_enterprise_debug_checked_build_x86_dvd_917529.iso.txt -deleted file mode 100644 -index 6dfeab7..0000000 ---- a/tests/isodata/windows/win8/en_windows_8_enterprise_debug_checked_build_x86_dvd_917529.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: HRM_CENA_X86CHKV_EN-US_DV5 --Volume set id: HRM_CENA_X86CHKV_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1280427 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 5B8 1464 -diff --git a/tests/isodata/windows/win8/en_windows_8_enterprise_n_debug_checked_build_x64_dvd_917531.iso.lng b/tests/isodata/windows/win8/en_windows_8_enterprise_n_debug_checked_build_x64_dvd_917531.iso.lng -deleted file mode 100644 -index e46008a..0000000 ---- a/tests/isodata/windows/win8/en_windows_8_enterprise_n_debug_checked_build_x64_dvd_917531.iso.lng -+++ /dev/null -@@ -1,2 +0,0 @@ --[general] --l10n-language=en_US -diff --git a/tests/isodata/windows/win8/en_windows_8_enterprise_n_debug_checked_build_x64_dvd_917531.iso.txt b/tests/isodata/windows/win8/en_windows_8_enterprise_n_debug_checked_build_x64_dvd_917531.iso.txt -deleted file mode 100644 -index 9e8dee9..0000000 ---- a/tests/isodata/windows/win8/en_windows_8_enterprise_n_debug_checked_build_x64_dvd_917531.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: HRM_CENNA_X64CHKV_EN-US_DV5 --Volume set id: HRM_CENNA_X64CHKV_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1709085 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 86C 2156 -diff --git a/tests/isodata/windows/win8/en_windows_8_enterprise_n_debug_checked_build_x86_dvd_917534.iso.lng b/tests/isodata/windows/win8/en_windows_8_enterprise_n_debug_checked_build_x86_dvd_917534.iso.lng -deleted file mode 100644 -index e46008a..0000000 ---- a/tests/isodata/windows/win8/en_windows_8_enterprise_n_debug_checked_build_x86_dvd_917534.iso.lng -+++ /dev/null -@@ -1,2 +0,0 @@ --[general] --l10n-language=en_US -diff --git a/tests/isodata/windows/win8/en_windows_8_enterprise_n_debug_checked_build_x86_dvd_917534.iso.txt b/tests/isodata/windows/win8/en_windows_8_enterprise_n_debug_checked_build_x86_dvd_917534.iso.txt -deleted file mode 100644 -index 2f96846..0000000 ---- a/tests/isodata/windows/win8/en_windows_8_enterprise_n_debug_checked_build_x86_dvd_917534.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: HRM_CENNA_X86CHKV_EN-US_DV5 --Volume set id: HRM_CENNA_X86CHKV_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1241664 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 5B8 1464 -diff --git a/tests/isodata/windows/win8/en_windows_8_enterprise_n_x64_dvd_918052.iso.lng b/tests/isodata/windows/win8/en_windows_8_enterprise_n_x64_dvd_918052.iso.lng -deleted file mode 100644 -index e46008a..0000000 ---- a/tests/isodata/windows/win8/en_windows_8_enterprise_n_x64_dvd_918052.iso.lng -+++ /dev/null -@@ -1,2 +0,0 @@ --[general] --l10n-language=en_US -diff --git a/tests/isodata/windows/win8/en_windows_8_enterprise_n_x64_dvd_918052.iso.txt b/tests/isodata/windows/win8/en_windows_8_enterprise_n_x64_dvd_918052.iso.txt -deleted file mode 100644 -index ea313f0..0000000 ---- a/tests/isodata/windows/win8/en_windows_8_enterprise_n_x64_dvd_918052.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: HRM_CENNA_X64FREV_EN-US_DV5 --Volume set id: HRM_CENNA_X64FREV_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1648211 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 86C 2156 -diff --git a/tests/isodata/windows/win8/en_windows_8_enterprise_n_x86_dvd_918707.iso.lng b/tests/isodata/windows/win8/en_windows_8_enterprise_n_x86_dvd_918707.iso.lng -deleted file mode 100644 -index e46008a..0000000 ---- a/tests/isodata/windows/win8/en_windows_8_enterprise_n_x86_dvd_918707.iso.lng -+++ /dev/null -@@ -1,2 +0,0 @@ --[general] --l10n-language=en_US -diff --git a/tests/isodata/windows/win8/en_windows_8_enterprise_n_x86_dvd_918707.iso.txt b/tests/isodata/windows/win8/en_windows_8_enterprise_n_x86_dvd_918707.iso.txt -deleted file mode 100644 -index 826ddc3..0000000 ---- a/tests/isodata/windows/win8/en_windows_8_enterprise_n_x86_dvd_918707.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: HRM_CENNA_X86FREV_EN-US_DV5 --Volume set id: HRM_CENNA_X86FREV_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1209545 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 5B8 1464 -diff --git a/tests/isodata/windows/win8/en_windows_8_enterprise_x64_dvd_917522.iso.lng b/tests/isodata/windows/win8/en_windows_8_enterprise_x64_dvd_917522.iso.lng -deleted file mode 100644 -index e46008a..0000000 ---- a/tests/isodata/windows/win8/en_windows_8_enterprise_x64_dvd_917522.iso.lng -+++ /dev/null -@@ -1,2 +0,0 @@ --[general] --l10n-language=en_US -diff --git a/tests/isodata/windows/win8/en_windows_8_enterprise_x64_dvd_917522.iso.txt b/tests/isodata/windows/win8/en_windows_8_enterprise_x64_dvd_917522.iso.txt -deleted file mode 100644 -index 99e4869..0000000 ---- a/tests/isodata/windows/win8/en_windows_8_enterprise_x64_dvd_917522.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: HRM_CENA_X64FREV_EN-US_DV5 --Volume set id: HRM_CENA_X64FREV_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1704547 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 86C 2156 -diff --git a/tests/isodata/windows/win8/en_windows_8_enterprise_x86_dvd_917587.iso.lng b/tests/isodata/windows/win8/en_windows_8_enterprise_x86_dvd_917587.iso.lng -deleted file mode 100644 -index e46008a..0000000 ---- a/tests/isodata/windows/win8/en_windows_8_enterprise_x86_dvd_917587.iso.lng -+++ /dev/null -@@ -1,2 +0,0 @@ --[general] --l10n-language=en_US -diff --git a/tests/isodata/windows/win8/en_windows_8_enterprise_x86_dvd_917587.iso.txt b/tests/isodata/windows/win8/en_windows_8_enterprise_x86_dvd_917587.iso.txt -deleted file mode 100644 -index 1d797ae..0000000 ---- a/tests/isodata/windows/win8/en_windows_8_enterprise_x86_dvd_917587.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: HRM_CENA_X86FREV_EN-US_DV5 --Volume set id: HRM_CENA_X86FREV_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1245681 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 5B8 1464 -diff --git a/tests/isodata/windows/win8/en_windows_8_n_debug_checked_build_x64_dvd_917562.iso.lng b/tests/isodata/windows/win8/en_windows_8_n_debug_checked_build_x64_dvd_917562.iso.lng -deleted file mode 100644 -index e46008a..0000000 ---- a/tests/isodata/windows/win8/en_windows_8_n_debug_checked_build_x64_dvd_917562.iso.lng -+++ /dev/null -@@ -1,2 +0,0 @@ --[general] --l10n-language=en_US -diff --git a/tests/isodata/windows/win8/en_windows_8_n_debug_checked_build_x64_dvd_917562.iso.txt b/tests/isodata/windows/win8/en_windows_8_n_debug_checked_build_x64_dvd_917562.iso.txt -deleted file mode 100644 -index fb36d7f..0000000 ---- a/tests/isodata/windows/win8/en_windows_8_n_debug_checked_build_x64_dvd_917562.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: HRM_CCSNA_X64CHK_EN-US_DV5 --Volume set id: HRM_CCSNA_X64CHK_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1724708 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 86C 2156 -diff --git a/tests/isodata/windows/win8/en_windows_8_n_debug_checked_build_x86_dvd_917564.iso.lng b/tests/isodata/windows/win8/en_windows_8_n_debug_checked_build_x86_dvd_917564.iso.lng -deleted file mode 100644 -index e46008a..0000000 ---- a/tests/isodata/windows/win8/en_windows_8_n_debug_checked_build_x86_dvd_917564.iso.lng -+++ /dev/null -@@ -1,2 +0,0 @@ --[general] --l10n-language=en_US -diff --git a/tests/isodata/windows/win8/en_windows_8_n_debug_checked_build_x86_dvd_917564.iso.txt b/tests/isodata/windows/win8/en_windows_8_n_debug_checked_build_x86_dvd_917564.iso.txt -deleted file mode 100644 -index ebe4ce7..0000000 ---- a/tests/isodata/windows/win8/en_windows_8_n_debug_checked_build_x86_dvd_917564.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: HRM_CCSNA_X86CHK_EN-US_DV5 --Volume set id: HRM_CCSNA_X86CHK_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1254316 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 5B8 1464 -diff --git a/tests/isodata/windows/win8/en_windows_8_n_x64_dvd_916091.iso.lng b/tests/isodata/windows/win8/en_windows_8_n_x64_dvd_916091.iso.lng -deleted file mode 100644 -index e46008a..0000000 ---- a/tests/isodata/windows/win8/en_windows_8_n_x64_dvd_916091.iso.lng -+++ /dev/null -@@ -1,2 +0,0 @@ --[general] --l10n-language=en_US -diff --git a/tests/isodata/windows/win8/en_windows_8_n_x64_dvd_916091.iso.txt b/tests/isodata/windows/win8/en_windows_8_n_x64_dvd_916091.iso.txt -deleted file mode 100644 -index 78a2e78..0000000 ---- a/tests/isodata/windows/win8/en_windows_8_n_x64_dvd_916091.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: HRM_CCSNA_X64FRE_EN-US_DV5 --Volume set id: HRM_CCSNA_X64FRE_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1664201 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 86C 2156 -diff --git a/tests/isodata/windows/win8/en_windows_8_n_x86_dvd_916097.iso.lng b/tests/isodata/windows/win8/en_windows_8_n_x86_dvd_916097.iso.lng -deleted file mode 100644 -index e46008a..0000000 ---- a/tests/isodata/windows/win8/en_windows_8_n_x86_dvd_916097.iso.lng -+++ /dev/null -@@ -1,2 +0,0 @@ --[general] --l10n-language=en_US -diff --git a/tests/isodata/windows/win8/en_windows_8_n_x86_dvd_916097.iso.txt b/tests/isodata/windows/win8/en_windows_8_n_x86_dvd_916097.iso.txt -deleted file mode 100644 -index d77a67c..0000000 ---- a/tests/isodata/windows/win8/en_windows_8_n_x86_dvd_916097.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: HRM_CCSNA_X86FRE_EN-US_DV5 --Volume set id: HRM_CCSNA_X86FRE_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1222325 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 5B8 1464 -diff --git a/tests/isodata/windows/win8/en_windows_8_pro_n_vl_x64_dvd_918677.iso.lng b/tests/isodata/windows/win8/en_windows_8_pro_n_vl_x64_dvd_918677.iso.lng -deleted file mode 100644 -index e46008a..0000000 ---- a/tests/isodata/windows/win8/en_windows_8_pro_n_vl_x64_dvd_918677.iso.lng -+++ /dev/null -@@ -1,2 +0,0 @@ --[general] --l10n-language=en_US -diff --git a/tests/isodata/windows/win8/en_windows_8_pro_n_vl_x64_dvd_918677.iso.txt b/tests/isodata/windows/win8/en_windows_8_pro_n_vl_x64_dvd_918677.iso.txt -deleted file mode 100644 -index 1403a52..0000000 ---- a/tests/isodata/windows/win8/en_windows_8_pro_n_vl_x64_dvd_918677.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: HRM_CPRNA_X64FREV_EN-US_DV5 --Volume set id: HRM_CPRNA_X64FREV_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1646852 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 86C 2156 -diff --git a/tests/isodata/windows/win8/en_windows_8_pro_n_vl_x86_dvd_918877.iso.lng b/tests/isodata/windows/win8/en_windows_8_pro_n_vl_x86_dvd_918877.iso.lng -deleted file mode 100644 -index e46008a..0000000 ---- a/tests/isodata/windows/win8/en_windows_8_pro_n_vl_x86_dvd_918877.iso.lng -+++ /dev/null -@@ -1,2 +0,0 @@ --[general] --l10n-language=en_US -diff --git a/tests/isodata/windows/win8/en_windows_8_pro_n_vl_x86_dvd_918877.iso.txt b/tests/isodata/windows/win8/en_windows_8_pro_n_vl_x86_dvd_918877.iso.txt -deleted file mode 100644 -index a571c00..0000000 ---- a/tests/isodata/windows/win8/en_windows_8_pro_n_vl_x86_dvd_918877.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: HRM_CPRNA_X86FREV_EN-US_DV5 --Volume set id: HRM_CPRNA_X86FREV_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1208409 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 5B8 1464 -diff --git a/tests/isodata/windows/win8/en_windows_8_pro_vl_x64_dvd_917699.iso.lng b/tests/isodata/windows/win8/en_windows_8_pro_vl_x64_dvd_917699.iso.lng -deleted file mode 100644 -index e46008a..0000000 ---- a/tests/isodata/windows/win8/en_windows_8_pro_vl_x64_dvd_917699.iso.lng -+++ /dev/null -@@ -1,2 +0,0 @@ --[general] --l10n-language=en_US -diff --git a/tests/isodata/windows/win8/en_windows_8_pro_vl_x64_dvd_917699.iso.txt b/tests/isodata/windows/win8/en_windows_8_pro_vl_x64_dvd_917699.iso.txt -deleted file mode 100644 -index 49c6951..0000000 ---- a/tests/isodata/windows/win8/en_windows_8_pro_vl_x64_dvd_917699.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: HRM_CPRA_X64FREV_EN-US_DV5 --Volume set id: HRM_CPRA_X64FREV_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1703196 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 86C 2156 -diff --git a/tests/isodata/windows/win8/en_windows_8_pro_vl_x86_dvd_917830.iso.lng b/tests/isodata/windows/win8/en_windows_8_pro_vl_x86_dvd_917830.iso.lng -deleted file mode 100644 -index e46008a..0000000 ---- a/tests/isodata/windows/win8/en_windows_8_pro_vl_x86_dvd_917830.iso.lng -+++ /dev/null -@@ -1,2 +0,0 @@ --[general] --l10n-language=en_US -diff --git a/tests/isodata/windows/win8/en_windows_8_pro_vl_x86_dvd_917830.iso.txt b/tests/isodata/windows/win8/en_windows_8_pro_vl_x86_dvd_917830.iso.txt -deleted file mode 100644 -index d0ea205..0000000 ---- a/tests/isodata/windows/win8/en_windows_8_pro_vl_x86_dvd_917830.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: HRM_CPRA_X86FREV_EN-US_DV5 --Volume set id: HRM_CPRA_X86FREV_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1244557 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 5B8 1464 -diff --git a/tests/isodata/windows/win8/en_windows_8_x64_dvd_915440.iso.lng b/tests/isodata/windows/win8/en_windows_8_x64_dvd_915440.iso.lng -deleted file mode 100644 -index e46008a..0000000 ---- a/tests/isodata/windows/win8/en_windows_8_x64_dvd_915440.iso.lng -+++ /dev/null -@@ -1,2 +0,0 @@ --[general] --l10n-language=en_US -diff --git a/tests/isodata/windows/win8/en_windows_8_x64_dvd_915440.iso.txt b/tests/isodata/windows/win8/en_windows_8_x64_dvd_915440.iso.txt -deleted file mode 100644 -index 56021b8..0000000 ---- a/tests/isodata/windows/win8/en_windows_8_x64_dvd_915440.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: HRM_CCSA_X64FRE_EN-US_DV5 --Volume set id: HRM_CCSA_X64FRE_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1748952 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 86C 2156 -diff --git a/tests/isodata/windows/win8/en_windows_8_x86_dvd_915417.iso.lng b/tests/isodata/windows/win8/en_windows_8_x86_dvd_915417.iso.lng -deleted file mode 100644 -index e46008a..0000000 ---- a/tests/isodata/windows/win8/en_windows_8_x86_dvd_915417.iso.lng -+++ /dev/null -@@ -1,2 +0,0 @@ --[general] --l10n-language=en_US -diff --git a/tests/isodata/windows/win8/en_windows_8_x86_dvd_915417.iso.txt b/tests/isodata/windows/win8/en_windows_8_x86_dvd_915417.iso.txt -deleted file mode 100644 -index bd314b0..0000000 ---- a/tests/isodata/windows/win8/en_windows_8_x86_dvd_915417.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: HRM_CCSA_X86FRE_EN-US_DV5 --Volume set id: HRM_CCSA_X86FRE_EN-US_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1285381 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 5B8 1464 -diff --git a/tests/isodata/windows/win8/fr_windows_8_x86_dvd_915420.iso.lng b/tests/isodata/windows/win8/fr_windows_8_x86_dvd_915420.iso.lng -deleted file mode 100644 -index e4519a7..0000000 ---- a/tests/isodata/windows/win8/fr_windows_8_x86_dvd_915420.iso.lng -+++ /dev/null -@@ -1,2 +0,0 @@ --[general] --l10n-language=fr_FR -diff --git a/tests/isodata/windows/win8/fr_windows_8_x86_dvd_915420.iso.txt b/tests/isodata/windows/win8/fr_windows_8_x86_dvd_915420.iso.txt -deleted file mode 100644 -index c287c6f..0000000 ---- a/tests/isodata/windows/win8/fr_windows_8_x86_dvd_915420.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: HRM_CCSA_X86FRE_FR-FR_DV5 --Volume set id: HRM_CCSA_X86FRE_FR-FR_DV5 --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.53 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1261770 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 8 -- Bootoff 697 1687 -diff --git a/tests/isodata/windows/winvista/en_windows_vista_business_sp2_x64_dvd_342327.iso.txt b/tests/isodata/windows/winvista/en_windows_vista_business_sp2_x64_dvd_342327.iso.txt -deleted file mode 100644 -index 9a0fedd..0000000 ---- a/tests/isodata/windows/winvista/en_windows_vista_business_sp2_x64_dvd_342327.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: FRTMBXVOL_EN_DVD --Volume set id: FRTMBXVOL_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1564919 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 265 613 -diff --git a/tests/isodata/windows/winvista/en_windows_vista_business_sp2_x86_dvd_342321.iso.txt b/tests/isodata/windows/winvista/en_windows_vista_business_sp2_x86_dvd_342321.iso.txt -deleted file mode 100644 -index 5866d68..0000000 ---- a/tests/isodata/windows/winvista/en_windows_vista_business_sp2_x86_dvd_342321.iso.txt -+++ /dev/null -@@ -1,31 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: FRTMBVOL_EN_DVD --Volume set id: FRTMBVOL_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1183921 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present -- --No SUSP/Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Cksum 4C 49 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 267 615 -diff --git a/tests/isodata/windows/winvista/en_windows_vista_business_with_service_pack_1_x64_dvd_x14-56048.iso.txt b/tests/isodata/windows/winvista/en_windows_vista_business_with_service_pack_1_x64_dvd_x14-56048.iso.txt -deleted file mode 100644 -index a53661c..0000000 ---- a/tests/isodata/windows/winvista/en_windows_vista_business_with_service_pack_1_x64_dvd_x14-56048.iso.txt -+++ /dev/null -@@ -1,31 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: FRMBXVOL_EN_DVD --Volume set id: FRMBXVOL_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1478120 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present -- --No SUSP/Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Cksum 4C 49 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 261 609 -diff --git a/tests/isodata/windows/winvista/en_windows_vista_business_with_service_pack_1_x86_dvd_x14-56028.iso.txt b/tests/isodata/windows/winvista/en_windows_vista_business_with_service_pack_1_x86_dvd_x14-56028.iso.txt -deleted file mode 100644 -index cd3537f..0000000 ---- a/tests/isodata/windows/winvista/en_windows_vista_business_with_service_pack_1_x86_dvd_x14-56028.iso.txt -+++ /dev/null -@@ -1,31 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: FRMBVOL_EN_DVD --Volume set id: FRMBVOL_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1125880 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present -- --No SUSP/Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Cksum 4C 49 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 263 611 -diff --git a/tests/isodata/windows/winvista/en_windows_vista_enterprise_sp2_x64_dvd_342332.iso.txt b/tests/isodata/windows/winvista/en_windows_vista_enterprise_sp2_x64_dvd_342332.iso.txt -deleted file mode 100644 -index 16d2c5e..0000000 ---- a/tests/isodata/windows/winvista/en_windows_vista_enterprise_sp2_x64_dvd_342332.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: FRTMEXVOL_EN_DVD --Volume set id: FRTMEXVOL_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1565407 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 265 613 -diff --git a/tests/isodata/windows/winvista/en_windows_vista_enterprise_sp2_x86_dvd_342329.iso.txt b/tests/isodata/windows/winvista/en_windows_vista_enterprise_sp2_x86_dvd_342329.iso.txt -deleted file mode 100644 -index de73c15..0000000 ---- a/tests/isodata/windows/winvista/en_windows_vista_enterprise_sp2_x86_dvd_342329.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: FRTMEVOL_EN_DVD --Volume set id: FRTMEVOL_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1182120 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 267 615 -diff --git a/tests/isodata/windows/winvista/en_windows_vista_enterprise_with_service_pack_1_x64_dvd_unknown.iso.txt b/tests/isodata/windows/winvista/en_windows_vista_enterprise_with_service_pack_1_x64_dvd_unknown.iso.txt -deleted file mode 100644 -index fbd56e0..0000000 ---- a/tests/isodata/windows/winvista/en_windows_vista_enterprise_with_service_pack_1_x64_dvd_unknown.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: FRMCXFRE_EN_DVD --Volume set id: FRMCXFRE_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1919276 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 261 609 -diff --git a/tests/isodata/windows/winvista/en_windows_vista_enterprise_with_service_pack_1_x64_dvd_x14-55934.iso.txt b/tests/isodata/windows/winvista/en_windows_vista_enterprise_with_service_pack_1_x64_dvd_x14-55934.iso.txt -deleted file mode 100644 -index 4d59c99..0000000 ---- a/tests/isodata/windows/winvista/en_windows_vista_enterprise_with_service_pack_1_x64_dvd_x14-55934.iso.txt -+++ /dev/null -@@ -1,31 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: FRMEXVOL_EN_DVD --Volume set id: FRMEXVOL_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1478492 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present -- --No SUSP/Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Cksum 4C 49 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 261 609 -diff --git a/tests/isodata/windows/winvista/en_windows_vista_enterprise_with_service_pack_1_x86_dvd_unknown.iso.txt b/tests/isodata/windows/winvista/en_windows_vista_enterprise_with_service_pack_1_x86_dvd_unknown.iso.txt -deleted file mode 100644 -index 81aa52e..0000000 ---- a/tests/isodata/windows/winvista/en_windows_vista_enterprise_with_service_pack_1_x86_dvd_unknown.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: FRMCFRE_EN_DVD --Volume set id: FRMCFRE_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1506908 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 264 612 -diff --git a/tests/isodata/windows/winvista/en_windows_vista_enterprise_with_service_pack_1_x86_dvd_x14-55954.iso.txt b/tests/isodata/windows/winvista/en_windows_vista_enterprise_with_service_pack_1_x86_dvd_x14-55954.iso.txt -deleted file mode 100644 -index 95a768a..0000000 ---- a/tests/isodata/windows/winvista/en_windows_vista_enterprise_with_service_pack_1_x86_dvd_x14-55954.iso.txt -+++ /dev/null -@@ -1,31 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: FRMEVOL_EN_DVD --Volume set id: FRMEVOL_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1125438 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present -- --No SUSP/Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Cksum 4C 49 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 263 611 -diff --git a/tests/isodata/windows/winvista/en_windows_vista_enterprise_with_service_pack_2_beta_x86_288250.iso.txt b/tests/isodata/windows/winvista/en_windows_vista_enterprise_with_service_pack_2_beta_x86_288250.iso.txt -deleted file mode 100644 -index bf84241..0000000 ---- a/tests/isodata/windows/winvista/en_windows_vista_enterprise_with_service_pack_2_beta_x86_288250.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: FB1EVOL_EN_DVD --Volume set id: FB1EVOL_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1185707 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 25F 607 -diff --git a/tests/isodata/windows/winvista/en_windows_vista_enterprise_with_sp2_beta_x64_288254.iso.txt b/tests/isodata/windows/winvista/en_windows_vista_enterprise_with_sp2_beta_x64_288254.iso.txt -deleted file mode 100644 -index e2d8ddd..0000000 ---- a/tests/isodata/windows/winvista/en_windows_vista_enterprise_with_sp2_beta_x64_288254.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: FB1EXVOL_EN_DVD --Volume set id: FB1EXVOL_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.54 (01/01/2005 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1572259 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 25D 605 -diff --git a/tests/isodata/windows/winvista/en_windows_vista_x64_dvd_X12-40712.iso.txt b/tests/isodata/windows/winvista/en_windows_vista_x64_dvd_X12-40712.iso.txt -deleted file mode 100644 -index 12fa9ed..0000000 ---- a/tests/isodata/windows/winvista/en_windows_vista_x64_dvd_X12-40712.iso.txt -+++ /dev/null -@@ -1,31 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: LRMCXFRE_EN_DVD --Volume set id: LRMCXFRE_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.52 (03/09/2004 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1853755 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present -- --No SUSP/Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Cksum 4C 49 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 225 549 -diff --git a/tests/isodata/windows/winvista/en_windows_vista_x64_dvd_x12-40712.iso.txt b/tests/isodata/windows/winvista/en_windows_vista_x64_dvd_x12-40712.iso.txt -deleted file mode 100644 -index 1f0b4be..0000000 ---- a/tests/isodata/windows/winvista/en_windows_vista_x64_dvd_x12-40712.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: LRMCXFRE_EN_DVD --Volume set id: LRMCXFRE_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.52 (03/09/2004 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1853755 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 225 549 -diff --git a/tests/isodata/windows/winvista/en_windows_vista_x86_dvd_X12-34293.iso.txt b/tests/isodata/windows/winvista/en_windows_vista_x86_dvd_X12-34293.iso.txt -deleted file mode 100644 -index d147e4d..0000000 ---- a/tests/isodata/windows/winvista/en_windows_vista_x86_dvd_X12-34293.iso.txt -+++ /dev/null -@@ -1,31 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: LRMCFRE_EN_DVD --Volume set id: LRMCFRE_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.52 (03/09/2004 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1307917 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present -- --No SUSP/Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Cksum 4C 49 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 227 551 -diff --git a/tests/isodata/windows/winvista/en_windows_vista_x86_dvd_x12-34293.iso.txt b/tests/isodata/windows/winvista/en_windows_vista_x86_dvd_x12-34293.iso.txt -deleted file mode 100644 -index a226e74..0000000 ---- a/tests/isodata/windows/winvista/en_windows_vista_x86_dvd_x12-34293.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: LRMCFRE_EN_DVD --Volume set id: LRMCFRE_EN_DVD --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.52 (03/09/2004 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 1307917 --El Torito VD version 1 found, boot catalog is in sector 22 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 227 551 -diff --git a/tests/isodata/windows/winxp/cs_windows_xp_professional_with_service_pack_3_x86_cd_x14-80416.iso.txt b/tests/isodata/windows/winxp/cs_windows_xp_professional_with_service_pack_3_x86_cd_x14-80416.iso.txt -deleted file mode 100644 -index 7e8679f..0000000 ---- a/tests/isodata/windows/winxp/cs_windows_xp_professional_with_service_pack_3_x86_cd_x14-80416.iso.txt -+++ /dev/null -@@ -1,31 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GRTMPFPP_CS --Volume set id: GRTMPFPP_CS --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.52 (03/09/2004 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 303200 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -- --No SUSP/Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Cksum 4C 49 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 147 327 -diff --git a/tests/isodata/windows/winxp/cz_winxp_pro_with_sp2.iso.txt b/tests/isodata/windows/winxp/cz_winxp_pro_with_sp2.iso.txt -deleted file mode 100644 -index b73b985..0000000 ---- a/tests/isodata/windows/winxp/cz_winxp_pro_with_sp2.iso.txt -+++ /dev/null -@@ -1,31 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: VX2PFPP_CS --Volume set id: VX2PFPP_CS --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.52 (03/09/2004 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 302811 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -- --No SUSP/Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Cksum 4C 49 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 145 325 -diff --git a/tests/isodata/windows/winxp/en_winXP_Pro_x86_build2600_ISO.img.txt b/tests/isodata/windows/winxp/en_winXP_Pro_x86_build2600_ISO.img.txt -deleted file mode 100644 -index ba5d9aa..0000000 ---- a/tests/isodata/windows/winxp/en_winXP_Pro_x86_build2600_ISO.img.txt -+++ /dev/null -@@ -1,31 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: WXPFPP_EN --Volume set id: WXPFPP_EN --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.46 (10/12/2000 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 250167 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -- --No SUSP/Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Cksum 4C 49 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 125 293 -diff --git a/tests/isodata/windows/winxp/en_win_xp_pro_n.iso.txt b/tests/isodata/windows/winxp/en_win_xp_pro_n.iso.txt -deleted file mode 100644 -index b2ad945..0000000 ---- a/tests/isodata/windows/winxp/en_win_xp_pro_n.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: VX2PRMFPP_EN --Volume set id: VX2PRMFPP_EN --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.52 (03/09/2004 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 309377 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 153 339 -diff --git a/tests/isodata/windows/winxp/en_windows_xp_professional_n_with_service_pack_3_x86_cd_x14-92445.iso.txt b/tests/isodata/windows/winxp/en_windows_xp_professional_n_with_service_pack_3_x86_cd_x14-92445.iso.txt -deleted file mode 100644 -index a4b06bf..0000000 ---- a/tests/isodata/windows/winxp/en_windows_xp_professional_n_with_service_pack_3_x86_cd_x14-92445.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GRTMPRMFPP_EN --Volume set id: GRTMPRMFPP_EN --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.52 (03/09/2004 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 306092 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 15C 348 -diff --git a/tests/isodata/windows/winxp/en_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-73974.iso.txt b/tests/isodata/windows/winxp/en_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-73974.iso.txt -deleted file mode 100644 -index 91a3280..0000000 ---- a/tests/isodata/windows/winxp/en_windows_xp_professional_with_service_pack_3_x86_cd_vl_x14-73974.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GRTMPVOL_EN --Volume set id: GRTMPVOL_EN --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.52 (03/09/2004 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 301638 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 159 345 -diff --git a/tests/isodata/windows/winxp/en_windows_xp_professional_with_service_pack_3_x86_cd_x14-80428.iso.txt b/tests/isodata/windows/winxp/en_windows_xp_professional_with_service_pack_3_x86_cd_x14-80428.iso.txt -deleted file mode 100644 -index 4348b3e..0000000 ---- a/tests/isodata/windows/winxp/en_windows_xp_professional_with_service_pack_3_x86_cd_x14-80428.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GRTMPFPP_EN --Volume set id: GRTMPFPP_EN --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.52 (03/09/2004 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 301639 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 159 345 -diff --git a/tests/isodata/windows/winxp/en_windows_xp_professional_x64.iso.txt b/tests/isodata/windows/winxp/en_windows_xp_professional_x64.iso.txt -deleted file mode 100644 -index f9d6e61..0000000 ---- a/tests/isodata/windows/winxp/en_windows_xp_professional_x64.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: AX2PXFPP_EN --Volume set id: AX2PXFPP_EN --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.52 (03/09/2004 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 299887 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff E9 233 -diff --git a/tests/isodata/windows/winxp/en_windows_xp_professional_x64_chk.iso.txt b/tests/isodata/windows/winxp/en_windows_xp_professional_x64_chk.iso.txt -deleted file mode 100644 -index dd9d8a2..0000000 ---- a/tests/isodata/windows/winxp/en_windows_xp_professional_x64_chk.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: AX2PXCFPP_EN --Volume set id: AX2PXCFPP_EN --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.52 (03/09/2004 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 321301 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff E8 232 -diff --git a/tests/isodata/windows/winxp/en_winxp_mce_2005_cd1.iso.txt b/tests/isodata/windows/winxp/en_winxp_mce_2005_cd1.iso.txt -deleted file mode 100644 -index 728a80c..0000000 ---- a/tests/isodata/windows/winxp/en_winxp_mce_2005_cd1.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: MX2PFPP_EN --Volume set id: MX2PFPP_EN --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.52 (03/09/2004 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 300932 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 156 342 -diff --git a/tests/isodata/windows/winxp/en_winxp_mce_2005_cd2.iso.txt b/tests/isodata/windows/winxp/en_winxp_mce_2005_cd2.iso.txt -deleted file mode 100644 -index 2c81497..0000000 ---- a/tests/isodata/windows/winxp/en_winxp_mce_2005_cd2.iso.txt -+++ /dev/null -@@ -1,16 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: MRMSD2_EN --Volume set id: MRMSD2_EN --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.52 (03/09/2004 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 132247 --NO Joliet present --NO Rock Ridge present -diff --git a/tests/isodata/windows/winxp/en_winxp_pro_with_sp2.iso.txt b/tests/isodata/windows/winxp/en_winxp_pro_with_sp2.iso.txt -deleted file mode 100644 -index f870ed2..0000000 ---- a/tests/isodata/windows/winxp/en_winxp_pro_with_sp2.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: VX2PFPP_EN --Volume set id: VX2PFPP_EN --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.52 (03/09/2004 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 300348 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 156 342 -diff --git a/tests/isodata/windows/winxp/en_winxp_sp1a_tablet_pc_cd1.iso.txt b/tests/isodata/windows/winxp/en_winxp_sp1a_tablet_pc_cd1.iso.txt -deleted file mode 100644 -index c657754..0000000 ---- a/tests/isodata/windows/winxp/en_winxp_sp1a_tablet_pc_cd1.iso.txt -+++ /dev/null -@@ -1,31 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: X1APFPP_EN --Volume set id: X1APFPP_EN --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.47 (10/12/2000 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 274232 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -- --No SUSP/Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Cksum 4C 49 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 141 321 -diff --git a/tests/isodata/windows/winxp/en_winxp_tablet_2005_CD1.iso.txt b/tests/isodata/windows/winxp/en_winxp_tablet_2005_CD1.iso.txt -deleted file mode 100644 -index 2827e70..0000000 ---- a/tests/isodata/windows/winxp/en_winxp_tablet_2005_CD1.iso.txt -+++ /dev/null -@@ -1,31 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: VX2PFPP_EN --Volume set id: VX2PFPP_EN --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.52 (03/09/2004 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 300348 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present -- --No SUSP/Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Cksum 4C 49 OK -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 156 342 -diff --git a/tests/isodata/windows/winxp/en_winxp_tablet_2005_CD2.iso.txt b/tests/isodata/windows/winxp/en_winxp_tablet_2005_CD2.iso.txt -deleted file mode 100644 -index 0ab2e04..0000000 ---- a/tests/isodata/windows/winxp/en_winxp_tablet_2005_CD2.iso.txt -+++ /dev/null -@@ -1,17 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: VRMSD2_EN --Volume set id: VRMSD2_EN --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.52 (03/09/2004 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 98327 --NO Joliet present -- --No SUSP/Rock Ridge present -diff --git a/tests/isodata/windows/winxp/en_winxp_tablet_cd2.iso.txt b/tests/isodata/windows/winxp/en_winxp_tablet_cd2.iso.txt -deleted file mode 100644 -index af23703..0000000 ---- a/tests/isodata/windows/winxp/en_winxp_tablet_cd2.iso.txt -+++ /dev/null -@@ -1,17 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: XRMSD2_EN --Volume set id: XRMSD2_EN --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.47 (10/12/2000 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 78145 --NO Joliet present -- --No SUSP/Rock Ridge present -diff --git a/tests/isodata/windows/winxp/ru_windows_xp_home_with_service_pack_3_x86_cd_x14-92426.iso.txt b/tests/isodata/windows/winxp/ru_windows_xp_home_with_service_pack_3_x86_cd_x14-92426.iso.txt -deleted file mode 100644 -index cde9552..0000000 ---- a/tests/isodata/windows/winxp/ru_windows_xp_home_with_service_pack_3_x86_cd_x14-92426.iso.txt -+++ /dev/null -@@ -1,29 +0,0 @@ --CD-ROM is in ISO 9660 format --System id: --Volume id: GRTMHFPP_RU --Volume set id: GRTMHFPP_RU --Publisher id: MICROSOFT CORPORATION --Data preparer id: MICROSOFT CORPORATION, ONE MICROSOFT WAY, REDMOND WA 98052, (425) 882-8080 --Application id: CDIMAGE 2.52 (03/09/2004 TM) --Copyright File id: --Abstract File id: --Bibliographic File id: --Volume set size is: 1 --Volume set sequence number is: 1 --Logical block size is: 2048 --Volume size is: 294726 --El Torito VD version 1 found, boot catalog is in sector 19 --NO Joliet present --NO Rock Ridge present --Eltorito validation header: -- Hid 1 -- Arch 0 (x86) -- ID 'Microsoft Corporation' -- Key 55 AA -- Eltorito defaultboot header: -- Bootid 88 (bootable) -- Boot media 0 (No Emulation Boot) -- Load segment 0 -- Sys type 0 -- Nsect 4 -- Bootoff 13E 318 -diff --git a/tests/test-isodetect.c b/tests/test-isodetect.c -deleted file mode 100644 -index db7b108..0000000 ---- a/tests/test-isodetect.c -+++ /dev/null -@@ -1,463 +0,0 @@ --/* -- * Copyright (C) 2009-2012, 2014 Red Hat, Inc. -- * -- * This program is free software; you can redistribute it and/or modify -- * it under the terms of the GNU General Public License as published by -- * the Free Software Foundation; either version 2 of the License, or -- * (at your option) any later version. -- * -- * This program is distributed in the hope that it will be useful, -- * but WITHOUT ANY WARRANTY; without even the implied warranty of -- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- * GNU General Public License for more details. -- * -- * You should have received a copy of the GNU General Public License along -- * with this program. If not, see -- * -- * Authors: -- * Daniel P. Berrange -- */ -- --#include -- --#include --#include --#include -- --struct ISOInfo { -- gchar *shortid; -- gchar *filename; -- OsinfoMedia *media; -- GHashTable *langs; --}; -- --static void free_iso(struct ISOInfo *info) --{ -- if (!info) -- return; -- -- g_free(info->filename); -- g_free(info->shortid); -- if (info->media) -- g_object_unref(info->media); -- if (info->langs) -- g_hash_table_unref(info->langs); -- g_free(info); --} -- --/* void* wrapper for free_iso, so it can be used where a void* parameter -- * is required (e.g. g_list_free_full), with no need for casts. -- */ --static void free_iso_void(void *info) --{ -- free_iso((struct ISOInfo *)info); --} -- --static gboolean load_langs(GFile *file, struct ISOInfo *info, GError **error) --{ -- char *path; -- GKeyFile *lang_file; -- GStrv langs; -- GStrv it; -- -- path = g_file_get_path(file); -- if (path == NULL) -- return FALSE; -- if (!g_str_has_suffix(path, ".txt")) { -- g_free(path); -- return FALSE; -- } -- strcpy(&path[strlen(path) - sizeof(".txt") + 1], ".lng"); -- lang_file = g_key_file_new(); -- if (!g_key_file_load_from_file(lang_file, path, G_KEY_FILE_NONE, NULL)) { -- g_key_file_free(lang_file); -- g_free(path); -- return FALSE; -- } -- langs = g_key_file_get_string_list(lang_file, "general", "l10n-language", -- NULL, NULL); -- if (langs == NULL) { -- g_key_file_free(lang_file); -- g_free(path); -- return FALSE; -- } -- -- for (it = langs; (it != NULL) && (*it != NULL); it++) { -- g_hash_table_add(info->langs, g_strdup(*it)); -- } -- -- g_strfreev(langs); -- g_key_file_free(lang_file); -- g_free(path); -- -- return TRUE; --} -- --static struct ISOInfo *load_iso(GFile *file, const gchar *shortid, const gchar *name, GError **error) --{ -- struct ISOInfo *info = g_new0(struct ISOInfo, 1); -- GFileInputStream *fis = NULL; -- GDataInputStream *dis = NULL; -- gchar *line; -- const gchar *arch; -- gint64 vol_size = -1, blk_size = -1; -- -- if (!(fis = g_file_read(file, NULL, error))) -- goto error; -- -- if (!(dis = g_data_input_stream_new(G_INPUT_STREAM(fis)))) -- goto error; -- -- info->filename = g_strdup(name); -- info->shortid = g_strdup(shortid); -- info->langs = g_hash_table_new_full(g_str_hash, g_str_equal, g_free, NULL); -- if (strstr(name, "amd64") || -- strstr(name, "x64") || -- strstr(name, "X64") || -- strstr(name, "x86_64") || -- strstr(name, "64bit") || -- strstr(name, "64-bit")) -- arch = "x86_64"; -- else if (strstr(name, "i386") || -- strstr(name, "i586") || -- strstr(name, "i686") || -- strstr(name, "x86") || -- strstr(name, "X86") || -- strstr(name, "32bit") || -- strstr(name, "32-bit")) -- arch = "i386"; -- else if (strstr(name, "ppc") || -- strstr(name, "powerpc")) -- arch = "ppc"; -- else if (strstr(name, "hppa")) -- arch = "hppa"; -- else if (strstr(name, "sparc")) -- arch = "sparc"; -- else if (strstr(name, "ia64")) -- arch = "ia64"; -- else if (strstr(name, "s390x")) -- arch = "s390x"; -- else if (strstr(name, "aarch64") || -- strstr(name, "arm64")) -- arch = "aarch64"; -- else if (strstr(name, "armv7l") || -- strstr(name, "armv7hl") || -- strstr(name, "armhf")) -- arch = "armv7l"; -- else { -- g_debug("Unknown arch in %s", name); -- arch = "i386"; -- } -- -- info->media = osinfo_media_new(name, arch); -- -- while ((line = g_data_input_stream_read_line(dis, NULL, NULL, error)) != NULL) { -- const gchar *key = NULL; -- char *value = NULL; -- -- if (g_str_has_prefix(line, "Volume id: ")) { -- key = OSINFO_MEDIA_PROP_VOLUME_ID; -- value = line + strlen("Volume id: "); -- } else if (g_str_has_prefix(line, "Publisher id: ")) { -- key = OSINFO_MEDIA_PROP_PUBLISHER_ID; -- value = line + strlen("Publisher id: "); -- } else if (g_str_has_prefix(line, "System id: ")) { -- key = OSINFO_MEDIA_PROP_SYSTEM_ID; -- value = line + strlen("System id: "); -- } else if (g_str_has_prefix(line, "Application id: ")) { -- key = OSINFO_MEDIA_PROP_APPLICATION_ID; -- value = line + strlen("Application id: "); -- } else if (g_str_has_prefix(line, "Logical block size is: ")) { -- blk_size = (gint64) atoll(line + strlen("Logical block size is: ")); -- } else if (g_str_has_prefix(line, "Volume size is: ")) { -- vol_size = atoll(line + strlen("Volume size is: ")); -- } -- -- if (key != NULL && value != NULL && value[0] != '\0') -- osinfo_entity_set_param(OSINFO_ENTITY(info->media), key, value); -- -- g_free(line); -- } -- -- if (vol_size > 0 && blk_size > 0) -- osinfo_entity_set_param_int64(OSINFO_ENTITY(info->media), -- OSINFO_MEDIA_PROP_VOLUME_SIZE, -- vol_size * blk_size); -- -- if (*error) -- goto error; -- -- load_langs(file, info, error); -- -- cleanup: -- if (fis) -- g_object_unref(fis); -- -- if (dis) -- g_object_unref(dis); -- -- return info; -- -- error: -- free_iso(info); -- info = NULL; -- goto cleanup; --} -- -- --static GList *load_distro(GFile *dir, const gchar *shortid, GError **error) { -- GFileEnumerator *children = g_file_enumerate_children(dir, -- "standard::*", -- G_FILE_QUERY_INFO_NONE, -- NULL, -- error); -- GFileInfo *childinfo; -- GList *ret = NULL; -- -- if (!children) -- return NULL; -- -- while ((childinfo = g_file_enumerator_next_file(children, NULL, error)) != NULL) { -- if (g_file_info_get_file_type(childinfo) != G_FILE_TYPE_REGULAR) { -- g_object_unref(childinfo); -- continue; -- } -- -- if (!g_str_has_suffix(g_file_info_get_name(childinfo), ".txt")) { -- g_object_unref(childinfo); -- continue; -- } -- -- GFile *child = g_file_get_child(dir, g_file_info_get_name(childinfo)); -- struct ISOInfo *iso = load_iso(child, -- shortid, -- g_file_info_get_name(childinfo), -- error); -- g_object_unref(child); -- g_object_unref(childinfo); -- -- if (!iso) -- goto error; -- -- ret = g_list_append(ret, iso); -- } -- -- if (*error) -- goto error; -- -- cleanup: -- g_object_unref(children); -- -- return ret; -- -- error: -- g_list_free_full(ret, free_iso_void); -- ret = NULL; -- goto cleanup; --} -- -- --static GList *load_distros(GFile *dir, GError **error) --{ -- GFileEnumerator *children = g_file_enumerate_children(dir, -- "standard::*", -- G_FILE_QUERY_INFO_NONE, -- NULL, -- error); -- GFileInfo *childinfo; -- GList *ret = NULL; -- -- if (!children) -- return NULL; -- -- while ((childinfo = g_file_enumerator_next_file(children, NULL, error)) != NULL) { -- if (g_file_info_get_file_type(childinfo) != G_FILE_TYPE_DIRECTORY) { -- g_object_unref(childinfo); -- continue; -- } -- -- GFile *child = g_file_get_child(dir, g_file_info_get_name(childinfo)); -- GList *isos = load_distro(child, g_file_info_get_name(childinfo), error); -- -- g_object_unref(child); -- g_object_unref(childinfo); -- -- if (!isos && *error) -- goto error; -- ret = g_list_concat(ret, isos); -- } -- -- if (*error) -- goto error; -- -- cleanup: -- g_object_unref(children); -- -- return ret; -- -- error: -- g_list_free_full(ret, free_iso_void); -- ret = NULL; -- goto cleanup; --} -- -- --static GList *load_isos(const gchar *vendor, GError **error) --{ -- gchar *path = g_strdup_printf(SRCDIR "/tests/isodata/%s", vendor); -- GList *ret = NULL; -- GFile *f = g_file_new_for_path(path); -- -- ret = load_distros(f, error); -- -- g_object_unref(f); -- g_free(path); -- return ret; --} -- --static GList *load_vendors(GError **error) --{ -- GFile *dir = g_file_new_for_path(SRCDIR "/tests/isodata"); -- GFileEnumerator *children = g_file_enumerate_children(dir, -- "standard::*", -- G_FILE_QUERY_INFO_NONE, -- NULL, -- error); -- GFileInfo *childinfo; -- GList *ret = NULL; -- -- if (!children) -- return NULL; -- -- while ((childinfo = g_file_enumerator_next_file(children, NULL, error)) != NULL) { -- if (g_file_info_get_file_type(childinfo) != G_FILE_TYPE_DIRECTORY) { -- g_object_unref(childinfo); -- continue; -- } -- -- ret = g_list_prepend(ret, g_strdup(g_file_info_get_name(childinfo))); -- -- g_object_unref(childinfo); -- } -- -- if (error && *error) -- goto error; -- -- cleanup: -- g_object_unref(children); -- g_object_unref(dir); -- -- return ret; -- -- error: -- g_list_free_full(ret, g_free); -- ret = NULL; -- goto cleanup; --} -- -- --static void test_langs(struct ISOInfo *info) --{ -- GList *langs; -- GList *it; -- -- /* exit early if there was no associated .lng file */ -- if (g_hash_table_size(info->langs) == 0) -- return; -- -- langs = osinfo_media_get_languages(info->media); -- -- for (it = langs; it != NULL; it = it->next) { -- g_test_message("checking ISO %s, language %s", -- info->filename, (const char *)it->data); -- g_assert_true(g_hash_table_contains(info->langs, it->data)); -- g_hash_table_remove(info->langs, it->data); -- } -- g_list_free(langs); -- g_assert_cmpint(g_hash_table_size(info->langs), ==, 0); --} -- --static void test_one(const gchar *vendor) --{ -- OsinfoLoader *loader = osinfo_loader_new(); -- OsinfoDb *db = osinfo_loader_get_db(loader); -- GList *isos = NULL; -- GList *tmp; -- GError *error = NULL; -- -- g_assert_true(OSINFO_IS_LOADER(loader)); -- g_assert_true(OSINFO_IS_DB(db)); -- -- osinfo_loader_process_default_path(loader, &error); -- g_assert_no_error(error); -- -- isos = load_isos(vendor, &error); -- -- g_assert_nonnull(isos); -- -- for (tmp = isos; tmp; tmp = tmp->next) { -- struct ISOInfo *info = tmp->data; -- gboolean matched = osinfo_db_identify_media(db, info->media); -- OsinfoOs *os; -- -- g_test_message("checking OS %s for ISO %s", -- info->shortid, info->filename); -- if (!matched) { -- g_printerr("ISO %s was not matched by OS %s\n/isodetect/%s: ", -- info->filename, info->shortid, vendor); -- g_test_fail(); -- continue; -- } -- -- g_object_get(info->media, "os", &os, NULL); -- const gchar *shortid = osinfo_product_get_short_id(OSINFO_PRODUCT(os)); -- g_assert_cmpstr(shortid, ==, info->shortid); -- g_object_unref(G_OBJECT(os)); -- test_langs(info); -- } -- -- g_list_free_full(isos, free_iso_void); -- -- g_object_unref(loader); --} -- --int --main(int argc, char *argv[]) --{ -- g_test_init(&argc, &argv, NULL); -- g_test_set_nonfatal_assertions(); -- -- GList *vendors = load_vendors(NULL); -- GList *it; -- for (it = vendors; it != NULL; it = it->next) { -- char *vendor = (char *)it->data; -- char *test_path = g_strdup_printf("/isodetect/%s", vendor); -- -- g_test_add_data_func_full(test_path, vendor, (GTestDataFunc)test_one, g_free); -- -- g_free(test_path); -- -- } -- g_list_free(vendors); -- -- /* Upfront so we don't confuse valgrind */ -- osinfo_entity_get_type(); -- osinfo_db_get_type(); -- osinfo_device_get_type(); -- osinfo_platform_get_type(); -- osinfo_os_get_type(); -- osinfo_list_get_type(); -- osinfo_devicelist_get_type(); -- osinfo_platformlist_get_type(); -- osinfo_oslist_get_type(); -- osinfo_filter_get_type(); -- -- return g_test_run(); --} --/* -- * Local variables: -- * indent-tabs-mode: nil -- * c-indent-level: 4 -- * c-basic-offset: 4 -- * End: -- */ --- -2.20.1 - diff --git a/0005-test-os-Remove-test_resources_minimum_recommended_ma.patch b/0005-test-os-Remove-test_resources_minimum_recommended_ma.patch deleted file mode 100644 index 5abd155..0000000 --- a/0005-test-os-Remove-test_resources_minimum_recommended_ma.patch +++ /dev/null @@ -1,187 +0,0 @@ -From afdc58833731620db11bb07610773acd69064cf6 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= -Date: Tue, 19 Mar 2019 13:17:03 +0100 -Subject: [PATCH] test-os: Remove test_resources_minimum_recommended_maximum -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -This test is now part of osinfo-db. - -Signed-off-by: Fabiano Fidêncio -Reviewed-by: Cole Robinson ---- - tests/test-os.c | 150 ------------------------------------------------ - 1 file changed, 150 deletions(-) - -diff --git a/tests/test-os.c b/tests/test-os.c -index 178bd15..80f866b 100644 ---- a/tests/test-os.c -+++ b/tests/test-os.c -@@ -270,154 +270,6 @@ static void test_resources_basic(void) - } - - --static void test_n_cpus(OsinfoResources *resources1, OsinfoResources *resources2) --{ -- gint resources1_cpus, resources2_cpus; -- -- resources1_cpus = osinfo_resources_get_n_cpus(resources1); -- resources2_cpus = osinfo_resources_get_n_cpus(resources2); -- -- if (resources2_cpus >= 0 && resources1_cpus >= 0) -- g_assert_true(resources2_cpus >= resources1_cpus); --} -- -- --static void test_cpu(OsinfoResources *resources1, OsinfoResources *resources2) --{ -- gint64 resources1_cpu, resources2_cpu; -- -- resources1_cpu = osinfo_resources_get_cpu(resources1); -- resources2_cpu = osinfo_resources_get_cpu(resources2); -- -- if (resources2_cpu >= 0 && resources1_cpu >= 0) -- g_assert_true(resources2_cpu >= resources1_cpu); --} -- -- --static void test_ram(OsinfoResources *resources1, OsinfoResources *resources2) --{ -- gint64 resources1_ram, resources2_ram; -- -- resources1_ram = osinfo_resources_get_ram(resources1); -- resources2_ram = osinfo_resources_get_ram(resources2); -- -- if (resources2_ram >= 0 && resources1_ram >= 0) -- g_assert_true(resources2_ram >= resources1_ram); --} -- -- --static void test_storage(OsinfoResources *resources1, OsinfoResources *resources2) --{ -- gint64 resources1_storage, resources2_storage; -- -- resources1_storage = osinfo_resources_get_storage(resources1); -- resources2_storage = osinfo_resources_get_storage(resources2); -- -- if (resources2_storage >= 0 && resources1_storage >= 0) -- g_assert_true(resources2_storage >= resources1_storage); --} -- -- --static void --compare_resources(OsinfoOs *os, -- OsinfoList *resourceslist1, -- OsinfoList *resourceslist2) --{ -- GList *list1, *list2; -- GList *it1, *it2; -- -- list1 = osinfo_list_get_elements(resourceslist1); -- list2 = osinfo_list_get_elements(resourceslist2); -- -- if (list1 == NULL || list2 == NULL) -- return; -- -- for (it1 = list1; it1 != NULL; it1 = it1->next) { -- OsinfoResources *resources1 = it1->data; -- const gchar *arch1; -- -- arch1 = osinfo_resources_get_architecture(resources1); -- -- for (it2 = list2; it2 != NULL; it2 = it2->next) { -- OsinfoResources *resources2 = it2->data; -- const gchar *arch2 = osinfo_resources_get_architecture(resources2); -- -- if (g_str_equal(arch1, arch2)) { -- const gchar *name; -- -- name = osinfo_product_get_name(OSINFO_PRODUCT(os)); -- -- g_test_message("checking %s (architecture: %s)", -- name, arch1); -- -- test_n_cpus(resources1, resources2); -- test_cpu(resources1, resources2); -- test_ram(resources1, resources2); -- test_storage(resources1, resources2); -- break; -- } -- } -- } --} -- -- --static void --test_resources_minimum_recommended_maximum(void) --{ -- OsinfoLoader *loader = osinfo_loader_new(); -- OsinfoDb *db = osinfo_loader_get_db(loader); -- OsinfoOsList *oslist; -- GList *oses; -- GList *oses_it; -- GError *error = NULL; -- -- g_assert_true(OSINFO_IS_LOADER(loader)); -- g_assert_true(OSINFO_IS_DB(db)); -- -- osinfo_loader_process_default_path(loader, &error); -- g_assert_no_error(error); -- -- oslist = osinfo_db_get_os_list(db); -- oses = osinfo_list_get_elements(OSINFO_LIST(oslist)); -- -- for (oses_it = oses; oses_it != NULL; oses_it = oses_it->next) { -- OsinfoOs *os = oses_it->data; -- OsinfoResourcesList *minimum_list, *recommended_list, *maximum_list; -- -- minimum_list = osinfo_os_get_minimum_resources(os); -- recommended_list = osinfo_os_get_recommended_resources(os); -- maximum_list = osinfo_os_get_maximum_resources(os); -- -- if (osinfo_list_get_length(OSINFO_LIST(minimum_list)) > 0 && -- osinfo_list_get_length(OSINFO_LIST(recommended_list)) > 0) -- compare_resources(os, -- OSINFO_LIST(minimum_list), -- OSINFO_LIST(recommended_list)); -- -- if (osinfo_list_get_length(OSINFO_LIST(minimum_list)) > 0 && -- osinfo_list_get_length(OSINFO_LIST(maximum_list)) > 0) -- compare_resources(os, -- OSINFO_LIST(minimum_list), -- OSINFO_LIST(maximum_list)); -- -- if (osinfo_list_get_length(OSINFO_LIST(recommended_list)) > 0 && -- osinfo_list_get_length(OSINFO_LIST(maximum_list)) > 0) -- compare_resources(os, -- OSINFO_LIST(recommended_list), -- OSINFO_LIST(maximum_list)); -- -- g_object_unref(minimum_list); -- g_object_unref(recommended_list); -- g_object_unref(maximum_list); -- } -- -- g_object_unref(oslist); -- g_list_free(oses); -- -- g_object_unref(loader); --} -- -- - static void - test_uniqueness(OsinfoOs *os, - OsinfoResourcesList *(*get_resources)(OsinfoOs *)) -@@ -1000,8 +852,6 @@ main(int argc, char *argv[]) - g_test_add_func("/os/devices/inheritance/removal", - test_devices_inheritance_removal); - g_test_add_func("/os/resources/basic", test_resources_basic); -- g_test_add_func("/os/resources/minimum_recommended_maximum", -- test_resources_minimum_recommended_maximum); - g_test_add_func("/os/resources/uniqueness", test_resources_uniqueness); - g_test_add_func("/os/resources/inheritance", test_resources_inheritance); - g_test_add_func("/os/find_install_script", test_find_install_script); --- -2.20.1 - diff --git a/0006-test-os-Remove-test_resources_uniqueness.patch b/0006-test-os-Remove-test_resources_uniqueness.patch deleted file mode 100644 index 4ca9ecd..0000000 --- a/0006-test-os-Remove-test_resources_uniqueness.patch +++ /dev/null @@ -1,108 +0,0 @@ -From ef34c41da7a58fec499607f3b42d24e950dd24b1 Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= -Date: Wed, 20 Mar 2019 11:55:31 +0100 -Subject: [PATCH] test-os: Remove test_resources_uniqueness -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -This test is now part of osinfo-db. - -Signed-off-by: Fabiano Fidêncio -Reviewed-by: Cole Robinson ---- - tests/test-os.c | 71 ------------------------------------------------- - 1 file changed, 71 deletions(-) - -diff --git a/tests/test-os.c b/tests/test-os.c -index 80f866b..1a5ab67 100644 ---- a/tests/test-os.c -+++ b/tests/test-os.c -@@ -270,76 +270,6 @@ static void test_resources_basic(void) - } - - --static void --test_uniqueness(OsinfoOs *os, -- OsinfoResourcesList *(*get_resources)(OsinfoOs *)) --{ -- OsinfoResourcesList *resourceslist; -- GList *arches = NULL; -- GList *list, *it; -- -- resourceslist = get_resources(os); -- list = osinfo_list_get_elements(OSINFO_LIST(resourceslist)); -- -- for (it = list; it != NULL; it = it->next) { -- OsinfoResources *resources = it->data; -- const gchar *arch = osinfo_resources_get_architecture(resources); -- -- if (g_list_find_custom(arches, arch, (GCompareFunc) g_strcmp0) == NULL) { -- arches = g_list_prepend(arches, (gchar *)arch); -- continue; -- } -- -- g_test_message("\"%s\" has more than one resources entry for architecture \"%s\"", -- osinfo_product_get_short_id(OSINFO_PRODUCT(os)), -- arch); -- g_test_fail(); -- } -- -- g_list_free(arches); -- g_list_free(list); -- g_object_unref(resourceslist); --} -- -- --static void --test_resources_uniqueness(void) --{ -- OsinfoLoader *loader = osinfo_loader_new(); -- OsinfoDb *db = osinfo_loader_get_db(loader); -- OsinfoOsList *oslist; -- GList *oses; -- GList *oses_it; -- GError *error = NULL; -- -- g_assert_true(OSINFO_IS_LOADER(loader)); -- g_assert_true(OSINFO_IS_DB(db)); -- -- osinfo_loader_process_default_path(loader, &error); -- g_assert_no_error(error); -- -- oslist = osinfo_db_get_os_list(db); -- oses = osinfo_list_get_elements(OSINFO_LIST(oslist)); -- -- for (oses_it = oses; oses_it != NULL; oses_it = oses_it->next) { -- OsinfoOs *os = oses_it->data; -- -- g_test_message("Testing minimum resources uniqueness for \"%s\"", -- osinfo_product_get_short_id(OSINFO_PRODUCT(os))); -- test_uniqueness(os, osinfo_os_get_minimum_resources); -- -- g_test_message("Testing recommended resources uniqueness for \"%s\"", -- osinfo_product_get_short_id(OSINFO_PRODUCT(os))); -- test_uniqueness(os, osinfo_os_get_recommended_resources); -- } -- -- g_object_unref(oslist); -- g_list_free(oses); -- -- g_object_unref(loader); --} -- -- - static GList *get_all_distros(OsinfoOsList *oslist) - { - GList *oses; -@@ -852,7 +782,6 @@ main(int argc, char *argv[]) - g_test_add_func("/os/devices/inheritance/removal", - test_devices_inheritance_removal); - g_test_add_func("/os/resources/basic", test_resources_basic); -- g_test_add_func("/os/resources/uniqueness", test_resources_uniqueness); - g_test_add_func("/os/resources/inheritance", test_resources_inheritance); - g_test_add_func("/os/find_install_script", test_find_install_script); - --- -2.20.1 - diff --git a/0007-test-os-Remove-test_devices_duplication.patch b/0007-test-os-Remove-test_devices_duplication.patch deleted file mode 100644 index 81823ec..0000000 --- a/0007-test-os-Remove-test_devices_duplication.patch +++ /dev/null @@ -1,183 +0,0 @@ -From e878c7b91d6385ebcf77aa8a5b9c1789f3b206bb Mon Sep 17 00:00:00 2001 -From: =?UTF-8?q?Fabiano=20Fid=C3=AAncio?= -Date: Wed, 20 Mar 2019 14:44:45 +0100 -Subject: [PATCH] test-os: Remove test_devices_duplication -MIME-Version: 1.0 -Content-Type: text/plain; charset=UTF-8 -Content-Transfer-Encoding: 8bit - -This test is now part of osinfo-db. - -Signed-off-by: Fabiano Fidêncio -Reviewed-by: Cole Robinson ---- - tests/test-os.c | 146 ------------------------------------------------ - 1 file changed, 146 deletions(-) - -diff --git a/tests/test-os.c b/tests/test-os.c -index 1a5ab67..ea7f98c 100644 ---- a/tests/test-os.c -+++ b/tests/test-os.c -@@ -270,151 +270,6 @@ static void test_resources_basic(void) - } - - --static GList *get_all_distros(OsinfoOsList *oslist) --{ -- GList *oses; -- GList *distros = NULL; -- GList *it; -- -- oses = osinfo_list_get_elements(OSINFO_LIST(oslist)); -- for (it = oses; it != NULL; it = it->next) { -- OsinfoOs *os; -- const gchar *distro; -- -- os = OSINFO_OS(it->data); -- distro = osinfo_os_get_distro(os); -- -- if (g_list_find_custom(distros, distro, (GCompareFunc) g_strcmp0) == NULL) -- distros = g_list_prepend(distros, (gchar *)distro); -- } -- -- g_list_free(oses); -- -- return distros; --} -- -- --static void check_duplicated_devices_cb(OsinfoProduct *product, -- gpointer user_data) --{ -- OsinfoOs *os = OSINFO_OS(user_data); -- OsinfoOs *foreach_os = OSINFO_OS(product); -- OsinfoDeviceList *devices_os, *devices_foreach_os; -- GList *list_devices = NULL, *list_foreach_devices = NULL, *list_duplicated = NULL; -- GList *l; -- -- if (os == foreach_os) -- return; -- -- devices_os = osinfo_os_get_devices(os, NULL); -- devices_foreach_os = osinfo_os_get_devices(foreach_os, NULL); -- -- if (osinfo_list_get_length(OSINFO_LIST(devices_os)) == 0 || -- osinfo_list_get_length(OSINFO_LIST(devices_foreach_os)) == 0) -- goto done; -- -- list_devices = osinfo_list_get_elements(OSINFO_LIST(devices_os)); -- list_foreach_devices = osinfo_list_get_elements(OSINFO_LIST(devices_foreach_os)); -- -- for (l = list_devices; l != NULL; l = l->next) { -- OsinfoDevice *d = OSINFO_DEVICE(l->data); -- GList *ll; -- -- for (ll = list_foreach_devices; ll != NULL; ll = ll->next) { -- OsinfoDevice *dd = OSINFO_DEVICE(ll->data); -- if (d == dd) -- list_duplicated = g_list_prepend(list_duplicated, d); -- } -- } -- -- if (list_duplicated != NULL) { -- gchar *string = NULL; -- for (l = list_duplicated; l != NULL; l = l->next) { -- gchar *tmp = NULL; -- if (string != NULL) -- tmp = g_strdup_printf("%s\n - %s\n", -- string, -- osinfo_device_get_name(OSINFO_DEVICE(l->data))); -- else -- tmp = g_strdup_printf("\n - %s", -- osinfo_device_get_name(OSINFO_DEVICE(l->data))); -- -- g_free(string); -- string = tmp; -- } -- -- g_debug("\nTesting \"%s\" against \"%s\" and found the following duplicated devices: %s", -- osinfo_product_get_short_id(OSINFO_PRODUCT(os)), -- osinfo_product_get_short_id(product), -- string); -- g_free(string); -- -- g_test_fail(); -- } -- -- done: -- g_list_free(list_duplicated); -- g_list_free(list_devices); -- g_list_free(list_foreach_devices); -- g_object_unref(devices_os); -- g_object_unref(devices_foreach_os); --} -- -- --static void check_duplicated_devices(OsinfoOs *os) --{ -- osinfo_product_foreach_related(OSINFO_PRODUCT(os), -- OSINFO_PRODUCT_FOREACH_FLAG_DERIVES_FROM | -- OSINFO_PRODUCT_FOREACH_FLAG_CLONES, -- check_duplicated_devices_cb, -- os); --} -- -- --static void test_devices_duplication(void) --{ -- OsinfoLoader *loader = osinfo_loader_new(); -- OsinfoDb *db = osinfo_loader_get_db(loader); -- OsinfoOsList *all_oses_list; -- GList *distros, *l; -- GError *error = NULL; -- -- g_assert_true(OSINFO_IS_LOADER(loader)); -- g_assert_true(OSINFO_IS_DB(db)); -- -- osinfo_loader_process_default_path(loader, &error); -- g_assert_no_error(error); -- -- all_oses_list = osinfo_db_get_os_list(db); -- distros = get_all_distros(all_oses_list); -- -- for (l = distros; l != NULL; l = l->next) { -- const gchar *distro; -- OsinfoOsList *oslist; -- OsinfoFilter *filter; -- int i; -- -- distro = l->data; -- -- filter = osinfo_filter_new(); -- osinfo_filter_add_constraint(filter, OSINFO_OS_PROP_DISTRO, distro); -- oslist = OSINFO_OSLIST(osinfo_list_new_filtered(OSINFO_LIST(all_oses_list), filter)); -- -- for (i = 0; i < osinfo_list_get_length(OSINFO_LIST(oslist)); i++) { -- OsinfoOs *os = OSINFO_OS(osinfo_list_get_nth(OSINFO_LIST(oslist), i)); -- check_duplicated_devices(os); -- } -- -- g_object_unref(filter); -- g_object_unref(oslist); -- } -- -- g_list_free(distros); -- g_object_unref(all_oses_list); -- g_object_unref(loader); --} -- -- - static void - devices_inheritance_basic_check(OsinfoDb *db, - const gchar *os_id) -@@ -776,7 +631,6 @@ main(int argc, char *argv[]) - g_test_add_func("/os/devices", test_devices); - g_test_add_func("/os/devices_filter", test_devices_filter); - g_test_add_func("/os/device_driver", test_device_driver); -- g_test_add_func("/os/devices/duplication", test_devices_duplication); - g_test_add_func("/os/devices/inheritance/basic", - test_devices_inheritance_basic); - g_test_add_func("/os/devices/inheritance/removal", --- -2.20.1 - diff --git a/libosinfo.spec b/libosinfo.spec index 8a79c99..c429a15 100644 --- a/libosinfo.spec +++ b/libosinfo.spec @@ -2,21 +2,12 @@ Summary: A library for managing OS information for virtualization Name: libosinfo -Version: 1.4.0 -Release: 3%{?dist}%{?extra_release} +Version: 1.5.0 +Release: 1%{?dist}%{?extra_release} License: LGPLv2+ Source: https://releases.pagure.io/%{name}/%{name}-%{version}.tar.gz URL: https://libosinfo.org/ -###Patches### -Patch0001: 0001-media-Fix-usage-of-application-id.patch -Patch0002: 0002-loader-Properly-load-the-arch-value-for-images.patch -Patch0003: 0003-tests-Remove-test-.uris.patch -Patch0004: 0004-tests-Remove-test-isodetect.patch -Patch0005: 0005-test-os-Remove-test_resources_minimum_recommended_ma.patch -Patch0006: 0006-test-os-Remove-test_resources_uniqueness.patch -Patch0007: 0007-test-os-Remove-test_devices_duplication.patch - BuildRequires: gettext-devel BuildRequires: glib2-devel BuildRequires: libxml2-devel >= 2.6.0 @@ -106,6 +97,9 @@ fi %{_datadir}/vala/vapi/libosinfo-1.0.vapi %changelog +* Thu May 09 2019 Fabiano Fidêncio - 1.5.0-1 +- Update to 1.5.0 release + * Thu Apr 11 2019 Fabiano Fidêncio - 1.4.0-3 - rhbz#1698845: Require GVFS diff --git a/sources b/sources index 55c2df8..a2f818e 100644 --- a/sources +++ b/sources @@ -1 +1,2 @@ -SHA512 (libosinfo-1.4.0.tar.gz) = 531b7acf811add53252e52917f8b13b409dbe7a4bc5837dcbe34e729b0f294e760d5a57c5c1c56f1f65217b7fc6e285a56a6fa49d36f02cf696b7cc181db1fe5 +SHA512 (libosinfo-1.5.0.tar.gz) = d5d5749eac1dbba0450fdff732c99c5c66b78b0889679cb9f3fd58e119fea4dd1c730013f4cad887b413abe21399143abb89b9d9554b906f117ba0cfc6685e5e +SHA512 (libosinfo-1.5.0.tar.gz.asc) = c86f0c13b2134526abc12ff5f593e955ff2e1bb9aecb8afb7fd48f715797b1ef43d287e72dcb3dd1366b55a2708d8bd9bbdf3ca85d0faa799a442b897aadb80b