blob: e56abe164191edf1bb92ca49d60cf0b7c8af396f [file] [log] [blame]
#!/bin/bash
# Fail on any error.
set -e
# Display commands being run.
set -x
cd git/SwiftShader
git submodule update --init
mkdir -p build && cd build
if [[ -z "${REACTOR_BACKEND}" ]]; then
REACTOR_BACKEND="LLVM"
fi
cmake .. "-DREACTOR_BACKEND=${REACTOR_BACKEND}"
make --jobs=$(nproc)
# Run the reactor unit tests.
./ReactorUnitTests
cd .. # Tests must be run from project root
# Run the OpenGL ES and Vulkan unit tests.
build/gles-unittests
if [ "${REACTOR_BACKEND}" != "Subzero" ]; then
# Currently vulkan does not work with Subzero.
build/vk-unittests
fi