tree: 349a8c681a76be9219d9c1b2d495ed07a8995ea1 [path history] [tgz]
  1. AST.FromFile.cpp
  2. BuiltInResource.FromFile.cpp
  3. CMakeLists.txt
  4. Config.FromFile.cpp
  5. HexFloat.cpp
  6. Hlsl.FromFile.cpp
  7. Initializer.h
  8. Link.FromFile.cpp
  9. Link.FromFile.Vk.cpp
  10. main.cpp
  11. pch.cpp
  12. pch.h
  13. Pp.FromFile.cpp
  14. README.md
  15. Remap.FromFile.cpp
  16. Settings.cpp
  17. Settings.h
  18. Spv.FromFile.cpp
  19. TestFixture.cpp
  20. TestFixture.h
gtests/README.md

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.