bgfx/3rdparty/glslang/gtests
Branimir Karadžić 109ceef8b4 Updated glslang.
2018-11-25 20:11:25 -08:00
..
AST.FromFile.cpp Updated glslang and spirv-tools. 2018-09-02 21:14:20 -07:00
BuiltInResource.FromFile.cpp Added glslang. 2016-12-15 14:19:54 -08:00
CMakeLists.txt Updated glslang. 2018-11-10 09:13:54 -08:00
Config.FromFile.cpp Updated glslang. 2018-02-27 22:52:56 -08:00
HexFloat.cpp Added glslang. 2016-12-15 14:19:54 -08:00
Hlsl.FromFile.cpp Updated glslang. 2018-11-17 00:09:17 -08:00
Initializer.h Added glslang. 2016-12-15 14:19:54 -08:00
Link.FromFile.cpp Updated glslang. 2016-12-17 12:38:22 -08:00
Link.FromFile.Vk.cpp Updated glslang and spirv-tools. 2018-09-02 21:14:20 -07:00
main.cpp Updated glslang. 2018-03-10 15:03:31 -08:00
pch.cpp Updated glslang. 2018-11-03 10:37:27 -07:00
pch.h Updated glslang. 2018-11-03 10:37:27 -07:00
Pp.FromFile.cpp Updated glslang and spirv-tools. 2018-09-02 21:14:20 -07:00
README.md Added glslang. 2016-12-15 14:19:54 -08:00
Remap.FromFile.cpp Updated glslang. 2017-05-19 20:23:01 -07:00
Settings.cpp Added glslang. 2016-12-15 14:19:54 -08:00
Settings.h Added glslang. 2016-12-15 14:19:54 -08:00
Spv.FromFile.cpp Updated glslang. 2018-11-25 20:11:25 -08:00
TestFixture.cpp Updated glslang. 2018-09-22 10:37:00 -07:00
TestFixture.h Updated glslang and spirv-tools. 2018-09-02 21:14:20 -07:00

Glslang Tests based on the Google Test Framework

This directory contains Google Test based test fixture and test cases for glslang.

Apart from typical unit tests, necessary utility methods are added into the GlslangTests fixture to provide the ability to do file-based integration tests. Various *.FromFile.cpp files lists names of files containing input shader code in the Test/ directory. Utility methods will load the input shader source, compile them, and compare with the corresponding expected output in the Test/baseResults/ directory.

How to run the tests

Please make sure you have a copy of Google Test checked out under the External directory before building. After building, just run the ctest command or the gtests/glslangtests binary in your build directory.

The gtests/glslangtests binary also provides an --update-mode command line option, which, if supplied, will overwrite the golden files under the Test/baseResults/ directory with real output from that invocation. This serves as an easy way to update golden files.