Simplify fileattributematcher tests a bit
authorMatthias Clasen <mclasen@redhat.com>
Mon, 23 Dec 2013 17:09:46 +0000 (12:09 -0500)
committerMatthias Clasen <mclasen@redhat.com>
Wed, 1 Jan 2014 22:59:20 +0000 (17:59 -0500)
Just use assertions instead of pretty-printed error messages.

gio/tests/fileattributematcher.c

index 95b78ec..6956e6a 100644 (file)
@@ -19,11 +19,7 @@ test_exact (void)
     {
       matcher = g_file_attribute_matcher_new (exact_matches[i]);
       s = g_file_attribute_matcher_to_string (matcher);
-      if (! g_str_equal (exact_matches[i], s))
-        {
-          g_test_fail ();
-          g_test_message ("matcher should be %s, but is %s", exact_matches[i], s);
-        }
+      g_assert_cmpstr (exact_matches[i], ==, s);
       g_free (s);
       g_file_attribute_matcher_unref (matcher);
     }
@@ -64,11 +60,7 @@ test_equality (void)
     {
       matcher = g_file_attribute_matcher_new (equals[i].actual);
       s = g_file_attribute_matcher_to_string (matcher);
-      if (! g_str_equal (equals[i].expected, s))
-        {
-          g_test_fail ();
-          g_test_message ("matcher for %s should be %s, but is %s", equals[i].actual, equals[i].expected, s);
-        }
+      g_assert_cmpstr (equals[i].expected, ==, s);
       g_free (s);
       g_file_attribute_matcher_unref (matcher);
     }
@@ -149,13 +141,7 @@ test_subtract (void)
       subtract = g_file_attribute_matcher_new (subtractions[i].subtract);
       result = g_file_attribute_matcher_subtract (matcher, subtract);
       s = g_file_attribute_matcher_to_string (result);
-      if (g_strcmp0 (subtractions[i].result, s))
-        {
-          g_test_fail ();
-          g_test_message ("matcher for %s - %s should be %s, but is %s", 
-                          subtractions[i].attributes, subtractions[i].subtract,
-                          subtractions[i].result, s);
-        }
+      g_assert_cmpstr (subtractions[i].result, ==, s);
       g_free (s);
       g_file_attribute_matcher_unref (matcher);
       g_file_attribute_matcher_unref (subtract);