1--TEST-- 2mcrypt_module_self_test 3--SKIPIF-- 4<?php if (!extension_loaded("mcrypt")) print "skip"; ?> 5--FILE-- 6<?php 7var_dump(mcrypt_module_self_test(MCRYPT_RIJNDAEL_128)); 8var_dump(mcrypt_module_self_test(MCRYPT_RC2)); 9var_dump(mcrypt_module_self_test('')); 10--EXPECTF-- 11Deprecated: Function mcrypt_module_self_test() is deprecated in %s%emcrypt_module_self_test.php on line 2 12bool(true) 13 14Deprecated: Function mcrypt_module_self_test() is deprecated in %s%emcrypt_module_self_test.php on line 3 15bool(true) 16 17Deprecated: Function mcrypt_module_self_test() is deprecated in %s%emcrypt_module_self_test.php on line 4 18bool(false) 19