summaryrefslogtreecommitdiff
path: root/ext/fileinfo/tests/bug67647.phpt
blob: 46824156499bbd64a95ed807cad171646899dd24 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--TEST--
Bug #67647: Bundled libmagic 5.17 does not detect quicktime files correctly
--SKIPIF--
<?php require_once(dirname(__FILE__) . '/skipif.inc'); ?>
--FILE--
<?php

$f = dirname(__FILE__) . DIRECTORY_SEPARATOR . "67647.mov";

$fi = new finfo(FILEINFO_MIME_TYPE);
var_dump($fi->file($f));
?>
+++DONE+++
--EXPECT--
string(15) "video/quicktime"
+++DONE+++