Newsgroups: php.internals Path: news.php.net Xref: news.php.net php.internals:63242 Return-Path: Mailing-List: contact internals-help@lists.php.net; run by ezmlm Delivered-To: mailing list internals@lists.php.net Received: (qmail 50978 invoked from network); 28 Sep 2012 20:01:06 -0000 Received: from unknown (HELO lists.php.net) (127.0.0.1) by localhost with SMTP; 28 Sep 2012 20:01:06 -0000 Authentication-Results: pb1.pair.com smtp.mail=mamfelt@gmail.com; spf=pass; sender-id=pass Authentication-Results: pb1.pair.com header.from=mamfelt@gmail.com; sender-id=pass Received-SPF: pass (pb1.pair.com: domain gmail.com designates 209.85.214.170 as permitted sender) X-PHP-List-Original-Sender: mamfelt@gmail.com X-Host-Fingerprint: 209.85.214.170 mail-ob0-f170.google.com Received: from [209.85.214.170] ([209.85.214.170:36638] helo=mail-ob0-f170.google.com) by pb1.pair.com (ecelerity 2.1.1.9-wez r(12769M)) with ESMTP id B8/B4-08845-00206605 for ; Fri, 28 Sep 2012 16:01:06 -0400 Received: by obcni5 with SMTP id ni5so3593301obc.29 for ; Fri, 28 Sep 2012 13:01:02 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=mime-version:date:message-id:subject:from:to:content-type; bh=Clx6m5hxUIUu93fNLoKuDZp/jJ4k5K8extHpxixPVKc=; b=IgOOuP2WcYPxeFsYFym6ExPvqJBIHYXdRGCAGKSSeFF6VWW7lVcAr0olXb38SRquwA mfP/6PA0DJq8xfUfqTDM+giMHPhb8ujQHy4wrltnVLneI9jjhQtYks8Y2WZ65ojHmkhJ HmxIhV5btG4NAZRt3JNR4vCDpxz2kAPbp6pOh8s2POI8Bua6RIsd8WbU/wwBw9ucl94x LXXZdOOOBsAYIvERCRhtEN8sCDQEtUFbYFrEK4MXfxNYFZXJzXwWO5L0XV0C98o70WQl eR2kLYuht2Wf5Xn08Oqnlw7i92xGGkQsO3MkUgWK1hmZSRItjSYxcy86MYZrZZwkAsnq xjqQ== MIME-Version: 1.0 Received: by 10.182.110.40 with SMTP id hx8mr6701095obb.47.1348862462147; Fri, 28 Sep 2012 13:01:02 -0700 (PDT) Received: by 10.76.87.3 with HTTP; Fri, 28 Sep 2012 13:01:02 -0700 (PDT) Date: Fri, 28 Sep 2012 22:01:02 +0200 Message-ID: To: internals@lists.php.net Content-Type: multipart/alternative; boundary=f46d044516dde83c0604cac8833d Subject: i guess it is a bug of sorts, but how to report it From: mamfelt@gmail.com (Michael Felt) --f46d044516dde83c0604cac8833d Content-Type: text/plain; charset=ISO-8859-1 At the start of 'make test' I get a strange bin/sh error that I think keeps the result from being saved in a file. I answer 's' for save at the end, but no file is saved (that I can find). I editted Makefile, so that the "test" command is echoed and get this... (hoping it is useful to someone!) Build complete. Don't forget to run 'make test'. if test ! -z "/data/prj/php/php-5.3.17/sapi/cli/php" && test -x "/data/prj/php/php-5.3.17/sapi/cli/php"; then \ INI_FILE=`/data/prj/php/php-5.3.17/sapi/cli/php -d 'display_errors=stderr' -r 'echo php_ini_loaded_file();' 2> /dev/null`; \ if test "$INI_FILE"; then \ grep -E -h -v '^(define_syslog_variables|register_(globals|long_arrays)?|safe_mode|magic_quotes_(gpc|runtime|sybase)?|(zend_)?extension(_debug)?(_ts)?)[\t\ ]*=' "$INI_FILE" > /data/prj/php/php-5.3.17/tmp-php.ini; \ else \ echo > /data/prj/php/php-5.3.17/tmp-php.ini; \ fi; \ INI_SCANNED_PATH=`/data/prj/php/php-5.3.17/sapi/cli/php -d 'display_errors=stderr' -r '$a = explode(",\n", trim(php_ini_scanned_files())); echo $a[0];' 2> /dev/null`; \ if test "$INI_SCANNED_PATH"; then \ INI_SCANNED_PATH=`/data/prj/php/php-5.3.17/build/shtool path -d $INI_SCANNED_PATH`; \ grep -E -h -v '^(define_syslog_variables|register_(globals|long_arrays)?|safe_mode|magic_quotes_(gpc|runtime|sybase)?|(zend_)?extension(_debug)?(_ts)?)[\t\ ]*=' "$INI_SCANNED_PATH"/*.ini >> /data/prj/php/php-5.3.17/tmp-php.ini; \ fi; \ TEST_PHP_EXECUTABLE=/data/prj/php/php-5.3.17/sapi/cli/php \ TEST_PHP_SRCDIR=/data/prj/php/php-5.3.17 \ CC="xlc_r" \ /data/prj/php/php-5.3.17/sapi/cli/php -n -c /data/prj/php/php-5.3.17/tmp-php.ini -d 'open_basedir=' -d 'output_buffering=0' -d 'memory_limit=-1' /data/prj/php/php-5.3.17/run-tests.php -n -c /data/prj/php/php-5.3.17/tmp-php.ini -d extension_dir=/d ata/prj/php/php-5.3.17/modules/ ` if test "x/data/prj/php/php-5.3.17/modules/bcmath.so /data/prj/php/php-5.3.17/modules/curl.so /data/prj/php/php-5.3.17/modules/dba.so /data/prj/php/php-5.3.17/modules/ftp.so /data/prj/php/php-5.3.17/modules/zip.so" != "x"; then for i in /data/prj/php/php-5.3.17/modules/bcmath.so /data/prj/php/php-5.3.17/modules/curl.so /data/prj/php/php-5.3.17/modules/dba.so /data/prj/php/php-5.3.17/modules/ftp.so /data/prj/php/php-5.3.17/modules/zip.so""; do . $i; /data/prj/php/php-5.3.17/build/shtool echo -n -- " -d extension=$dlname"; done; fi; if test "x" != "x"; then for i in ""; do . $i; /data/prj/php/php-5.3.17/build/shtool echo -n -- " -d zend_extension=/data/prj/php/php-5.3.17/modules/$dlname"; done; fi` ; \ rm /data/prj/php/php-5.3.17/tmp-php.ini; \ else \ echo "ERROR: Cannot run tests without CLI sapi."; \ fi /bin/sh[13]: 0403-057 Syntax error at line 20 : `(' is not expected. ===================================================================== PHP : /data/prj/php/php-5.3.17/sapi/cli/php PHP_SAPI : cli PHP_VERSION : 5.3.17 ZEND_VERSION: 2.3.0 PHP_OS : AIX - AIX x104 1 6 00C39B8D4C00 INI actual : /data/prj/php/php-5.3.17/tmp-php.ini More .INIs : CWD : /data/prj/php/php-5.3.17 Extra dirs : VALGRIND : Not used ===================================================================== TIME START 2012-09-28 19:04:24 ===================================================================== TEST 1/9306 [tests/run-test/test001.phpt]^MPASS EXPECT [tests/run-test/test001.phpt] TEST 2/9306 [tests/run-test/test002.phpt]^MPASS EXPECTF [tests/run-test/test002.phpt] TEST 3/9306 [tests/run-test/test003.phpt]^MPASS EXPECTREGEX [tests/run-test/test003.phpt] And the tests complete. p.s. I copied/pasted the summary to the qa mail address. --f46d044516dde83c0604cac8833d--