glslang/gtests
alelenv d39b8afc47
EXT_ray_tracing requires spv1.4 (#2237)
* EXT_ray_tracing requires spv1.4

* Fix typo.

* Add extension data table.

* Updated feedback #2.
2020-05-28 09:18:07 -06:00
..
AST.FromFile.cpp GLSL: Inherit memory qualifiers, both declaratively and in execution. 2019-08-22 08:54:22 -06:00
BuiltInResource.FromFile.cpp
CMakeLists.txt Merge branch 'dj2-install' 2019-11-22 06:24:38 -07:00
Config.FromFile.cpp Build: Remove extra commas in calling INSTANTIATE_TEST_SUITE_P. 2019-01-29 16:00:42 -07:00
HexFloat.cpp Build: Remove extra commas in calling INSTANTIATE_TEST_SUITE_P. 2019-01-29 16:00:42 -07:00
Hlsl.FromFile.cpp Fix missing patch decoration for TessFactor PCF arg (#2249) 2020-05-27 22:12:42 -06:00
Initializer.h
Link.FromFile.cpp fix incorrect error when multiple compilation units don't declare layouts (#2238) 2020-05-21 00:10:33 -06:00
Link.FromFile.Vk.cpp Shader interface matching rework to fix #2136 (#2156) 2020-04-02 02:03:53 -06:00
main.cpp
pch.cpp Use precompiled headers for some glslang projects 2018-10-31 15:38:08 -05:00
pch.h Use precompiled headers for some glslang projects 2018-10-31 15:38:08 -05:00
Pp.FromFile.cpp
README.md Link in Google Test framework. 2016-03-31 10:31:30 -04:00
Remap.FromFile.cpp
Settings.cpp
Settings.h
Spv.FromFile.cpp EXT_ray_tracing requires spv1.4 (#2237) 2020-05-28 09:18:07 -06:00
TestFixture.cpp Add support for GLSL_EXT_ray_tracing 2020-03-17 20:42:47 -04:00
TestFixture.h SPIR-V: Aggressively prune unreachable merge, continue target 2019-10-29 15:33:54 -04: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.