mirror of
				https://gitlab.gnome.org/GNOME/glib.git
				synced 2025-10-31 08:22:16 +01:00 
			
		
		
		
	tests: Check the return value of fwrite() in a test
Not that we ever expect it to fail. This is basically just to silence a compiler warning with `-Werror=unused-result`. Signed-off-by: Philip Withnall <pwithnall@endlessos.org> Helps: #2758
This commit is contained in:
		| @@ -1422,9 +1422,11 @@ test_get_contents (void) | ||||
|   GError *error = NULL; | ||||
|   const gchar *text = "abcdefghijklmnopqrstuvwxyz"; | ||||
|   const gchar *filename = "file-test-get-contents"; | ||||
|   gsize bytes_written; | ||||
|  | ||||
|   f = g_fopen (filename, "w"); | ||||
|   fwrite (text, 1, strlen (text), f); | ||||
|   bytes_written = fwrite (text, 1, strlen (text), f); | ||||
|   g_assert_cmpint (bytes_written, ==, strlen (text)); | ||||
|   fclose (f); | ||||
|  | ||||
|   if (g_test_undefined ()) | ||||
|   | ||||
		Reference in New Issue
	
	Block a user