summaryrefslogtreecommitdiffstats
path: root/src/tests/common.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/tests/common.c')
-rw-r--r--src/tests/common.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/tests/common.c b/src/tests/common.c
index 16c051656..9655cd3ce 100644
--- a/src/tests/common.c
+++ b/src/tests/common.c
@@ -38,6 +38,18 @@ tests_set_cwd(void)
}
}
+void test_dom_suite_setup(const char *tests_path)
+{
+ errno_t ret;
+
+ /* Create tests directory if it doesn't exist */
+ /* (relative to current dir) */
+ ret = mkdir(tests_path, 0775);
+ if (ret != 0 && errno != EEXIST) {
+ fprintf(stderr, "Could not create test directory\n");
+ }
+}
+
/* Check that the option names of the two maps are the same
* and appear in the same order.
*/