summaryrefslogtreecommitdiff
path: root/source4/torture/subunit.c
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2006-10-17 00:56:29 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 14:21:16 -0500
commitc554e2168bbc7c89bd02768a45ce9a8c7dd57b43 (patch)
treed0ace01672fed5ae792405ec93b48e6b198e8eff /source4/torture/subunit.c
parenta9f4e0dd8f38a89936c178a9c8c758691cf924d1 (diff)
downloadsamba-c554e2168bbc7c89bd02768a45ce9a8c7dd57b43.tar.gz
samba-c554e2168bbc7c89bd02768a45ce9a8c7dd57b43.tar.bz2
samba-c554e2168bbc7c89bd02768a45ce9a8c7dd57b43.zip
r19358: Use subunit tests from the right location (from
$src/bin/torture when developing, $LIBDIR/torture when installed) (This used to be commit 4ae6380e6bb48e27e9947e149b3d079b3e293cc0)
Diffstat (limited to 'source4/torture/subunit.c')
-rw-r--r--source4/torture/subunit.c2
1 files changed, 1 insertions, 1 deletions
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)