php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #25000 ext/mbstring/tests/php_gr_jp_16242.phpt uses $_ENV instead of getenv
Submitted: 2003-08-09 15:27 UTC Modified: 2003-08-09 16:01 UTC
From: webmaster at ragnarokonline dot de Assigned:
Status: Closed Package: *Compile Issues
PHP Version: 4CVS-2003-08-09 (stable) OS:
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If this is not your bug, you can add a comment by following this link.
If this is your bug, but you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: webmaster at ragnarokonline dot de
New email:
PHP Version: OS:

 

 [2003-08-09 15:27 UTC] webmaster at ragnarokonline dot de
Description:
------------
The new testcase located at ext/mbstring/tests/php_gr_jp_16242.phpt fails, because $_ENV["TEST_PHP_EXECUTABLE"] is used instead of getenv("TEST_PHP_EXECUTABLE")

To run this test, execute 

TEST_PHP_EXECUTABLE=sapi/cli/php \
sapi/cli/php -n run-tests.php \
ext/mbstring/tests/php_gr_jp_16242.phpt

after compiling PHP

The fix is simple:
in ext/mbstring/tests/php_gr_jp_16242.phpt REPLACE

$cmd .= ' ?>" |'.$_ENV["TEST_PHP_EXECUTABLE"].' -c '.$tmpfile;

WITH

$cmd .= ' ?>" |'.getenv("TEST_PHP_EXECUTABLE").' -c '.$tmpfile;


Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2003-08-09 15:32 UTC] moriyoshi@php.net
Congratulation 25000 entry! :)

Seriously, what difference do you think there is between $_ENV["TEST_PHP_EXECUTABLE"] and getenv("TEST_PHP_EXECUTABLE") as that variable is supposed to be populated before the test-run.. Works fine here.

 [2003-08-09 15:44 UTC] webmaster at ragnarokonline dot de
> Congratulation 25000 entry! :)
Thanks ^_^

> Seriously, what difference do you think there is between
> $_ENV["TEST_PHP_EXECUTABLE"] and
> getenv("TEST_PHP_EXECUTABLE") as that
> variable is supposed to be populated before the test-run..
> Works fine here.
Well, the whole array is empty on my site (running SuSE 8.2) and if you search for 'TEST_PHP_EXECUTABLE' though all phpt-files in the dump, all resulting testcases use getenv instead of $_ENV
 [2003-08-09 15:47 UTC] webmaster at ragnarokonline dot de
ugh, typos
site=side
dump=package

sorry for the spam
 [2003-08-09 16:01 UTC] iliaa@php.net
This bug has been fixed in CVS.

In case this was a PHP problem, snapshots of the sources are packaged
every three hours; this change will be in the next snapshot. You can
grab the snapshot at http://snaps.php.net/.
 
In case this was a documentation problem, the fix will show up soon at
http://www.php.net/manual/.

In case this was a PHP.net website problem, the change will show
up on the PHP.net site and on the mirror sites in short time.
 
Thank you for the report, and for helping us make PHP better.


 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 18 23:01:27 2024 UTC