Skip to content

Commit

Permalink
Update deps
Browse files Browse the repository at this point in the history
* Fix rebase again
  • Loading branch information
alan-baker committed Jan 24, 2024
1 parent d688236 commit f392482
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 10 deletions.
2 changes: 1 addition & 1 deletion DEPS
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ vars = {
'protobuf_revision': 'v21.12',

're2_revision': '264e71e88e1c8a4b5ec326e70e9cf1d476f58a58',
'spirv_headers_revision': '7b0309708da5126b89e4ce6f19835f36dc912f2f',
'spirv_headers_revision': 'ae6a8b39717523d96683bc0d20b541944e28072f',
}

deps = {
Expand Down
10 changes: 1 addition & 9 deletions test/operand_capabilities_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -66,20 +66,12 @@ struct EnumCapabilityCase {
// to emit failure cases when they occur, which helps debug tests.
inline std::ostream& operator<<(std::ostream& out, EnumCapabilityCase e) {
out << "{" << spvOperandTypeStr(e.type) << " " << e.value << " "
<< show(e.expected_capabilities) << " }";
<< e.expected_capabilities << " }";
return out;
}

using EnvEnumCapabilityCase = std::tuple<spv_target_env, EnumCapabilityCase>;

// Emits an EnvEnumCapabilityCase to the given output stream. This is used
// to emit failure cases when they occur, which helps debug tests.
inline std::ostream& operator<<(std::ostream& out, EnvEnumCapabilityCase e) {
out << "EnvEnumCapabilityTest{ " << spvLogStringForEnv(std::get<0>(e)) << " "
<< std::get<1>(e) << " }";
return out;
}

// Test fixture for testing EnumCapabilityCases.
using EnumCapabilityTest =
TestWithParam<std::tuple<spv_target_env, EnumCapabilityCase>>;
Expand Down

0 comments on commit f392482

Please sign in to comment.