Link.FromFile.cpp 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. //
  2. // Copyright (C) 2016 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. #include <memory>
  35. #include <gtest/gtest.h>
  36. #include "TestFixture.h"
  37. namespace glslangtest {
  38. namespace {
  39. using LinkTest = GlslangTest<
  40. ::testing::TestWithParam<std::vector<std::string>>>;
  41. TEST_P(LinkTest, FromFile)
  42. {
  43. const auto& fileNames = GetParam();
  44. const size_t fileCount = fileNames.size();
  45. const EShMessages controls = DeriveOptions(Source::GLSL, Semantics::OpenGL, Target::AST);
  46. GlslangResult result;
  47. // Compile each input shader file.
  48. std::vector<std::unique_ptr<glslang::TShader>> shaders;
  49. for (size_t i = 0; i < fileCount; ++i) {
  50. std::string contents;
  51. tryLoadFile(GlobalTestSettings.testRoot + "/" + fileNames[i],
  52. "input", &contents);
  53. shaders.emplace_back(
  54. new glslang::TShader(GetShaderStage(GetSuffix(fileNames[i]))));
  55. auto* shader = shaders.back().get();
  56. compile(shader, contents, "", controls);
  57. result.shaderResults.push_back(
  58. {fileNames[i], shader->getInfoLog(), shader->getInfoDebugLog()});
  59. }
  60. // Link all of them.
  61. glslang::TProgram program;
  62. for (const auto& shader : shaders) program.addShader(shader.get());
  63. program.link(controls);
  64. result.linkingOutput = program.getInfoLog();
  65. result.linkingError = program.getInfoDebugLog();
  66. std::ostringstream stream;
  67. outputResultToStream(&stream, result, controls);
  68. // Check with expected results.
  69. const std::string expectedOutputFname =
  70. GlobalTestSettings.testRoot + "/baseResults/" + fileNames.front() + ".out";
  71. std::string expectedOutput;
  72. tryLoadFile(expectedOutputFname, "expected output", &expectedOutput);
  73. checkEqAndUpdateIfRequested(expectedOutput, stream.str(), expectedOutputFname);
  74. }
  75. // clang-format off
  76. INSTANTIATE_TEST_CASE_P(
  77. Glsl, LinkTest,
  78. ::testing::ValuesIn(std::vector<std::vector<std::string>>({
  79. {"mains1.frag", "mains2.frag", "noMain1.geom", "noMain2.geom"},
  80. {"noMain.vert", "mains.frag"},
  81. {"link1.frag", "link2.frag", "link3.frag"},
  82. {"recurse1.vert", "recurse1.frag", "recurse2.frag"},
  83. {"300link.frag"},
  84. {"300link2.frag"},
  85. {"300link3.frag"},
  86. {"empty.frag", "empty2.frag", "empty3.frag"},
  87. {"150.tesc", "150.tese", "400.tesc", "400.tese", "410.tesc", "420.tesc", "420.tese"},
  88. {"max_vertices_0.geom"},
  89. {"es-link1.frag", "es-link2.frag"},
  90. {"missingBodies.vert"}
  91. })),
  92. );
  93. // clang-format on
  94. } // anonymous namespace
  95. } // namespace glslangtest