• Home
Name Date Size #Lines LOC

..--

AST.FromFile.cppD12-May-20249.5 KiB315267

BuiltInResource.FromFile.cppD12-May-20242.1 KiB5817

CMakeLists.txtD12-May-20245.3 KiB122106

Common.cppD12-May-20246.2 KiB166138

Config.FromFile.cppD12-May-20244 KiB10954

GlslMapIO.FromFile.cppD12-May-202415.6 KiB356260

HexFloat.cppD12-May-202451.1 KiB1,232934

Hlsl.FromFile.cppD12-May-202424.1 KiB557469

Initializer.hD12-May-20242.1 KiB5611

Link.FromFile.Vk.cppD12-May-20245.3 KiB13479

Link.FromFile.cppD12-May-20244.6 KiB11866

Pp.FromFile.cppD12-May-20242.8 KiB7734

README.mdD12-May-20241.2 KiB2720

Remap.FromFile.cppD12-May-20245.9 KiB11965

Settings.cppD12-May-20242.2 KiB528

Settings.hD12-May-20242.1 KiB5913

Spv.FromFile.cppD12-May-202431.4 KiB863745

TestFixture.cppD12-May-20245.9 KiB181123

TestFixture.hD12-May-202431.6 KiB722529

VkRelaxed.FromFile.cppD12-May-202412.4 KiB307208

main.cppD12-May-20243 KiB8034

pch.hD12-May-20241.6 KiB404

README.md

1Glslang Tests based on the Google Test Framework
2================================================
3
4This directory contains [Google Test][gtest] based test fixture and test
5cases for glslang.
6
7Apart from typical unit tests, necessary utility methods are added into
8the [`GlslangTests`](TestFixture.h) fixture to provide the ability to do
9file-based integration tests. Various `*.FromFile.cpp` files lists names
10of files containing input shader code in the `Test/` directory. Utility
11methods will load the input shader source, compile them, and compare with
12the corresponding expected output in the `Test/baseResults/` directory.
13
14How to run the tests
15--------------------
16
17Please make sure you have a copy of [Google Test][gtest] checked out under
18the `External` directory before building. After building, just run the
19`ctest` command or the `gtests/glslangtests` binary in your build directory.
20
21The `gtests/glslangtests` binary also provides an `--update-mode` command
22line option, which, if supplied, will overwrite the golden files under
23the `Test/baseResults/` directory with real output from that invocation.
24This serves as an easy way to update golden files.
25
26[gtest]: https://github.com/google/googletest
27