11 lines
328 B
Bash
11 lines
328 B
Bash
|
#!/usr/bin/env bash
|
||
|
set -e
|
||
|
source test_common.sh
|
||
|
build linux_gl_debug linux_gl_debug
|
||
|
build linux_gl_release linux_gl_release
|
||
|
build linux_gles3_debug linux_gles3_debug
|
||
|
build linux_gles3_release linux_gles3_release
|
||
|
build linux_gl_egl_debug linux_gl_egl_debug
|
||
|
build linux_gl_egl_release linux_gl_egl_release
|
||
|
runtest linux_gl_debug
|