From c554e2168bbc7c89bd02768a45ce9a8c7dd57b43 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Tue, 17 Oct 2006 00:56:29 +0000 Subject: r19358: Use subunit tests from the right location (from $src/bin/torture when developing, $LIBDIR/torture when installed) (This used to be commit 4ae6380e6bb48e27e9947e149b3d079b3e293cc0) --- source4/torture/subunit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source4/torture/subunit.c') diff --git a/source4/torture/subunit.c b/source4/torture/subunit.c index 299ca3f015..f7c14aa023 100644 --- a/source4/torture/subunit.c +++ b/source4/torture/subunit.c @@ -56,7 +56,7 @@ bool torture_subunit_load_testsuites(const char *directory, bool recursive, while((entry = readdir(dir))) { struct torture_suite *child; - if (ISDOT(entry->d_name) || ISDOTDOT(entry->d_name)) + if (entry->d_name[0] == '.') continue; if (!recursive && entry->d_type & DT_DIR) -- cgit