mirror of
https://gitlab.gnome.org/GNOME/glib.git
synced 2025-02-04 10:16:17 +01:00
gutils test: Don't assume that every Unix OS implements os-release(5)
os-release(5) is widely implemented on Linux, but not necessarily
ubiquitous: unusual or minimal Linux distributions might not have it.
It could in principle be implemented by any other Unix OS, but in
practice this has not yet happened.
Closes: https://gitlab.gnome.org/GNOME/glib/issues/1906
Fixes: 349318e8
"gutils: Add g_get_os_info()"
Signed-off-by: Simon McVittie <smcv@collabora.com>
This commit is contained in:
parent
1bda4db213
commit
f9a1970a0f
@ -520,15 +520,30 @@ test_desktop_special_dir (void)
|
||||
static void
|
||||
test_os_info (void)
|
||||
{
|
||||
#if defined (G_OS_UNIX) || defined (G_OS_WIN32)
|
||||
gchar *name;
|
||||
gchar *contents = NULL;
|
||||
|
||||
/* Whether this is implemented or not, it must not crash */
|
||||
name = g_get_os_info (G_OS_INFO_KEY_NAME);
|
||||
g_assert (name != NULL);
|
||||
g_free (name);
|
||||
g_test_message ("%s: %s",
|
||||
G_OS_INFO_KEY_NAME,
|
||||
name == NULL ? "(null)" : name);
|
||||
|
||||
#if defined (G_OS_WIN32) || defined (__APPLE__)
|
||||
/* These OSs have a special case so NAME should always succeed */
|
||||
g_assert_nonnull (name);
|
||||
#elif defined (G_OS_UNIX)
|
||||
if (g_file_get_contents ("/etc/os-release", &contents, NULL, NULL) ||
|
||||
g_file_get_contents ("/usr/lib/os-release", &contents, NULL, NULL))
|
||||
g_assert_nonnull (name);
|
||||
else
|
||||
g_test_skip ("os-release(5) API not implemented on this platform");
|
||||
#else
|
||||
g_test_skip ("g_get_os_info() not supported on this platform");
|
||||
#endif
|
||||
|
||||
g_free (name);
|
||||
g_free (contents);
|
||||
}
|
||||
|
||||
static gboolean
|
||||
|
Loading…
Reference in New Issue
Block a user