[xdebug-dev] svn: /xdebug/branches/xdebug_2_1/ bug00697.inc bug00697.phpt tests/bug00697.inc tests/bug00697.phpt

From: Derick Rethans <derick[@]derickrethans.nl>
Date: Wed, 08 Jun 2011 13:31:53 +0000

derick Wed, 08 Jun 2011 13:31:53 +0000

Revision: http://svn.xdebug.org/cgi-bin/viewvc.cgi?view=rev&revision=3447&root=xdebug

Log:
- Moved test to test directory.

Changed paths:
    D xdebug/branches/xdebug_2_1/bug00697.inc
    D xdebug/branches/xdebug_2_1/bug00697.phpt
    A + xdebug/branches/xdebug_2_1/tests/bug00697.inc
        (from xdebug/branches/xdebug_2_1/bug00697.inc:r3444)
    A + xdebug/branches/xdebug_2_1/tests/bug00697.phpt
        (from xdebug/branches/xdebug_2_1/bug00697.phpt:r3444)

Deleted: xdebug/branches/xdebug_2_1/bug00697.inc
===================================================================
--- xdebug/branches/xdebug_2_1/bug00697.inc 2011-06-07 16:34:59 UTC (rev 3446)
+++ xdebug/branches/xdebug_2_1/bug00697.inc 2011-06-08 13:31:53 UTC (rev 3447)
@@ -1,9 +0,0 @@
-<?php
-function test()
-{
- substr('', 2,
- 0 + 3 + 0
- );
-}
-
-test();

Deleted: xdebug/branches/xdebug_2_1/bug00697.phpt
===================================================================
--- xdebug/branches/xdebug_2_1/bug00697.phpt 2011-06-07 16:34:59 UTC (rev 3446)
+++ xdebug/branches/xdebug_2_1/bug00697.phpt 2011-06-08 13:31:53 UTC (rev 3447)
@@ -1,50 +0,0 @@
---TEST--
-Test for bug #697: Incorrect code coverage of function arguments when using XDEBUG_CC_UNUSED.
---SKIPIF--
-<?php if (!extension_loaded("xdebug")) print "skip"; ?>
---INI--
-xdebug.default_enable=1
-xdebug.auto_trace=0
-xdebug.trace_options=0
-xdebug.trace_output_dir=/tmp
-xdebug.collect_params=1
-xdebug.collect_return=0
-xdebug.collect_assignments=0
-xdebug.auto_profile=0
-xdebug.profiler_enable=0
-xdebug.dump_globals=0
-xdebug.show_mem_delta=0
-xdebug.trace_format=0
-xdebug.extended_info=1
-xdebug.coverage_enable=1
---FILE--
-<?php
- xdebug_start_code_coverage(XDEBUG_CC_UNUSED | XDEBUG_CC_DEAD_CODE);
-
- include 'bug00697.inc';
- $cc = xdebug_get_code_coverage();
- ksort($cc);
- var_dump(array_slice($cc, 0, 1));
-
- xdebug_stop_code_coverage(false);
-?>
---EXPECTF--
-array(1) {
- ["%sbug00697.inc"]=>
- array(7) {
- [2]=>
- int(1)
- [4]=>
- int(1)
- [5]=>
- int(1)
- [6]=>
- int(1)
- [7]=>
- int(1)
- [9]=>
- int(1)
- [10]=>
- int(1)
- }
-}

Copied: xdebug/branches/xdebug_2_1/tests/bug00697.inc (from rev 3444, xdebug/branches/xdebug_2_1/bug00697.inc)
===================================================================
--- xdebug/branches/xdebug_2_1/tests/bug00697.inc (rev 0)
+++ xdebug/branches/xdebug_2_1/tests/bug00697.inc 2011-06-08 13:31:53 UTC (rev 3447)
@@ -0,0 +1,9 @@
+<?php
+function test()
+{
+ substr('', 2,
+ 0 + 3 + 0
+ );
+}
+
+test();

Copied: xdebug/branches/xdebug_2_1/tests/bug00697.phpt (from rev 3444, xdebug/branches/xdebug_2_1/bug00697.phpt)
===================================================================
--- xdebug/branches/xdebug_2_1/tests/bug00697.phpt (rev 0)
+++ xdebug/branches/xdebug_2_1/tests/bug00697.phpt 2011-06-08 13:31:53 UTC (rev 3447)
@@ -0,0 +1,50 @@
+--TEST--
+Test for bug #697: Incorrect code coverage of function arguments when using XDEBUG_CC_UNUSED.
+--SKIPIF--
+<?php if (!extension_loaded("xdebug")) print "skip"; ?>
+--INI--
+xdebug.default_enable=1
+xdebug.auto_trace=0
+xdebug.trace_options=0
+xdebug.trace_output_dir=/tmp
+xdebug.collect_params=1
+xdebug.collect_return=0
+xdebug.collect_assignments=0
+xdebug.auto_profile=0
+xdebug.profiler_enable=0
+xdebug.dump_globals=0
+xdebug.show_mem_delta=0
+xdebug.trace_format=0
+xdebug.extended_info=1
+xdebug.coverage_enable=1
+--FILE--
+<?php
+ xdebug_start_code_coverage(XDEBUG_CC_UNUSED | XDEBUG_CC_DEAD_CODE);
+
+ include 'bug00697.inc';
+ $cc = xdebug_get_code_coverage();
+ ksort($cc);
+ var_dump(array_slice($cc, 0, 1));
+
+ xdebug_stop_code_coverage(false);
+?>
+--EXPECTF--
+array(1) {
+ ["%sbug00697.inc"]=>
+ array(7) {
+ [2]=>
+ int(1)
+ [4]=>
+ int(1)
+ [5]=>
+ int(1)
+ [6]=>
+ int(1)
+ [7]=>
+ int(1)
+ [9]=>
+ int(1)
+ [10]=>
+ int(1)
+ }
+}
Received on Wed Jun 08 2011 - 14:31:53 BST

This archive was generated by hypermail 2.2.0 : Sun Jun 24 2018 - 04:00:03 BST