blob: 6ce1fe9f79aca31c1b8a1474b7cb4f61b2a6c084 [file] [log] [blame]
Markus Tavenrath7b89e752017-01-23 16:53:16 -08001//
2// Copyright (C) 2016-2017 Google, Inc.
3//
4// All rights reserved.
5//
6// Redistribution and use in source and binary forms, with or without
7// modification, are permitted provided that the following conditions
8// are met:
9//
10// Redistributions of source code must retain the above copyright
11// notice, this list of conditions and the following disclaimer.
12//
13// Redistributions in binary form must reproduce the above
14// copyright notice, this list of conditions and the following
15// disclaimer in the documentation and/or other materials provided
16// with the distribution.
17//
18// Neither the name of Google Inc. nor the names of its
19// contributors may be used to endorse or promote products derived
20// from this software without specific prior written permission.
21//
22// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
25// FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
26// COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
27// INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
28// BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
29// LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
30// CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31// LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
32// ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
33// POSSIBILITY OF SUCH DAMAGE.
34
35#include <memory>
36
37#include <gtest/gtest.h>
38
39#include "TestFixture.h"
40
41namespace glslangtest {
42namespace {
43
44using LinkTestVulkan = GlslangTest<
45 ::testing::TestWithParam<std::vector<std::string>>>;
46
47TEST_P(LinkTestVulkan, FromFile)
48{
49 const auto& fileNames = GetParam();
50 const size_t fileCount = fileNames.size();
51 const EShMessages controls = DeriveOptions(Source::GLSL, Semantics::Vulkan, Target::AST);
52 GlslangResult result;
53
54 // Compile each input shader file.
55 std::vector<std::unique_ptr<glslang::TShader>> shaders;
56 for (size_t i = 0; i < fileCount; ++i) {
57 std::string contents;
58 tryLoadFile(GlobalTestSettings.testRoot + "/" + fileNames[i],
59 "input", &contents);
60 shaders.emplace_back(
61 new glslang::TShader(GetShaderStage(GetSuffix(fileNames[i]))));
62 auto* shader = shaders.back().get();
63 compile(shader, contents, "", controls);
64 result.shaderResults.push_back(
65 {fileNames[i], shader->getInfoLog(), shader->getInfoDebugLog()});
66 }
67
68 // Link all of them.
69 glslang::TProgram program;
70 for (const auto& shader : shaders) program.addShader(shader.get());
71 program.link(controls);
72 result.linkingOutput = program.getInfoLog();
73 result.linkingError = program.getInfoDebugLog();
74
75 std::ostringstream stream;
76 outputResultToStream(&stream, result, controls);
77
78 // Check with expected results.
79 const std::string expectedOutputFname =
80 GlobalTestSettings.testRoot + "/baseResults/" + fileNames.front() + ".out";
81 std::string expectedOutput;
82 tryLoadFile(expectedOutputFname, "expected output", &expectedOutput);
83
84 checkEqAndUpdateIfRequested(expectedOutput, stream.str(), expectedOutputFname);
85}
86
87// clang-format off
88INSTANTIATE_TEST_CASE_P(
89 Glsl, LinkTestVulkan,
90 ::testing::ValuesIn(std::vector<std::vector<std::string>>({
91 {"link1.vk.frag", "link2.vk.frag"},
92 })),
93);
94// clang-format on
95
96} // anonymous namespace
97} // namespace glslangtest