]> git.cworth.org Git - fips/blobdiff - test/fips-test
test: Add remaining three egl-opengl tests
[fips] / test / fips-test
index 7f9435288269134c554bf6abd90712efee6eb630..331b87aa2acbe752a523594781ddfd3059eec697 100755 (executable)
@@ -23,21 +23,39 @@ echo "Testing fips with programs using different window-system interfaces to"
 echo "OpenGL, different linking mechanisms, and different symbol-lookup."
 echo ""
 
-printf "               Win-sys Link-mode       Lookup\n"
-printf "               ------- -------------   -----------------\n"
+printf "       Window sys.     Link-mode       Lookup\n"
+printf "       -----------     -------------   -----------------\n"
 
-printf "Testing                GLX     link to libGL   direct calls            ... "
+printf "Testing        GLX             link to libGL   direct calls            ... "
 test glx-link-call
 
-printf "Testing                GLX     dlopen(libGL)   dlsym                   ... "
+printf "Testing        GLX             link to libGL   glXGetProcAddress       ... "
+test glx-link-gpa
+
+printf "Testing        GLX             link to libGL   glXGetProcAddressARB    ... "
+test glx-link-gpaa
+
+printf "Testing        GLX             dlopen(libGL)   dlsym                   ... "
 test glx-dlopen-dlsym
 
-printf "Testing                GLX     dlopen(libGL)   glXGetProcAddress       ... "
+printf "Testing        GLX             dlopen(libGL)   glXGetProcAddress       ... "
 test glx-dlopen-gpa
 
-printf "Testing                GLX     dlopen(libGL)   glXGetProcAddressARB    ... "
+printf "Testing        GLX             dlopen(libGL)   glXGetProcAddressARB    ... "
 test glx-dlopen-gpaa
 
+printf "Testing        EGL/OpenGL      link to libEGL  direct calls            ... "
+test egl-opengl-link-call
+
+printf "Testing        EGL/OpenGL      link to libEGL  eglGetProcAddress       ... "
+test egl-opengl-link-gpa
+
+printf "Testing        EGL/OpenGL      dlopen(libGL)   dlsym                   ... "
+test egl-opengl-dlopen-dlsym
+
+printf "Testing        EGL/OpenGL      dlopen(libGL)   eglGetProcAddress       ... "
+test egl-opengl-dlopen-gpa
+
 echo ""
 
 if [ $errors -gt 0 ]; then