| 81 | === Propietary graphics drivers (NVIDIA/AMD) problems === |
| 82 | |
| 83 | For the tests we use Xvfb + LLVMPipe (software GL in a short), so we expect that libGL is provided by Mesa. However when proprietary graphics drivers are in use on the system, libGL is often provided by the driver. |
| 84 | |
| 85 | To workaround this problem you can use the environment variable LD_LIBRARY_PATH to point it to where the libGL Mesa libraries are. On a Debian GNU/Linux system this can be achieved as follows: |
| 86 | |
| 87 | {{{ |
| 88 | #!sh |
| 89 | LD_LIBRARY_PATH="/usr/lib/mesa-diverted/$(gcc -print-multiarch)" ./Tools/Scripts/run-webkit-tests --gtk [--debug] |
| 90 | }}} |
| 91 | |
| 92 | More information related to the same issue [https://lists.webkit.org/pipermail/webkit-efl/2012-November/000433.html can be found here] |