1--TEST-- 2A script with die() must end "normally" 3--PHPDBG-- 4r 5q 6--EXPECTF-- 7[Successful compilation of %s] 8prompt> [Script ended normally] 9prompt> 10--FILE-- 11<?php 12 13(function($argv) { 14 die(); 15})($argv); 16