+2017-03-15 Florian Weimer <fweimer@redhat.com>
+
+ [BZ #21243]
+ * support/temp_file.c (support_delete_temp_files): Add comment
+ about ignored errors.
+
2017-03-15 Florian Weimer <fweimer@redhat.com>
[BZ #21244]
{
while (temp_name_list != NULL)
{
- remove (temp_name_list->name);
+ /* For some tests, the temporary file removal runs multiple
+ times (in the parent processes and the subprocess), so do not
+ report a failed removal attempt. */
+ (void) remove (temp_name_list->name);
free (temp_name_list->name);
struct temp_name_list *next