[glib: 1/5] tests: Use g_assert_*() rather than g_assert() in hostutils.c
- From: Sebastian Dröge <sdroege src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [glib: 1/5] tests: Use g_assert_*() rather than g_assert() in hostutils.c
- Date: Mon, 7 Dec 2020 08:29:32 +0000 (UTC)
commit df7f954dd0fcec56aaab0b44a6c9715a16e15863
Author: Philip Withnall <pwithnall endlessos org>
Date: Fri Dec 4 12:54:11 2020 +0000
tests: Use g_assert_*() rather than g_assert() in hostutils.c
`g_assert()` is compiled out with `G_DISABLE_ASSERT`.
Signed-off-by: Philip Withnall <pwithnall endlessos org>
glib/tests/hostutils.c | 12 ++++++------
1 file changed, 6 insertions(+), 6 deletions(-)
---
diff --git a/glib/tests/hostutils.c b/glib/tests/hostutils.c
index d694e626c..78664376e 100644
--- a/glib/tests/hostutils.c
+++ b/glib/tests/hostutils.c
@@ -81,7 +81,7 @@ test_to_ascii (void)
for (i = 0; i < num_idn_test_domains; i++)
{
- g_assert (g_hostname_is_non_ascii (idn_test_domains[i].unicode_name));
+ g_assert_true (g_hostname_is_non_ascii (idn_test_domains[i].unicode_name));
ascii = g_hostname_to_ascii (idn_test_domains[i].unicode_name);
g_assert_cmpstr (idn_test_domains[i].ascii_name, ==, ascii);
g_free (ascii);
@@ -94,14 +94,14 @@ test_to_ascii (void)
for (i = 0; i < num_non_round_trip_names; i++)
{
if (non_round_trip_names[i].orig_is_unicode)
- g_assert (g_hostname_is_non_ascii (non_round_trip_names[i].orig_name));
+ g_assert_true (g_hostname_is_non_ascii (non_round_trip_names[i].orig_name));
else
- g_assert (!g_hostname_is_non_ascii (non_round_trip_names[i].orig_name));
+ g_assert_true (!g_hostname_is_non_ascii (non_round_trip_names[i].orig_name));
if (non_round_trip_names[i].ascii_is_encoded)
- g_assert (g_hostname_is_ascii_encoded (non_round_trip_names[i].ascii_name));
+ g_assert_true (g_hostname_is_ascii_encoded (non_round_trip_names[i].ascii_name));
else
- g_assert (!g_hostname_is_ascii_encoded (non_round_trip_names[i].ascii_name));
+ g_assert_true (!g_hostname_is_ascii_encoded (non_round_trip_names[i].ascii_name));
ascii = g_hostname_to_ascii (non_round_trip_names[i].orig_name);
g_assert_cmpstr (non_round_trip_names[i].ascii_name, ==, ascii);
@@ -127,7 +127,7 @@ test_to_unicode (void)
for (i = 0; i < num_idn_test_domains; i++)
{
- g_assert (g_hostname_is_ascii_encoded (idn_test_domains[i].ascii_name));
+ g_assert_true (g_hostname_is_ascii_encoded (idn_test_domains[i].ascii_name));
unicode = g_hostname_to_unicode (idn_test_domains[i].ascii_name);
g_assert_cmpstr (idn_test_domains[i].unicode_name, ==, unicode);
g_free (unicode);
[
Date Prev][
Date Next] [
Thread Prev][
Thread Next]
[
Thread Index]
[
Date Index]
[
Author Index]