--TEST-- proc_nice() basic behaviour --CREDITS-- Italian PHP TestFest 2009 Cesena 19-20-21 june Fabio Fabbrucci (fabbrucci@grupporetina.com) Michele Orselli (mo@ideato.it) Simone Gentili (sensorario@gmail.com) --SKIPIF-- --FILE-- 2) return $matches[2]; else return -1; } $delta = 5; $pid = getmypid(); $niceBefore = getNice($pid); proc_nice($delta); $niceAfter = getNice($pid); var_dump($niceBefore == ($niceAfter - $delta)); ?> --EXPECT-- bool(true)