Update travis build

We need to manually build of vips from master because of the Poppler
requirements that is too strong in 8.3.3.
This commit is contained in:
Yoan Blanc 2016-08-24 08:01:07 +02:00
parent 6b76a33673
commit eef2fe7035
No known key found for this signature in database
GPG key ID: 6058CF4574298812
2 changed files with 45 additions and 4 deletions

View file

@ -23,21 +23,21 @@ func TestImageResize(t *testing.T) {
func TestImageGifResize(t *testing.T) {
_, err := initImage("test.gif").Resize(300, 240)
if err == nil {
t.Errorf("GIF shouldn't be saved within VIPS.")
t.Errorf("GIF shouldn't be saved within VIPS")
}
}
func TestImagePdfResize(t *testing.T) {
_, err := initImage("test.pdf").Resize(300, 240)
if err == nil {
t.Errorf("PDF cannot be saved within VIPS.")
t.Errorf("PDF cannot be saved within VIPS")
}
}
func TestImageSvgResize(t *testing.T) {
_, err := initImage("test.svg").Resize(300, 240)
if err == nil {
t.Errorf("SVG cannot be saved within VIPS.")
t.Errorf("SVG cannot be saved within VIPS")
}
}