1
0
mirror of https://gitlab.gnome.org/GNOME/nautilus synced 2024-06-30 23:46:35 +00:00

test-utilities: Write the file name when creating a hierarchy

This will be used to confirm the content after renaming operations.
This commit is contained in:
Khalid Abu Shawarib 2024-01-11 16:41:13 +03:00
parent 7b460d79ae
commit 04ca495429

View File

@ -82,6 +82,10 @@ create_hierarchy_from_template (const GStrv hier,
{
g_autoptr (GFileOutputStream) stream = g_file_create (file, G_FILE_CREATE_NONE,
NULL, NULL);
g_autofree gchar *name = g_file_get_basename (file);
g_output_stream_write_all (G_OUTPUT_STREAM (stream), name, strlen (name) + 1,
NULL, NULL, NULL);
}
}
}