[Mesa-dev] [PATCH mesa v2 8/9] egl: make sure entrypoints list is always sorted
Eric Engestrom
eric at engestrom.ch
Tue Feb 21 23:56:51 UTC 2017
Starting with the next commit, badly sorting this list will break the
eglGetProcAddress().
Signed-off-by: Eric Engestrom <eric at engestrom.ch>
---
v2: use sh instead of bash (Emil)
---
src/egl/Makefile.am | 3 ++-
src/egl/egl-entrypoint-check | 5 +++++
2 files changed, 7 insertions(+), 1 deletion(-)
create mode 100755 src/egl/egl-entrypoint-check
diff --git a/src/egl/Makefile.am b/src/egl/Makefile.am
index d36a786ab4..3477f797d7 100644
--- a/src/egl/Makefile.am
+++ b/src/egl/Makefile.am
@@ -126,7 +126,8 @@ egl_HEADERS = \
$(top_srcdir)/include/EGL/eglmesaext.h \
$(top_srcdir)/include/EGL/eglplatform.h
-TESTS = egl-symbols-check
+TESTS = egl-symbols-check \
+ egl-entrypoint-check
EXTRA_DIST = \
$(TESTS) \
diff --git a/src/egl/egl-entrypoint-check b/src/egl/egl-entrypoint-check
new file mode 100755
index 0000000000..ec33d8e97f
--- /dev/null
+++ b/src/egl/egl-entrypoint-check
@@ -0,0 +1,5 @@
+#!/bin/sh
+
+entrypoints=$(grep EGL_ENTRYPOINT "$srcdir"/main/eglentrypoint.h)
+sorted=$(sort <<< "$entrypoints")
+test "$entrypoints" = "$sorted"
--
Cheers,
Eric
More information about the mesa-dev
mailing list