summaryrefslogtreecommitdiffstats
path: root/src/tests/common.c
diff options
context:
space:
mode:
authorStephen Gallagher <sgallagh@redhat.com>2010-02-26 09:04:11 -0500
committerStephen Gallagher <sgallagh@redhat.com>2010-03-04 12:41:30 -0500
commit9fb59763bce293c2490e0b9f8e97bb1f74ba0910 (patch)
treebebd5ddc3975da122a34a09a5781b26025b96720 /src/tests/common.c
parent07a2e0b66a1c4688825e07fa88d37886fec4770c (diff)
downloadsssd_unused-9fb59763bce293c2490e0b9f8e97bb1f74ba0910.tar.gz
sssd_unused-9fb59763bce293c2490e0b9f8e97bb1f74ba0910.tar.xz
sssd_unused-9fb59763bce293c2490e0b9f8e97bb1f74ba0910.zip
Add --with-test-dir option to configure
All 'make check' tests will chdir() into this directory before running the suite. This provides the option of having temporary files generated in a tmpfs or ramdisk
Diffstat (limited to 'src/tests/common.c')
-rw-r--r--src/tests/common.c18
1 files changed, 17 insertions, 1 deletions
diff --git a/src/tests/common.c b/src/tests/common.c
index 50dc61b1..4ae1f490 100644
--- a/src/tests/common.c
+++ b/src/tests/common.c
@@ -27,9 +27,9 @@
#include "tests/common.h"
#include "util/dlinklist.h"
-#include "util/util.h"
TALLOC_CTX *global_talloc_context = NULL;
+#include "util/util.h"
struct size_snapshot {
struct size_snapshot *prev;
@@ -107,3 +107,19 @@ leak_check_teardown(void)
}
check_leaks(global_talloc_context, 0);
}
+
+void
+tests_set_cwd(void)
+{
+ int ret;
+
+ ret = chdir(TEST_DIR);
+ if (ret == -1) {
+ if (strlen(TEST_DIR)) {
+ fprintf(stderr,
+ "Could not chdir to [%s].\n"
+ "Attempting to continue with current dir\n",
+ TEST_DIR);
+ }
+ }
+}