summaryrefslogtreecommitdiff
path: root/test/litest.c
diff options
context:
space:
mode:
authorPeter Hutterer <peter.hutterer@who-t.net>2018-07-13 12:57:02 +1000
committerPeter Hutterer <peter.hutterer@who-t.net>2018-07-13 13:30:54 +1000
commite6cad92005b7d32402895282752d2ec4f91124dc (patch)
tree162d483096e2608b18205858573b62d1a3715d63 /test/litest.c
parente2d62645db52cff45efed8cf9713604ccde86657 (diff)
downloadlibinput-e6cad92005b7d32402895282752d2ec4f91124dc.tar.gz
Rename data/ to quirks/
A better, less ambiguous name than just "datadir" Signed-off-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'test/litest.c')
-rw-r--r--test/litest.c16
1 files changed, 9 insertions, 7 deletions
diff --git a/test/litest.c b/test/litest.c
index dab62c4a..ac836e03 100644
--- a/test/litest.c
+++ b/test/litest.c
@@ -866,7 +866,7 @@ litest_run_suite(struct list *tests, int which, int max, int error_fd)
struct name *n, *tmp;
struct list testnames;
- quirks_context = quirks_init_subsystem(getenv("LIBINPUT_DATA_DIR"),
+ quirks_context = quirks_init_subsystem(getenv("LIBINPUT_QUIRKS_DIR"),
NULL,
quirk_log_handler,
NULL,
@@ -1095,12 +1095,12 @@ litest_run(int argc, char **argv)
verbose = 1;
#if DISABLE_DEVICE_TESTS
- quirks_dir = safe_strdup(LIBINPUT_DATA_SRCDIR);
+ quirks_dir = safe_strdup(LIBINPUT_QUIRKS_SRCDIR);
#else
litest_init_udev_rules(&created_files_list);
quirks_dir = litest_install_quirks(&created_files_list);
#endif
- setenv("LIBINPUT_DATA_DIR", quirks_dir, 1);
+ setenv("LIBINPUT_QUIRKS_DIR", quirks_dir, 1);
free(quirks_dir);
litest_setup_sighandler(SIGINT);
@@ -1296,19 +1296,21 @@ litest_install_quirks(struct list *created_files_list)
litest_assert_notnull(mkdtemp(dirname));
litest_assert_int_ne(chmod(dirname, 0755), -1);
- quirks = strv_from_string(LIBINPUT_DATA_FILES, ":");
+ quirks = strv_from_string(LIBINPUT_QUIRKS_FILES, ":");
litest_assert(quirks);
q = quirks;
while (*q) {
+ const char *quirksdir = "quirks/";
char *filename;
char dest[PATH_MAX];
char src[PATH_MAX];
- litest_assert(strneq(*q, "data/", 5));
- filename = &(*q)[5];
+ litest_assert(strneq(*q, quirksdir, strlen(quirksdir)));
+ filename = &(*q)[strlen(quirksdir)];
- snprintf(src, sizeof(src), "%s/%s", LIBINPUT_DATA_SRCDIR, filename);
+ snprintf(src, sizeof(src), "%s/%s",
+ LIBINPUT_QUIRKS_SRCDIR, filename);
snprintf(dest, sizeof(dest), "%s/%s", dirname, filename);
file = litest_copy_file(dest, src, NULL);
list_append(created_files_list, &file->link);