test-portal.c (flatpak-1.15.1.tar.xz) | : | test-portal.c (flatpak-1.15.2.tar.xz) | ||
---|---|---|---|---|
skipping to change at line 229 | skipping to change at line 229 | |||
} | } | |||
static void | static void | |||
count_successful_exit_cb (PortalFlatpak *proxy, | count_successful_exit_cb (PortalFlatpak *proxy, | |||
guint pid, | guint pid, | |||
guint wait_status, | guint wait_status, | |||
gpointer user_data) | gpointer user_data) | |||
{ | { | |||
gsize *times_exited_p = user_data; | gsize *times_exited_p = user_data; | |||
g_debug ("Process %u exited with wait status %u", pid, wait_status); | g_info ("Process %u exited with wait status %u", pid, wait_status); | |||
g_assert_true (WIFEXITED (wait_status)); | g_assert_true (WIFEXITED (wait_status)); | |||
g_assert_cmpuint (WEXITSTATUS (wait_status), ==, 0); | g_assert_cmpuint (WEXITSTATUS (wait_status), ==, 0); | |||
(*times_exited_p) += 1; | (*times_exited_p) += 1; | |||
} | } | |||
static void | static void | |||
test_basic (Fixture *f, | test_basic (Fixture *f, | |||
gconstpointer context G_GNUC_UNUSED) | gconstpointer context G_GNUC_UNUSED) | |||
{ | { | |||
g_autoptr(GError) error = NULL; | g_autoptr(GError) error = NULL; | |||
End of changes. 1 change blocks. | ||||
1 lines changed or deleted | 1 lines changed or added |