summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPetri Latvala <petri.latvala@intel.com>2019-09-09 14:38:06 +0300
committerPetri Latvala <petri.latvala@intel.com>2019-09-17 12:44:38 +0300
commitbc11519d627da5a0dd02c43f2912df693dba4cac (patch)
treecc2dcbc4c6d5f095c8f4467c9f08e8fd9d1a38b3
parent587f5a93cba14d7f76d0ba8e4a675b2c979584cf (diff)
lib: Export a function for loading igtrc
Signed-off-by: Petri Latvala <petri.latvala@intel.com> Cc: Arkadiusz Hiler <arkadiusz.hiler@intel.com> Reviewed-by: Arkadiusz Hiler <arkadiusz.hiler@intel.com>
-rw-r--r--lib/igt_core.c40
-rw-r--r--lib/igt_core.h2
2 files changed, 33 insertions, 9 deletions
diff --git a/lib/igt_core.c b/lib/igt_core.c
index 1cbb09f9..940913c1 100644
--- a/lib/igt_core.c
+++ b/lib/igt_core.c
@@ -642,11 +642,21 @@ static void oom_adjust_for_doom(void)
}
-static void common_init_config(void)
+/**
+ * load_igtrc:
+ *
+ * Load .igtrc from the path pointed to by #IGT_CONFIG_PATH or from
+ * home directory if that is not set. The returned keyfile needs to be
+ * deallocated using g_key_file_free().
+ *
+ * Returns: Pointer to the keyfile, NULL on error.
+ */
+GKeyFile *igt_load_igtrc(void)
{
char *key_file_env = NULL;
char *key_file_loc = NULL;
GError *error = NULL;
+ GKeyFile *file;
int ret;
/* Determine igt config path */
@@ -659,19 +669,35 @@ static void common_init_config(void)
}
/* Load igt config file */
- igt_key_file = g_key_file_new();
- ret = g_key_file_load_from_file(igt_key_file, key_file_loc,
+ file = g_key_file_new();
+ ret = g_key_file_load_from_file(file, key_file_loc,
G_KEY_FILE_NONE, &error);
if (!ret) {
g_error_free(error);
- g_key_file_free(igt_key_file);
- igt_key_file = NULL;
+ g_key_file_free(file);
+ file = NULL;
goto out;
}
g_clear_error(&error);
+ out:
+ if (!key_file_env && key_file_loc)
+ free(key_file_loc);
+
+ return file;
+}
+
+static void common_init_config(void)
+{
+ GError *error = NULL;
+ int ret;
+
+ igt_key_file = igt_load_igtrc();
+ if (!igt_key_file)
+ return;
+
if (!igt_frame_dump_path)
igt_frame_dump_path =
g_key_file_get_string(igt_key_file, "Common",
@@ -687,10 +713,6 @@ static void common_init_config(void)
if (ret != 0)
igt_set_autoresume_delay(ret);
-
-out:
- if (!key_file_env && key_file_loc)
- free(key_file_loc);
}
static void common_init_env(void)
diff --git a/lib/igt_core.h b/lib/igt_core.h
index 177d2431..521cda10 100644
--- a/lib/igt_core.h
+++ b/lib/igt_core.h
@@ -83,6 +83,8 @@ extern const char* __igt_test_description __attribute__((weak));
extern bool __igt_plain_output;
extern char *igt_frame_dump_path;
+struct _GKeyFile *igt_load_igtrc(void);
+
/**
* IGT_TEST_DESCRIPTION:
* @str: description string