]> git.cworth.org Git - fips/blobdiff - test/fips-test
test: Add two more tests, (now using glXGetProcAddress instead of dlsym)
[fips] / test / fips-test
index 329fc54ef1aebce3f5282f114c54c8456e088c53..7f9435288269134c554bf6abd90712efee6eb630 100755 (executable)
@@ -24,14 +24,20 @@ echo "OpenGL, different linking mechanisms, and different symbol-lookup."
 echo ""
 
 printf "               Win-sys Link-mode       Lookup\n"
-printf "               ------- -------------   ------------\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     dlopen(libGL)   dlsym                   ... "
 test glx-dlopen-dlsym
 
+printf "Testing                GLX     dlopen(libGL)   glXGetProcAddress       ... "
+test glx-dlopen-gpa
+
+printf "Testing                GLX     dlopen(libGL)   glXGetProcAddressARB    ... "
+test glx-dlopen-gpaa
+
 echo ""
 
 if [ $errors -gt 0 ]; then