Skip to content

Commit

Permalink
Remove commas for googltest test suite macro (google#561)
Browse files Browse the repository at this point in the history
  • Loading branch information
dneto0 committed Feb 6, 2019
1 parent 9e1151a commit 6099206
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion glslc/src/resource_parse_test.cc
Expand Up @@ -70,6 +70,6 @@ INSTANTIATE_TEST_SUITE_P(ParseResources, ParseResourceSettingsTest,
{"generalConstantMatrixVectorIndexing 1", true, {}, ""},
// Check an ignore case with a regular case
{"whileLoops 1 MaxLights 99", true, {{shaderc_limit_max_lights, 99}}, ""},
}), );
}));

} // anonymous namespace
6 changes: 3 additions & 3 deletions libshaderc_util/src/version_profile_test.cc
Expand Up @@ -101,7 +101,7 @@ INSTANTIATE_TEST_SUITE_P(OpenGLBlankCases, ParseVersionProfileTest,
{"460", true, 460, ENoProfile},
{"99", false, 0, EBadProfile},
{"500", false, 0, EBadProfile},
}), );
}));

INSTANTIATE_TEST_SUITE_P(OpenGLCoreCases, ParseVersionProfileTest,
ValuesIn(std::vector<ParseVersionProfileCase>{
Expand All @@ -114,7 +114,7 @@ INSTANTIATE_TEST_SUITE_P(OpenGLCoreCases, ParseVersionProfileTest,
{"440core", true, 440, ECoreProfile},
{"450core", true, 450, ECoreProfile},
{"460core", true, 460, ECoreProfile},
}), );
}));

INSTANTIATE_TEST_SUITE_P(
OpenGLCompatibilityCases, ParseVersionProfileTest,
Expand All @@ -128,6 +128,6 @@ INSTANTIATE_TEST_SUITE_P(
{"440compatibility", true, 440, ECompatibilityProfile},
{"450compatibility", true, 450, ECompatibilityProfile},
{"460compatibility", true, 460, ECompatibilityProfile},
}), );
}));

} // anonymous namespace

0 comments on commit 6099206

Please sign in to comment.