Check for unsupported bitmap compression/encoding

This commit is contained in:
wiredfool 2014-01-27 20:30:52 -08:00
parent 14175b786d
commit 0a156ca68a

View File

@ -77,5 +77,10 @@ def test_good():
except Exception as msg:
print ("Unsupported Image %s: %s" %(f,msg))
pass
# there are three here that are unsupported:
unsupported = ('Tests/images/bmp/g/rgb32bf.bmp',
'Tests/images/bmp/g/pal8rle.bmp',
'Tests/images/bmp/g/pal4rle.bmp')
if f not in unsupported:
assert_true(False, "Unsupported Image %s: %s" %(f,msg))