Update to 2.0.0 tree from current Fremantle build
[opencv] / tests / python / highgui / cvLoadImageBMP.py
diff --git a/tests/python/highgui/cvLoadImageBMP.py b/tests/python/highgui/cvLoadImageBMP.py
deleted file mode 100755 (executable)
index 81f36f9..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-#! /usr/bin/env python
-"""
-This script will test highgui's image loading functionality
-for .bmp files
-"""
-
-# file extension to check
-EXTENSION  = "bmp"
-
-# import check routine
-import cvLoadImage
-import sys
-
-# check image file of extension EXTENSION,
-# the function also exits and returns
-# 0,1 or 77 accordingly.
-
-if cvLoadImage.image_ok(EXTENSION):
-       sys.exit(0)
-else:
-       sys.exit(1)     
-