Annotation of embedaddon/php/ext/standard/tests/general_functions/proc_nice_variation7.phpt, revision 1.1.1.1

1.1       misho       1: --TEST--
                      2: Test function proc_nice() by substituting argument 1 with string values.
                      3: --CREDITS--
                      4: Italian PHP TestFest 2009 Cesena 19-20-21 june
                      5: Fabio Fabbrucci (fabbrucci@grupporetina.com)
                      6: Michele Orselli (mo@ideato.it)
                      7: Simone Gentili (sensorario@gmail.com)
                      8: --SKIPIF--
                      9: <?php
                     10: if(!function_exists('proc_nice')) die("skip. proc_nice not available ");
                     11: ?>
                     12: --FILE--
                     13: <?php
                     14: 
                     15: 
                     16: echo "*** Test substituting argument 1 with string values ***\n";
                     17: 
                     18: 
                     19: 
                     20: $heredoc = <<<EOT
                     21: hello world
                     22: EOT;
                     23: 
                     24: $variation_array = array(
                     25:   'string DQ' => "string",
                     26:   'string SQ' => 'string',
                     27:   'mixed case string' => "sTrInG",
                     28:   'heredoc' => $heredoc,
                     29:   );
                     30: 
                     31: 
                     32: foreach ( $variation_array as $var ) {
                     33:   var_dump(proc_nice( $var  ) );
                     34: }
                     35: ?>
                     36: --EXPECTF--
                     37: *** Test substituting argument 1 with string values ***
                     38: 
                     39: Warning: proc_nice() expects parameter 1 to be long, string given in %s on line %d
                     40: bool(false)
                     41: 
                     42: Warning: proc_nice() expects parameter 1 to be long, string given in %s on line %d
                     43: bool(false)
                     44: 
                     45: Warning: proc_nice() expects parameter 1 to be long, string given in %s on line %d
                     46: bool(false)
                     47: 
                     48: Warning: proc_nice() expects parameter 1 to be long, string given in %s on line %d
                     49: bool(false)

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>