Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:86663 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 42562 invoked from network); 15 Jun 2015 15:23:06 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 15 Jun 2015 15:23:06 -0000 Authentication-Results: pb1.pair.com smtp.mail=mike.php.net@gmail.com; spf=pass; sender-id=pass Authentication-Results: pb1.pair.com header.from=mike.php.net@gmail.com; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 74.125.82.53 as permitted sender) X-PHP-List-Original-Sender: mike.php.net@gmail.com X-Host-Fingerprint: 74.125.82.53 mail-wg0-f53.google.com Received: from [74.125.82.53] ([74.125.82.53:33348] helo=mail-wg0-f53.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id 68/53-25272-7DDEE755 for ; Mon, 15 Jun 2015 11:23:03 -0400 Received: by wgez8 with SMTP id z8so71736487wge.0 for ; Mon, 15 Jun 2015 08:23:00 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=sender:message-id:date:from:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; bh=tH8wS9FEfToL/XIsXL11YCFkAm5zTroASCGs0kImEh0=; b=p9Jw+P/qp6M52VrDuoAWdeMlqkS22PqewE2Q2qQckCA/++q49RKnEy0+7nd/d+XgNM kw0OcnUyFdLFbOrAq4IMZviitHCPczwHvG6JQnAce9vUUwtoaKg4gDdWx5G/+Wb12cKJ rWEW2BoadGwao2cYhHIkltj1/G+NGVlcrmxF8eFBUTks0ssS6vxPtWlwsTKEoOvUcuLE PPclcQJTgpIZeqRSuP2r1HhVrf8GkT9bQ9wIlwjrxjjnV5ThRVmQ7Gc4MOadd/N4wYuF y9FhpdonwLP0H9YY03SW2+0KOLRhGT3M/WwBQk+8VZR+mQfF6QSE2osdkW3c8YpwmBoN sTmg== X-Received: by 10.180.9.7 with SMTP id v7mr32591273wia.60.1434381780832; Mon, 15 Jun 2015 08:23:00 -0700 (PDT) Received: from [192.168.2.120] (89-104-28-113.customer.bnet.at. [89.104.28.113]) by mx.google.com with ESMTPSA id ka7sm779990wjc.36.2015.06.15.08.22.59 (version=TLSv1.2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Mon, 15 Jun 2015 08:22:59 -0700 (PDT) Sender: Michael Wallner Message-ID: <557EEDD3.2070902@php.net> Date: Mon, 15 Jun 2015 17:22:59 +0200 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.7.0 MIME-Version: 1.0 To: Chris Wright , =?UTF-8?B?Q8O0bWUgQkVSTklHQVVE?= CC: PHP Internals References: <557ECCDA.2020504@opensides.be> In-Reply-To: Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 8bit Subject: Re: [PHP-DEV] LDAP module test suite From: mike@php.net (Michael Wallner) On 15/06/15 15:43, Chris Wright wrote: > On 15 June 2015 at 14:02, Côme BERNIGAUD > wrote: > >> Hello, >> >> What is the needed configuration to be able to run the whole LDAP test >> suite? >> It connects with "cn=Manager,dc=my-domain,dc=com" but then tries to create >> "dc=my-domain,dc=com". >> How can "cn=Manager,dc=my-domain,dc=com" exist if "dc=my-domain,dc=com" >> does not? >> >> Is there any information about a known configuration to be able to pass >> all LDAP tests? Check out ext/ldap/tests/connect.inc; you can pass various parameters from the environment. >> >> Côme >> >> PS: Also, is there a way to launch only ldap tests with PHP Makefile? >> >> > You can't do it with "make test" afaik, but you can manually invoke > run-tests.php and pass it a path, e.g. php run-tests.php ext/ldap/ > You can run `make test TESTS=path/to/ext/ldap`. -- Regards, Mike