[PHP-CVS] cvs: php4 / Makefile.global run-tests.php

2002-10-31 Thread Yasuo Ohgaki
yohgaki Thu Oct 31 08:52:58 2002 EDT

  Modified files:  
/php4   Makefile.global run-tests.php 
  Log:
  Fixed more ini settings.
  # Derick. Be responsible to your change and opinion.
  # These are settings I know that should be set. 
  # There may be other settingis must be set to make 
  # run-tests.php work as expected.
  
  
Index: php4/Makefile.global
diff -u php4/Makefile.global:1.37 php4/Makefile.global:1.38
--- php4/Makefile.global:1.37   Tue Oct 29 10:22:41 2002
+++ php4/Makefile.globalThu Oct 31 08:52:58 2002
 -50,7 +50,7 
TEST_PHP_EXECUTABLE=$(top_builddir)/$(SAPI_CLI_PATH) \
 TEST_PHP_SRCDIR=$(top_srcdir) \
 CC=$(CC) \
-   $(top_builddir)/$(SAPI_CLI_PATH) -d 'open_basedir=' -d 
'safe_mode=0' $(top_srcdir)/run-tests.php $(TESTS)
+   $(top_builddir)/$(SAPI_CLI_PATH) -d 'open_basedir=' -d 
+'safe_mode=0' -d 'safe_mode=0' -d 'output_buffering=Off' -d 'auto_prepend_file=' -d 
+'auto_append_file=' -d 'output_handler=' -d 'register_argv=1' -d 'disable_functions=' 
+$(top_srcdir)/run-tests.php $(TESTS)
 
 clean:
find . -name \*.lo -o -name \*.o | xargs rm -f
Index: php4/run-tests.php
diff -u php4/run-tests.php:1.102 php4/run-tests.php:1.103
--- php4/run-tests.php:1.102Wed Oct 30 13:36:39 2002
+++ php4/run-tests.php  Thu Oct 31 08:52:58 2002
 -44,8 +44,9 
 
 $cwd = getcwd();
 set_time_limit(0);
-ob_implicit_flush();
 error_reporting(E_ALL);
+ini_set('magic_quotes_runtime', 0);
+ini_set('memory_limit', '8M');
 
 if (ini_get('safe_mode')) {
echo  SAFE_MODE_WARNING



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




[PHP-CVS] cvs: php4 / Makefile.global run-tests.php

2002-10-31 Thread Derick Rethans
derick  Thu Oct 31 09:02:00 2002 EDT

  Modified files:  
/php4   Makefile.global run-tests.php 
  Log:
  Discuss first!
  
  
Index: php4/Makefile.global
diff -u php4/Makefile.global:1.38 php4/Makefile.global:1.39
--- php4/Makefile.global:1.38   Thu Oct 31 08:52:58 2002
+++ php4/Makefile.globalThu Oct 31 09:01:58 2002
 -50,7 +50,7 
TEST_PHP_EXECUTABLE=$(top_builddir)/$(SAPI_CLI_PATH) \
 TEST_PHP_SRCDIR=$(top_srcdir) \
 CC=$(CC) \
-   $(top_builddir)/$(SAPI_CLI_PATH) -d 'open_basedir=' -d 
'safe_mode=0' -d 'safe_mode=0' -d 'output_buffering=Off' -d 'auto_prepend_file=' -d 
'auto_append_file=' -d 'output_handler=' -d 'register_argv=1' -d 'disable_functions=' 
$(top_srcdir)/run-tests.php $(TESTS)
+   $(top_builddir)/$(SAPI_CLI_PATH) -d 'open_basedir=' -d 
+'safe_mode=0' $(top_srcdir)/run-tests.php $(TESTS)
 
 clean:
find . -name \*.lo -o -name \*.o | xargs rm -f
Index: php4/run-tests.php
diff -u php4/run-tests.php:1.103 php4/run-tests.php:1.104
--- php4/run-tests.php:1.103Thu Oct 31 08:52:58 2002
+++ php4/run-tests.php  Thu Oct 31 09:01:58 2002
 -44,9 +44,8 
 
 $cwd = getcwd();
 set_time_limit(0);
+ob_implicit_flush();
 error_reporting(E_ALL);
-ini_set('magic_quotes_runtime', 0);
-ini_set('memory_limit', '8M');
 
 if (ini_get('safe_mode')) {
echo  SAFE_MODE_WARNING



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP-CVS] cvs: php4 / Makefile.global run-tests.php

2002-10-31 Thread Yasuo Ohgaki
Marcus Boerger wrote:

You forgot -d 'zlib.output_compression='
and have doubled -d 'safe_mode=0'


Thanks. Copy  paste mistake :)

I think
-d 'zlib.output_compression='
isn't needed since it's not a web client.

--
Yasuo Ohgaki



and thanks i will add the missing valued to run-test.php
when fetching the version from the test executable.

marcus

At 14:52 31.10.2002, Yasuo Ohgaki wrote:


yohgaki Thu Oct 31 08:52:58 2002 EDT

  Modified files:
/php4   Makefile.global run-tests.php
  Log:
  Fixed more ini settings.
  # Derick. Be responsible to your change and opinion.
  # These are settings I know that should be set.
  # There may be other settingis must be set to make
  # run-tests.php work as expected.


Index: php4/Makefile.global
diff -u php4/Makefile.global:1.37 php4/Makefile.global:1.38
--- php4/Makefile.global:1.37   Tue Oct 29 10:22:41 2002
+++ php4/Makefile.globalThu Oct 31 08:52:58 2002
 -50,7 +50,7 
TEST_PHP_EXECUTABLE=$(top_builddir)/$(SAPI_CLI_PATH) \
TEST_PHP_SRCDIR=$(top_srcdir) \
CC=$(CC) \
-   $(top_builddir)/$(SAPI_CLI_PATH) -d 
'open_basedir=' -d 'safe_mode=0' $(top_srcdir)/run-tests.php $(TESTS)
+   $(top_builddir)/$(SAPI_CLI_PATH) -d 
'open_basedir=' -d 'safe_mode=0' -d 'safe_mode=0' -d 
'output_buffering=Off' -d 'auto_prepend_file=' -d 'auto_append_file=' 
-d 'output_handler=' -d 'register_argv=1' -d 'disable_functions=' 
$(top_srcdir)/run-tests.php $(TESTS)

 clean:
find . -name \*.lo -o -name \*.o | xargs rm -f
Index: php4/run-tests.php
diff -u php4/run-tests.php:1.102 php4/run-tests.php:1.103
--- php4/run-tests.php:1.102Wed Oct 30 13:36:39 2002
+++ php4/run-tests.php  Thu Oct 31 08:52:58 2002
 -44,8 +44,9 

 $cwd = getcwd();
 set_time_limit(0);
-ob_implicit_flush();
 error_reporting(E_ALL);
+ini_set('magic_quotes_runtime', 0);
+ini_set('memory_limit', '8M');

 if (ini_get('safe_mode')) {
echo  SAFE_MODE_WARNING



--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php








--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php