system: Linux mars.sprixweb.com 3.10.0-1160.119.1.el7.x86_64 #1 SMP Tue Jun 4 14:43:51 UTC 2024 x86_64
cmd: 

Direktori : /usr/local/src/imagick/
Upload File :
Current File : //usr/local/src/imagick/check-loaded.phpt

--TEST--
Check that Imagick is actually loaded
--SKIPIF--

--FILE--
<?php

// The tests are all skipped if imagick is not loaded. This can lead
// to a false green build when Imagick isn't actually loaded. So 
// this script gives an error to allow us to error before running the tests.
if (extension_loaded("imagick")) {
	echo "OK" . PHP_EOL;
}
else {
	echo "imagick module is not loaded." . PHP_EOL;
}

?>
--EXPECTF--
OK