glslang/gtests
John Kessenich 41436ad204 Link/SPV: Correct symbol IDs on merging ASTs to a single coherent space
This is one step in providing full linker functionality for creating
correct SPIR-V from multiple compilation units for the same stage.
(This was the only remaining "hard" part. The rest should be simple.)
2018-07-18 18:07:41 -06:00
..
AST.FromFile.cpp Testing: Add new tests, and new ways of testing, for floating-point. 2018-05-24 18:18:22 -06:00
BuiltInResource.FromFile.cpp Gtests can be run on another source tree 2016-10-05 10:28:32 -04:00
CMakeLists.txt Update CMakeLists.txt 2017-07-04 05:59:03 -07:00
Config.FromFile.cpp Tests: specExamples.vert is used twice, it needs two different output names. 2018-02-21 18:42:10 -07:00
HexFloat.cpp Update HexFloat tests to use non-enum class enum values 2016-10-13 20:05:13 +02:00
Hlsl.FromFile.cpp HLSL: Fix #1432: Globally initialize local static variables. 2018-07-11 01:09:14 -06:00
Initializer.h Infrastructure: Make shared symbol-table cache complete, delete work around. 2016-08-09 19:15:17 -06:00
Link.FromFile.cpp Linker: Walk the call graph to report an error on missing bodies. 2016-12-08 23:22:21 -07:00
Link.FromFile.Vk.cpp Link/SPV: Correct symbol IDs on merging ASTs to a single coherent space 2018-07-18 18:07:41 -06:00
main.cpp SPV: Implement Vulkan 1.1 features and extensions. 2018-03-06 16:12:04 -07:00
Pp.FromFile.cpp PP: Rationalize return values of MacroExpand. 2018-07-02 13:47:31 -06:00
README.md Link in Google Test framework. 2016-03-31 10:31:30 -04:00
Remap.FromFile.cpp Remapper: handle embedded opcode in OpSpecConstantOp 2017-05-18 16:13:04 -06:00
Settings.cpp Gtests can be run on another source tree 2016-10-05 10:28:32 -04:00
Settings.h Gtests can be run on another source tree 2016-10-05 10:28:32 -04:00
Spv.FromFile.cpp Implement GL_EXT_shader_16bit_storage and GL_EXT_shader_8bit_storage extensions. 2018-07-03 13:51:31 -06:00
TestFixture.cpp Only print legalization warning if optimizer disabled 2018-03-29 13:17:54 -06:00
TestFixture.h Only print legalization warning if optimizer disabled 2018-03-29 13:17:54 -06: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.