[libosinfo] test-isodetect: Improve error message on detection failures

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Since the switch to the GTest framework, when the test suite fails to
identify an ISO, the error message is:
ERROR:test-isodetect.c:359:test_one: 'matched' should be TRUE
while it used to be the much more explicit:
ERROR **: ISO alpine-extended-3.7.0_rc2-x86_64.iso.txt was not matched by OS alpinelinux3.7

This commit readds the explicit message on this particular failure.

Signed-off-by: Christophe Fergeau <cfergeau@xxxxxxxxxx>
---
 tests/test-isodetect.c | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/tests/test-isodetect.c b/tests/test-isodetect.c
index a269c3f7..8e511135 100644
--- a/tests/test-isodetect.c
+++ b/tests/test-isodetect.c
@@ -356,7 +356,10 @@ static void test_one(const gchar *vendor)
 
         g_test_message("checking OS %s for ISO %s",
                        info->shortid, info->filename);
-        g_assert_true(matched);
+        if (!matched) {
+            g_error("ISO %s was not matched by OS %s",
+                    info->filename, info->shortid);
+        }
 
         g_object_get(info->media, "os", &os, NULL);
         const gchar *shortid = osinfo_product_get_short_id(OSINFO_PRODUCT(os));
-- 
2.14.3

_______________________________________________
Libosinfo mailing list
Libosinfo@xxxxxxxxxx
https://www.redhat.com/mailman/listinfo/libosinfo



[Index of Archives]     [Virt Tools]     [Libvirt Users]     [Fedora Users]     [Fedora Maintainers]     [Fedora Desktop]     [Fedora SELinux]     [Big List of Linux Books]     [Yosemite News]     [KDE Users]

  Powered by Linux