Date: Sun Apr 11 22:29:48 CEST 2004
User: Derick Rethans
Directory: xdebug
Log Message:
[0.50]
- Disable profiler by default for all tests.
- Stop using tempnam() and instead use uniqid() in test cases so that no
additional files in /tmp are created.
Modified files:
xdebug/tests/001.phpt (version: 1.3)
xdebug/tests/array_map.phpt (version: 1.5)
xdebug/tests/assert_test.phpt (version: 1.8)
xdebug/tests/auto_trace.phpt (version: 1.11)
xdebug/tests/bug00001.phpt (version: 1.4)
xdebug/tests/bug00002.phpt (version: 1.6)
xdebug/tests/bug00003.phpt (version: 1.6)
xdebug/tests/bug00022.phpt (version: 1.2)
xdebug/tests/bug00032-ze1.phpt (version: 1.2)
xdebug/tests/bug00032.phpt (version: 1.7)
xdebug/tests/bug00057-ze1.phpt (version: 1.2)
xdebug/tests/bug00057-ze2.phpt (version: 1.2)
xdebug/tests/call_user_func_array.phpt (version: 1.7)
xdebug/tests/call_user_func_array2.phpt (version: 1.7)
xdebug/tests/function_counter.phpt (version: 1.2)
xdebug/tests/local_vars_in_error-ze1.phpt (version: 1.2)
xdebug/tests/local_vars_in_error.phpt (version: 1.6)
xdebug/tests/memory_usage.phpt (version: 1.5)
xdebug/tests/peak_memory_usage.phpt (version: 1.2)
xdebug/tests/shutdown.phpt (version: 1.2)
xdebug/tests/test1.phpt (version: 1.11)
xdebug/tests/test10.phpt (version: 1.7)
xdebug/tests/test10b.phpt (version: 1.3)
xdebug/tests/test11.phpt (version: 1.9)
xdebug/tests/test12.phpt (version: 1.8)
xdebug/tests/test13.phpt (version: 1.8)
xdebug/tests/test14.phpt (version: 1.8)
xdebug/tests/test14b.phpt (version: 1.7)
xdebug/tests/test15.phpt (version: 1.8)
xdebug/tests/test16.phpt (version: 1.7)
xdebug/tests/test16b.phpt (version: 1.6)
xdebug/tests/test17.phpt (version: 1.8)
xdebug/tests/test18.phpt (version: 1.9)
xdebug/tests/test19.phpt (version: 1.4)
xdebug/tests/test20.phpt (version: 1.5)
xdebug/tests/test20b.phpt (version: 1.3)
xdebug/tests/test3.phpt (version: 1.3)
xdebug/tests/test4.phpt (version: 1.7)
xdebug/tests/test5.phpt (version: 1.6)
xdebug/tests/test6.phpt (version: 1.11)
xdebug/tests/test7.phpt (version: 1.6)
xdebug/tests/test7b.phpt (version: 1.3)
xdebug/tests/test8.phpt (version: 1.10)
xdebug/tests/test9.phpt (version: 1.7)
xdebug/tests/test9b.phpt (version: 1.3)
xdebug/tests/trace.phpt (version: 1.8)
[FILE: /xdebug/tests/001.phpt]
===================================================================
RCS file: cvstemp,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- xdebug/tests/001.phpt:1.2 Fri Oct 18 18:38:08 2002 GMT
+++ xdebug/tests/001.phpt Sun Apr 11 18:29:48 2004 GMT
@@ -2,8 +2,8 @@
Check for xdebug presence
--SKIPIF--
<?php if (!extension_loaded("xdebug")) print "skip"; ?>
---POST--
---GET--
+--INI--
+xdebug.profiler_enable=0
--FILE--
<?php
echo "xdebug extension is available";
[FILE: /xdebug/tests/array_map.phpt]
===================================================================
RCS file: cvstemp,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- xdebug/tests/array_map.phpt:1.4 Tue Mar 16 18:03:37 2004 GMT
+++ xdebug/tests/array_map.phpt Sun Apr 11 18:29:48 2004 GMT
@@ -5,10 +5,11 @@
xdebug.auto_trace=0
xdebug.collect_params=1
xdebug.auto_profile=0
+xdebug.profiler_enable=0
xdebug.show_mem_delta=0
--FILE--
<?php
-$tf = xdebug_start_trace(tempnam('/tmp', 'xdt'));
+$tf = xdebug_start_trace('/tmp/'. uniqid('xdt', TRUE));
$ar = array('a', 'bb', 'ccc');
$r = array_map('strlen', $ar);
[FILE: /xdebug/tests/assert_test.phpt]
===================================================================
RCS file: cvstemp,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- xdebug/tests/assert_test.phpt:1.7 Tue Mar 16 18:03:37 2004 GMT
+++ xdebug/tests/assert_test.phpt Sun Apr 11 18:29:48 2004 GMT
@@ -5,10 +5,11 @@
xdebug.auto_trace=0
xdebug.collect_params=1
xdebug.auto_profile=0
+xdebug.profiler_enable=0
xdebug.show_mem_delta=0
--FILE--
<?php
-$tf = xdebug_start_trace(tempnam('/tmp', 'xdt'));
+$tf = xdebug_start_trace('/tmp/'. uniqid('xdt', TRUE));
// Active assert and make it quiet
assert_options (ASSERT_ACTIVE, 1);
[FILE: /xdebug/tests/auto_trace.phpt]
===================================================================
RCS file: cvstemp,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- xdebug/tests/auto_trace.phpt:1.10 Tue Mar 16 21:25:54 2004 GMT
+++ xdebug/tests/auto_trace.phpt Sun Apr 11 18:29:48 2004 GMT
@@ -6,6 +6,7 @@
xdebug.trace_output_dir=/tmp
xdebug.collect_params=1
xdebug.auto_profile=0
+xdebug.profiler_enable=0
xdebug.dump_globals=0
xdebug.show_mem_delta=0
--FILE--
[FILE: /xdebug/tests/bug00001.phpt]
===================================================================
RCS file: cvstemp,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- xdebug/tests/bug00001.phpt:1.3 Fri Sep 19 05:54:29 2003 GMT
+++ xdebug/tests/bug00001.phpt Sun Apr 11 18:29:48 2004 GMT
@@ -7,6 +7,7 @@
xdebug.auto_trace=0
xdebug.collect_params=1
xdebug.auto_profile=0
+xdebug.profiler_enable=0
--FILE--
<?php
class A {
[FILE: /xdebug/tests/bug00002.phpt]
===================================================================
RCS file: cvstemp,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- xdebug/tests/bug00002.phpt:1.5 Tue Mar 16 18:03:37 2004 GMT
+++ xdebug/tests/bug00002.phpt Sun Apr 11 18:29:48 2004 GMT
@@ -5,6 +5,7 @@
xdebug.auto_trace=0
xdebug.collect_params=1
xdebug.auto_profile=0
+xdebug.profiler_enable=0
xdebug.show_mem_delta=0
--FILE--
<?php
[FILE: /xdebug/tests/bug00003.phpt]
===================================================================
RCS file: cvstemp,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- xdebug/tests/bug00003.phpt:1.5 Tue Mar 16 18:03:37 2004 GMT
+++ xdebug/tests/bug00003.phpt Sun Apr 11 18:29:48 2004 GMT
@@ -5,6 +5,7 @@
xdebug.auto_trace=0
xdebug.collect_params=1
xdebug.auto_profile=0
+xdebug.profiler_enable=0
xdebug.show_mem_delta=0
--FILE--
<?php
[FILE: /xdebug/tests/bug00022.phpt]
===================================================================
RCS file: cvstemp,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- xdebug/tests/bug00022.phpt:1.1 Mon Dec 01 14:25:00 2003 GMT
+++ xdebug/tests/bug00022.phpt Sun Apr 11 18:29:48 2004 GMT
@@ -4,6 +4,7 @@
xdebug.enable=1
xdebug.auto_trace=0
xdebug.collect_params=1
+xdebug.profiler_enable=0
--FILE--
<?php
function foo($s) {
[FILE: /xdebug/tests/bug00032-ze1.phpt]
===================================================================
RCS file: cvstemp,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- xdebug/tests/bug00032-ze1.phpt:1.1 Fri Apr 09 21:27:51 2004 GMT
+++ xdebug/tests/bug00032-ze1.phpt Sun Apr 11 18:29:48 2004 GMT
@@ -6,6 +6,7 @@
xdebug.default_enable=1
xdebug.auto_trace=0
xdebug.collect_params=1
+xdebug.profiler_enable=0
--FILE--
<?php
${1} = "foo";
[FILE: /xdebug/tests/bug00032.phpt]
===================================================================
RCS file: cvstemp,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- xdebug/tests/bug00032.phpt:1.6 Fri Apr 09 21:27:51 2004 GMT
+++ xdebug/tests/bug00032.phpt Sun Apr 11 18:29:48 2004 GMT
@@ -6,6 +6,7 @@
xdebug.default_enable=1
xdebug.auto_trace=0
xdebug.collect_params=1
+xdebug.profiler_enable=0
--FILE--
<?php
${1} = "foo";
[FILE: /xdebug/tests/bug00057-ze1.phpt]
===================================================================
RCS file: cvstemp,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- xdebug/tests/bug00057-ze1.phpt:1.1 Sat Apr 10 08:33:49 2004 GMT
+++ xdebug/tests/bug00057-ze1.phpt Sun Apr 11 18:29:48 2004 GMT
@@ -7,6 +7,7 @@
xdebug.auto_trace=0
xdebug.collect_params=1
xdebug.show_mem_delta=0
+xdebug.profiler_enable=0
--FILE--
<?php
class OO {
[FILE: /xdebug/tests/bug00057-ze2.phpt]
===================================================================
RCS file: cvstemp,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- xdebug/tests/bug00057-ze2.phpt:1.1 Sat Apr 10 08:33:49 2004 GMT
+++ xdebug/tests/bug00057-ze2.phpt Sun Apr 11 18:29:48 2004 GMT
@@ -7,6 +7,7 @@
xdebug.auto_trace=0
xdebug.collect_params=1
xdebug.show_mem_delta=0
+xdebug.profiler_enable=0
--FILE--
<?php
class OO {
[FILE: /xdebug/tests/call_user_func_array.phpt]
===================================================================
RCS file: cvstemp,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- xdebug/tests/call_user_func_array.phpt:1.6 Tue Mar 16 18:03:37 2004 GMT
+++ xdebug/tests/call_user_func_array.phpt Sun Apr 11 18:29:48 2004 GMT
@@ -5,10 +5,11 @@
xdebug.auto_trace=0
xdebug.collect_params=1
xdebug.auto_profile=0
+xdebug.profiler_enable=0
xdebug.show_mem_delta=0
--FILE--
<?php
-$tf = xdebug_start_trace(tempnam('/tmp', 'xdt'));
+$tf = xdebug_start_trace('/tmp/'. uniqid('xdt', TRUE));
function debug($var, $val) {
if (is_array($val) || is_object($val) || is_resource($val)) {
[FILE: /xdebug/tests/call_user_func_array2.phpt]
===================================================================
RCS file: cvstemp,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- xdebug/tests/call_user_func_array2.phpt:1.6 Fri Apr 09 21:27:51 2004 GMT
+++ xdebug/tests/call_user_func_array2.phpt Sun Apr 11 18:29:48 2004 GMT
@@ -5,10 +5,11 @@
xdebug.auto_trace=0
xdebug.collect_params=1
xdebug.auto_profile=0
+xdebug.profiler_enable=0
xdebug.show_mem_delta=0
--FILE--
<?php
-$tf = xdebug_start_trace(tempnam('/tmp', 'xdt'));
+$tf = xdebug_start_trace('/tmp/'. uniqid('xdt', TRUE));
include 'call_user_func_array2.inc';
[FILE: /xdebug/tests/function_counter.phpt]
===================================================================
RCS file: cvstemp,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- xdebug/tests/function_counter.phpt:1.1 Wed Feb 18 19:53:57 2004 GMT
+++ xdebug/tests/function_counter.phpt Sun Apr 11 18:29:48 2004 GMT
@@ -4,6 +4,7 @@
xdebug.enable=1
xdebug.collect_params=1
xdebug.auto_profile=0
+xdebug.profiler_enable=0
--FILE--
<?php
echo xdebug_get_function_count(). "\n";
[FILE: /xdebug/tests/local_vars_in_error-ze1.phpt]
===================================================================
RCS file: cvstemp,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- xdebug/tests/local_vars_in_error-ze1.phpt:1.1 Fri Apr 09 21:27:51 2004 GMT
+++ xdebug/tests/local_vars_in_error-ze1.phpt Sun Apr 11 18:29:48 2004 GMT
@@ -7,6 +7,7 @@
xdebug.auto_trace=0
xdebug.collect_params=1
xdebug.auto_profile=0
+xdebug.profiler_enable=0
xdebug.dump_globals=0
xdebug.show_local_vars=1
--FILE--
[FILE: /xdebug/tests/local_vars_in_error.phpt]
===================================================================
RCS file: cvstemp,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- xdebug/tests/local_vars_in_error.phpt:1.5 Fri Apr 09 21:27:51 2004 GMT
+++ xdebug/tests/local_vars_in_error.phpt Sun Apr 11 18:29:48 2004 GMT
@@ -7,6 +7,7 @@
xdebug.auto_trace=0
xdebug.collect_params=1
xdebug.auto_profile=0
+xdebug.profiler_enable=0
xdebug.dump_globals=0
xdebug.show_local_vars=1
--FILE--
[FILE: /xdebug/tests/memory_usage.phpt]
===================================================================
RCS file: cvstemp,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- xdebug/tests/memory_usage.phpt:1.4 Mon Jan 12 11:03:47 2004 GMT
+++ xdebug/tests/memory_usage.phpt Sun Apr 11 18:29:48 2004 GMT
@@ -4,6 +4,7 @@
xdebug.enable=1
xdebug.collect_params=1
xdebug.auto_profile=0
+xdebug.profiler_enable=0
--FILE--
<?php
$param[] = array (1, array (1, array (1, array (1, array (1, array (1, array (1, array (1, array (1, array (1, array (1, array (1, 2))))))))))));
[FILE: /xdebug/tests/peak_memory_usage.phpt]
===================================================================
RCS file: cvstemp,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- xdebug/tests/peak_memory_usage.phpt:1.1 Mon Jan 12 11:03:47 2004 GMT
+++ xdebug/tests/peak_memory_usage.phpt Sun Apr 11 18:29:48 2004 GMT
@@ -4,6 +4,7 @@
xdebug.enable=1
xdebug.collect_params=1
xdebug.auto_profile=0
+xdebug.profiler_enable=0
--FILE--
<?php
$a = xdebug_memory_usage();
[FILE: /xdebug/tests/shutdown.phpt]
===================================================================
RCS file: cvstemp,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- xdebug/tests/shutdown.phpt:1.1 Fri Apr 09 21:27:51 2004 GMT
+++ xdebug/tests/shutdown.phpt Sun Apr 11 18:29:48 2004 GMT
@@ -4,6 +4,7 @@
xdebug.default_enable=1
xdebug.auto_trace=1
xdebug.collect_params=1
+xdebug.profiler_enable=0
--FILE--
<?php
register_shutdown_function('foo');
[FILE: /xdebug/tests/test1.phpt]
===================================================================
RCS file: cvstemp,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- xdebug/tests/test1.phpt:1.10 Fri Apr 09 21:27:51 2004 GMT
+++ xdebug/tests/test1.phpt Sun Apr 11 18:29:48 2004 GMT
@@ -4,10 +4,11 @@
xdebug.auto_trace=0
xdebug.collect_params=1
xdebug.auto_profile=0
+xdebug.profiler_enable=0
xdebug.show_mem_delta=0
--FILE--
<?php
- $tf = xdebug_start_trace(tempnam('/tmp', 'xdt'));
+ $tf = xdebug_start_trace('/tmp/'. uniqid('xdt', TRUE));
function foo ($a)
{
$c = new een();
[FILE: /xdebug/tests/test10.phpt]
===================================================================
RCS file: cvstemp,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- xdebug/tests/test10.phpt:1.6 Wed Feb 18 19:45:32 2004 GMT
+++ xdebug/tests/test10.phpt Sun Apr 11 18:29:48 2004 GMT
@@ -7,9 +7,10 @@
xdebug.auto_trace=0
xdebug.collect_params=1
xdebug.auto_profile=0
+xdebug.profiler_enable=0
--FILE--
<?php
- $tf = xdebug_start_trace(tempnam('/tmp', 'xdt'));
+ $tf = xdebug_start_trace('/tmp/'. uniqid('xdt', TRUE));
class D
{
function a($x) {
[FILE: /xdebug/tests/test10b.phpt]
===================================================================
RCS file: cvstemp,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- xdebug/tests/test10b.phpt:1.2 Tue Mar 16 18:03:37 2004 GMT
+++ xdebug/tests/test10b.phpt Sun Apr 11 18:29:48 2004 GMT
@@ -7,10 +7,11 @@
xdebug.auto_trace=0
xdebug.collect_params=1
xdebug.auto_profile=0
+xdebug.profiler_enable=0
xdebug.show_mem_delta=0
--FILE--
<?php
- $tf = xdebug_start_trace(tempnam('/tmp', 'xdt'));
+ $tf = xdebug_start_trace('/tmp/'. uniqid('xdt', TRUE));
class D
{
static function a($x) {
[FILE: /xdebug/tests/test11.phpt]
===================================================================
RCS file: cvstemp,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- xdebug/tests/test11.phpt:1.8 Sun Apr 11 12:22:09 2004 GMT
+++ xdebug/tests/test11.phpt Sun Apr 11 18:29:48 2004 GMT
@@ -6,10 +6,11 @@
xdebug.collect_params=1
xdebug.collect_return=1
xdebug.auto_profile=0
+xdebug.profiler_enable=0
xdebug.show_mem_delta=0
--FILE--
<?php
- $tf = xdebug_start_trace(tempnam('/tmp', 'xdt'));
+ $tf = xdebug_start_trace('/tmp/'. uniqid('xdt', TRUE));
function blaat ()
{
[FILE: /xdebug/tests/test12.phpt]
===================================================================
RCS file: cvstemp,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- xdebug/tests/test12.phpt:1.7 Tue Mar 16 18:03:37 2004 GMT
+++ xdebug/tests/test12.phpt Sun Apr 11 18:29:48 2004 GMT
@@ -5,10 +5,11 @@
xdebug.auto_trace=0
xdebug.collect_params=1
xdebug.auto_profile=0
+xdebug.profiler_enable=0
xdebug.show_mem_delta=0
--FILE--
<?php
- $tf = xdebug_start_trace(tempnam('/tmp', 'xdt'));
+ $tf = xdebug_start_trace('/tmp/'. uniqid('xdt', TRUE));
function a ($a, $b, $h, &$i) {
echo $a;
[FILE: /xdebug/tests/test13.phpt]
===================================================================
RCS file: cvstemp,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- xdebug/tests/test13.phpt:1.7 Tue Mar 16 18:03:37 2004 GMT
+++ xdebug/tests/test13.phpt Sun Apr 11 18:29:48 2004 GMT
@@ -5,10 +5,11 @@
xdebug.auto_trace=0
xdebug.collect_params=1
xdebug.auto_profile=0
+xdebug.profiler_enable=0
xdebug.show_mem_delta=0
--FILE--
<?php
- $tf = xdebug_start_trace(tempnam('/tmp', 'xdt'));
+ $tf = xdebug_start_trace('/tmp/'. uniqid('xdt', TRUE));
function foo1 ($a)
{
[FILE: /xdebug/tests/test14.phpt]
===================================================================
RCS file: cvstemp,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- xdebug/tests/test14.phpt:1.7 Wed Feb 18 19:45:32 2004 GMT
+++ xdebug/tests/test14.phpt Sun Apr 11 18:29:48 2004 GMT
@@ -8,9 +8,10 @@
report_memleaks=0
xdebug.collect_params=1
xdebug.auto_profile=0
+xdebug.profiler_enable=0
--FILE--
<?php
- $tf = xdebug_start_trace(tempnam('/tmp', 'xdt'));
+ $tf = xdebug_start_trace('/tmp/'. uniqid('xdt', TRUE));
class foo {
[FILE: /xdebug/tests/test14b.phpt]
===================================================================
RCS file: cvstemp,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- xdebug/tests/test14b.phpt:1.6 Tue Mar 16 18:03:37 2004 GMT
+++ xdebug/tests/test14b.phpt Sun Apr 11 18:29:48 2004 GMT
@@ -8,10 +8,11 @@
report_memleaks=0
xdebug.collect_params=1
xdebug.auto_profile=0
+xdebug.profiler_enable=0
xdebug.show_mem_delta=0
--FILE--
<?php
- $tf = xdebug_start_trace(tempnam('/tmp', 'xdt'));
+ $tf = xdebug_start_trace('/tmp/'. uniqid('xdt', TRUE));
class foo {
[FILE: /xdebug/tests/test15.phpt]
===================================================================
RCS file: cvstemp,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- xdebug/tests/test15.phpt:1.7 Tue Mar 16 18:03:37 2004 GMT
+++ xdebug/tests/test15.phpt Sun Apr 11 18:29:48 2004 GMT
@@ -6,9 +6,10 @@
xdebug.collect_params=1
xdebug.auto_profile=0
xdebug.show_mem_delta=0
+xdebug.profiler_enable=0
--FILE--
<?php
- $tf = xdebug_start_trace(tempnam('/tmp', 'xdt'));
+ $tf = xdebug_start_trace('/tmp/'. uniqid('xdt', TRUE));
class a {
[FILE: /xdebug/tests/test16.phpt]
===================================================================
RCS file: cvstemp,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- xdebug/tests/test16.phpt:1.6 Wed Feb 18 19:45:32 2004 GMT
+++ xdebug/tests/test16.phpt Sun Apr 11 18:29:48 2004 GMT
@@ -6,10 +6,11 @@
xdebug.enable=1
xdebug.auto_trace=0
xdebug.auto_profile=0
+xdebug.profiler_enable=0
xdebug.collect_params=1
--FILE--
<?php
- $tf = xdebug_start_trace(tempnam('/tmp', 'xdt'));
+ $tf = xdebug_start_trace('/tmp/'. uniqid('xdt', TRUE));
class a {
[FILE: /xdebug/tests/test16b.phpt]
===================================================================
RCS file: cvstemp,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- xdebug/tests/test16b.phpt:1.5 Tue Mar 16 18:03:37 2004 GMT
+++ xdebug/tests/test16b.phpt Sun Apr 11 18:29:48 2004 GMT
@@ -8,9 +8,10 @@
xdebug.auto_profile=0
xdebug.collect_params=1
xdebug.show_mem_delta=0
+xdebug.profiler_enable=0
--FILE--
<?php
- $tf = xdebug_start_trace(tempnam('/tmp', 'xdt'));
+ $tf = xdebug_start_trace('/tmp/'. uniqid('xdt', TRUE));
class a {
[FILE: /xdebug/tests/test17.phpt]
===================================================================
RCS file: cvstemp,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- xdebug/tests/test17.phpt:1.7 Tue Mar 16 18:03:37 2004 GMT
+++ xdebug/tests/test17.phpt Sun Apr 11 18:29:48 2004 GMT
@@ -5,10 +5,11 @@
xdebug.auto_trace=0
xdebug.collect_params=1
xdebug.auto_profile=0
+xdebug.profiler_enable=0
xdebug.show_mem_delta=0
--FILE--
<?php
- $tf = xdebug_start_trace(tempnam('/tmp', 'xdt'));
+ $tf = xdebug_start_trace('/tmp/'. uniqid('xdt', TRUE));
echo str_repeat ("5", 5);
[FILE: /xdebug/tests/test18.phpt]
===================================================================
RCS file: cvstemp,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- xdebug/tests/test18.phpt:1.8 Tue Mar 16 18:03:37 2004 GMT
+++ xdebug/tests/test18.phpt Sun Apr 11 18:29:48 2004 GMT
@@ -5,10 +5,11 @@
xdebug.auto_trace=0
xdebug.collect_params=1
xdebug.auto_profile=0
+xdebug.profiler_enable=0
xdebug.show_mem_delta=0
--FILE--
<?php
-$tf = xdebug_start_trace(tempnam('/tmp', 'xdt'));
+$tf = xdebug_start_trace('/tmp/'. uniqid('xdt', TRUE));
function bar()
{
[FILE: /xdebug/tests/test19.phpt]
===================================================================
RCS file: cvstemp,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- xdebug/tests/test19.phpt:1.3 Sun Sep 07 11:28:01 2003 GMT
+++ xdebug/tests/test19.phpt Sun Apr 11 18:29:48 2004 GMT
@@ -5,6 +5,7 @@
xdebug.auto_trace=0
xdebug.collect_params=1
xdebug.auto_profile=0
+xdebug.profiler_enable=0
--FILE--
<?php
for($i=0; $i<256; $i++) {
[FILE: /xdebug/tests/test20.phpt]
===================================================================
RCS file: cvstemp,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- xdebug/tests/test20.phpt:1.4 Wed Feb 18 19:45:32 2004 GMT
+++ xdebug/tests/test20.phpt Sun Apr 11 18:29:48 2004 GMT
@@ -7,9 +7,10 @@
xdebug.auto_trace=0
xdebug.collect_params=1
xdebug.auto_profile=0
+xdebug.profiler_enable=0
--FILE--
<?php
-$tf = xdebug_start_trace(tempnam('/tmp', 'xdt'));
+$tf = xdebug_start_trace('/tmp/'. uniqid('xdt', TRUE));
class DB {
function query($s) {
echo $s."\n";
[FILE: /xdebug/tests/test20b.phpt]
===================================================================
RCS file: cvstemp,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- xdebug/tests/test20b.phpt:1.2 Tue Mar 16 18:03:37 2004 GMT
+++ xdebug/tests/test20b.phpt Sun Apr 11 18:29:48 2004 GMT
@@ -7,10 +7,11 @@
xdebug.auto_trace=0
xdebug.collect_params=1
xdebug.auto_profile=0
+xdebug.profiler_enable=0
xdebug.show_mem_delta=0
--FILE--
<?php
-$tf = xdebug_start_trace(tempnam('/tmp', 'xdt'));
+$tf = xdebug_start_trace('/tmp/'. uniqid('xdt', TRUE));
class DB {
static function query($s) {
echo $s."\n";
[FILE: /xdebug/tests/test3.phpt]
===================================================================
RCS file: cvstemp,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- xdebug/tests/test3.phpt:1.2 Tue Mar 16 18:03:37 2004 GMT
+++ xdebug/tests/test3.phpt Sun Apr 11 18:29:48 2004 GMT
@@ -2,6 +2,7 @@
Test for xdebug_is_enabled, xdebug_disable and xdebug_enable
--INI--
xdebug.default_enable=1
+xdebug.profiler_enable=0
--FILE--
<?php
echo xdebug_is_enabled() ? "Enabled\n" : "Disabled\n";
[FILE: /xdebug/tests/test4.phpt]
===================================================================
RCS file: cvstemp,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- xdebug/tests/test4.phpt:1.6 Tue Mar 16 18:03:37 2004 GMT
+++ xdebug/tests/test4.phpt Sun Apr 11 18:29:48 2004 GMT
@@ -4,6 +4,7 @@
xdebug.default_enable=1
xdebug.dump_globals=0
xdebug.show_mem_delta=0
+xdebug.profiler_enable=0
--FILE--
<?php
function a () {
[FILE: /xdebug/tests/test5.phpt]
===================================================================
RCS file: cvstemp,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- xdebug/tests/test5.phpt:1.5 Tue Mar 16 18:03:37 2004 GMT
+++ xdebug/tests/test5.phpt Sun Apr 11 18:29:48 2004 GMT
@@ -4,6 +4,7 @@
xdebug.default_enable=1
xdebug.dump_globals=0
xdebug.show_mem_delta=0
+xdebug.profiler_enable=0
--FILE--
<?php
[FILE: /xdebug/tests/test6.phpt]
===================================================================
RCS file: cvstemp,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- xdebug/tests/test6.phpt:1.10 Tue Mar 16 18:03:37 2004 GMT
+++ xdebug/tests/test6.phpt Sun Apr 11 18:29:48 2004 GMT
@@ -6,6 +6,7 @@
xdebug.dump_globals=0
xdebug.show_local_vars=1
xdebug.show_mem_delta=0
+xdebug.profiler_enable=0
--FILE--
<?php
function foo2 ($a, $b, $c)
[FILE: /xdebug/tests/test7.phpt]
===================================================================
RCS file: cvstemp,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- xdebug/tests/test7.phpt:1.5 Wed Feb 18 19:45:32 2004 GMT
+++ xdebug/tests/test7.phpt Sun Apr 11 18:29:48 2004 GMT
@@ -7,9 +7,10 @@
xdebug.auto_trace=0
xdebug.auto_profile=0
xdebug.collect_params=1
+xdebug.profiler_enable=0
--FILE--
<?php
- $tf = xdebug_start_trace(tempnam('/tmp', 'xdt'));
+ $tf = xdebug_start_trace('/tmp/'. uniqid('xdt', TRUE));
class aaa {
var $c1;
[FILE: /xdebug/tests/test7b.phpt]
===================================================================
RCS file: cvstemp,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- xdebug/tests/test7b.phpt:1.2 Tue Mar 16 18:03:37 2004 GMT
+++ xdebug/tests/test7b.phpt Sun Apr 11 18:29:48 2004 GMT
@@ -8,9 +8,10 @@
xdebug.auto_profile=0
xdebug.collect_params=1
xdebug.show_mem_delta=0
+xdebug.profiler_enable=0
--FILE--
<?php
- $tf = xdebug_start_trace(tempnam('/tmp', 'xdt'));
+ $tf = xdebug_start_trace('/tmp/'. uniqid('xdt', TRUE));
class aaa {
public $c1;
[FILE: /xdebug/tests/test8.phpt]
===================================================================
RCS file: cvstemp,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- xdebug/tests/test8.phpt:1.9 Sun Apr 11 12:22:09 2004 GMT
+++ xdebug/tests/test8.phpt Sun Apr 11 18:29:48 2004 GMT
@@ -6,10 +6,11 @@
xdebug.collect_params=1
xdebug.collect_return=1
xdebug.auto_profile=0
+xdebug.profiler_enable=0
xdebug.show_mem_delta=0
--FILE--
<?php
-$tf = xdebug_start_trace(tempnam('/tmp', 'xdt'));
+$tf = xdebug_start_trace('/tmp/'. uniqid('xdt', TRUE));
function a () {
var_dump (xdebug_get_function_stack());
[FILE: /xdebug/tests/test9.phpt]
===================================================================
RCS file: cvstemp,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- xdebug/tests/test9.phpt:1.6 Wed Feb 18 19:45:32 2004 GMT
+++ xdebug/tests/test9.phpt Sun Apr 11 18:29:48 2004 GMT
@@ -7,9 +7,10 @@
xdebug.auto_trace=0
xdebug.collect_params=1
xdebug.auto_profile=0
+xdebug.profiler_enable=0
--FILE--
<?php
-$tf = xdebug_start_trace(tempnam('/tmp', 'xdt'));
+$tf = xdebug_start_trace('/tmp/'. uniqid('xdt', TRUE));
class DBHelper
{
function quote($s) {
[FILE: /xdebug/tests/test9b.phpt]
===================================================================
RCS file: cvstemp,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- xdebug/tests/test9b.phpt:1.2 Tue Mar 16 18:03:37 2004 GMT
+++ xdebug/tests/test9b.phpt Sun Apr 11 18:29:48 2004 GMT
@@ -7,10 +7,11 @@
xdebug.auto_trace=0
xdebug.collect_params=1
xdebug.auto_profile=0
+xdebug.profiler_enable=0
xdebug.show_mem_delta=0
--FILE--
<?php
-$tf = xdebug_start_trace(tempnam('/tmp', 'xdt'));
+$tf = xdebug_start_trace('/tmp/'. uniqid('xdt', TRUE));
class DBHelper
{
static function quote($s) {
[FILE: /xdebug/tests/trace.phpt]
===================================================================
RCS file: cvstemp,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- xdebug/tests/trace.phpt:1.7 Tue Mar 16 18:03:37 2004 GMT
+++ xdebug/tests/trace.phpt Sun Apr 11 18:29:48 2004 GMT
@@ -5,10 +5,11 @@
xdebug.auto_trace=0
xdebug.collect_params=1
xdebug.auto_profile=0
+xdebug.profiler_enable=0
xdebug.show_mem_delta=0
--FILE--
<?php
- $tf = xdebug_start_trace(tempnam('/tmp', 'xdt'));
+ $tf = xdebug_start_trace('/tmp/'. uniqid('xdt', TRUE));
function fibonacci_cache ($n)
{
if (isset ($GLOBALS['fcache'][$n])) {
Received on Sun Apr 11 2004 - 22:29:52 BST
This archive was generated by hypermail 2.2.0 : Sun Jun 24 2018 - 04:00:02 BST