mapi_abi: Remove sanity check that all GLES functions are present.
authorPaul Berry <stereotype441@gmail.com>
Wed, 10 Oct 2012 22:07:00 +0000 (15:07 -0700)
committerPaul Berry <stereotype441@gmail.com>
Tue, 16 Oct 2012 19:03:56 +0000 (12:03 -0700)
Currently mapi_abi.py uses hardcoded lists of function names (in
gles_api.py) to determine which functions need to be included in the
GLES 1 or GLES 2 API.  This patch removes a sanity check which
verified that all GLES functions listed in the hardcoded lists were
actually present in the XML.

Later patches in this series will modify mapi_abi.py to determine
which functions need to be included in the GLES 1 or GLES 2 API based
directly on the XML.  Once that is done, the sanity check will be
redundant.  Removing the sanity check now will simplify the patches to
come.

Tested-by: Matt Turner <mattst88@gmail.com>
Reviewed-by: Ian Romanick <ian.d.romanick@intel.com>
src/mapi/mapi/mapi_abi.py

index 4fd15820d383bf96cb0116c4d36d8fd804a19a83..ce4e0473ea12e12260d26e86321318c40b0346e4 100644 (file)
@@ -730,11 +730,6 @@ class GLAPIPrinter(ABIPrinter):
 
             api_entries[ent.name] = ent
 
-        # sanity check
-        missed = [name for name in api if name not in api_entries]
-        if missed:
-            raise Exception('%s is missing' % str(missed))
-
         entries = api_entries.values()
         entries.sort()