1--TEST--
2Testing that imageloadfont() breaks on invalid file passed as first argument
3--CREDITS--
4Austin Drouare <austin.drouare [at] gmail [dot] com> #testfest #tek11
5--EXTENSIONS--
6gd
7--FILE--
8<?php
9var_dump( imageloadfont('\src\invalidfile.font') );
10?>
11--EXPECTF--
12Warning: imageloadfont(\src\invalidfile.font): Failed to open stream: No such file or directory in %s on line %d
13bool(false)
14