[tint][glsl] Check module + options before generating
Move the `CanRun()` function from the writer fuzzer into the writer as
a helper function. This can then be used by both the fuzzer and the
Tint executable to check whether the backend can actually handle the
module+options.
This yields much more user friendly error messages from the Tint
executable when trying to generate backend code for a module that
contains features that are not supported by that backend.
Several E2E tests are now skipped as they use read-write storage
textures with unsupported formats.
Bug: 376572262
Change-Id: I305953f4f715c297e5d8bdb37c2275e7c6a80f10
Reviewed-on: https://dawn-review.googlesource.com/c/dawn/+/222134
Reviewed-by: dan sinclair <dsinclair@chromium.org>
Commit-Queue: James Price <jrprice@google.com>
diff --git a/src/tint/cmd/tint/main.cc b/src/tint/cmd/tint/main.cc
index b47b834..69a15e4 100644
--- a/src/tint/cmd/tint/main.cc
+++ b/src/tint/cmd/tint/main.cc
@@ -1223,6 +1223,13 @@
// Generate binding options.
gen_options.bindings = tint::glsl::writer::GenerateBindings(ir.Get());
+ // Check that the module and options are supported by the backend.
+ auto check = tint::glsl::writer::CanGenerate(ir.Get(), gen_options);
+ if (check != tint::Success) {
+ std::cerr << check.Failure() << "\n";
+ return false;
+ }
+
// Generate GLSL.
auto result = tint::glsl::writer::Generate(ir.Get(), gen_options, "");
if (result != tint::Success) {
diff --git a/src/tint/lang/glsl/writer/BUILD.bazel b/src/tint/lang/glsl/writer/BUILD.bazel
index 1a91748..5a01d78 100644
--- a/src/tint/lang/glsl/writer/BUILD.bazel
+++ b/src/tint/lang/glsl/writer/BUILD.bazel
@@ -48,6 +48,8 @@
"//src/tint/api/common",
"//src/tint/lang/core",
"//src/tint/lang/core/constant",
+ "//src/tint/lang/core/intrinsic",
+ "//src/tint/lang/core/ir",
"//src/tint/lang/core/type",
"//src/tint/lang/wgsl",
"//src/tint/lang/wgsl/ast",
diff --git a/src/tint/lang/glsl/writer/BUILD.cmake b/src/tint/lang/glsl/writer/BUILD.cmake
index 1a9088b..0e2d99c 100644
--- a/src/tint/lang/glsl/writer/BUILD.cmake
+++ b/src/tint/lang/glsl/writer/BUILD.cmake
@@ -54,6 +54,8 @@
tint_api_common
tint_lang_core
tint_lang_core_constant
+ tint_lang_core_intrinsic
+ tint_lang_core_ir
tint_lang_core_type
tint_lang_wgsl
tint_lang_wgsl_ast
diff --git a/src/tint/lang/glsl/writer/BUILD.gn b/src/tint/lang/glsl/writer/BUILD.gn
index 95084ac..fa5323a 100644
--- a/src/tint/lang/glsl/writer/BUILD.gn
+++ b/src/tint/lang/glsl/writer/BUILD.gn
@@ -53,6 +53,8 @@
"${tint_src_dir}/api/common",
"${tint_src_dir}/lang/core",
"${tint_src_dir}/lang/core/constant",
+ "${tint_src_dir}/lang/core/intrinsic",
+ "${tint_src_dir}/lang/core/ir",
"${tint_src_dir}/lang/core/type",
"${tint_src_dir}/lang/wgsl",
"${tint_src_dir}/lang/wgsl/ast",
diff --git a/src/tint/lang/glsl/writer/writer.cc b/src/tint/lang/glsl/writer/writer.cc
index 5a64557..eec4486 100644
--- a/src/tint/lang/glsl/writer/writer.cc
+++ b/src/tint/lang/glsl/writer/writer.cc
@@ -30,11 +30,163 @@
#include <memory>
#include <utility>
+#include "src/tint/lang/core/ir/core_builtin_call.h"
+#include "src/tint/lang/core/ir/module.h"
+#include "src/tint/lang/core/ir/var.h"
+#include "src/tint/lang/core/type/pointer.h"
+#include "src/tint/lang/core/type/storage_texture.h"
#include "src/tint/lang/glsl/writer/printer/printer.h"
#include "src/tint/lang/glsl/writer/raise/raise.h"
namespace tint::glsl::writer {
+Result<SuccessType> CanGenerate(const core::ir::Module& ir, const Options& options) {
+ // Make sure that every texture variable is in the texture_builtins_from_uniform binding list,
+ // otherwise TextureBuiltinsFromUniform will fail.
+ // Also make sure there is at most one user-declared push_constant, and make a note of its size.
+ uint32_t user_push_constant_size = 0;
+ for (auto* inst : *ir.root_block) {
+ auto* var = inst->As<core::ir::Var>();
+
+ if (!var) {
+ continue;
+ }
+ auto* ptr = var->Result(0)->Type()->As<core::type::Pointer>();
+
+ // The pixel_local extension is not supported by the GLSL backend.
+ if (ptr->AddressSpace() == core::AddressSpace::kPixelLocal) {
+ return Failure("pixel_local address space is not supported by the ");
+ }
+
+ if (ptr->StoreType()->Is<core::type::Texture>()) {
+ bool found = false;
+ auto binding_point = var->BindingPoint();
+ for (auto& bp :
+ options.bindings.texture_builtins_from_uniform.ubo_bindingpoint_ordering) {
+ if (bp == binding_point) {
+ found = true;
+ break;
+ }
+ }
+ if (!found) {
+ return Failure("texture missing from texture_builtins_from_uniform list");
+ }
+
+ // Check texel formats for read-write storage textures when targeting ES.
+ if (options.version.IsES()) {
+ if (auto* st = ptr->StoreType()->As<core::type::StorageTexture>()) {
+ if (st->Access() == core::Access::kReadWrite) {
+ switch (st->TexelFormat()) {
+ case core::TexelFormat::kR32Float:
+ case core::TexelFormat::kR32Sint:
+ case core::TexelFormat::kR32Uint:
+ break;
+ default:
+ return Failure("unsupported read-write storage texture format");
+ }
+ }
+ }
+ }
+ }
+
+ if (ptr->AddressSpace() == core::AddressSpace::kPushConstant) {
+ if (user_push_constant_size > 0) {
+ // We've already seen a user-declared push constant.
+ return Failure("multiple user-declared push constants");
+ }
+ user_push_constant_size = tint::RoundUp(4u, ptr->StoreType()->Size());
+ }
+ }
+
+ // Check for calls to unsupported builtin functions.
+ for (auto* inst : ir.Instructions()) {
+ auto* call = inst->As<core::ir::CoreBuiltinCall>();
+ if (!call) {
+ continue;
+ }
+
+ if (core::IsSubgroup(call->Func())) {
+ return Failure("subgroups are not supported by the GLSL backend");
+ }
+ if (call->Func() == core::BuiltinFn::kInputAttachmentLoad) {
+ return Failure("input attachments are not supported by the GLSL backend");
+ }
+ }
+
+ // Check for unsupported shader IO builtins.
+ for (auto& func : ir.functions) {
+ if (!func->IsEntryPoint()) {
+ continue;
+ }
+
+ // subgroup builtins are not supported.
+ for (auto* param : func->Params()) {
+ if (auto* str = param->Type()->As<core::type::Struct>()) {
+ for (auto* member : str->Members()) {
+ if (member->Attributes().builtin == core::BuiltinValue::kSubgroupInvocationId ||
+ member->Attributes().builtin == core::BuiltinValue::kSubgroupSize) {
+ return Failure("subgroups are not supported by the GLSL backend");
+ }
+ }
+ } else {
+ if (param->Builtin() == core::BuiltinValue::kSubgroupInvocationId ||
+ param->Builtin() == core::BuiltinValue::kSubgroupSize) {
+ return Failure("subgroups are not supported by the GLSL backend");
+ }
+ }
+ }
+
+ // clip_distance is not supported.
+ if (auto* str = func->ReturnType()->As<core::type::Struct>()) {
+ for (auto* member : str->Members()) {
+ if (member->Attributes().builtin == core::BuiltinValue::kClipDistances) {
+ return Failure("clip_distances is not supported by the GLSL backend");
+ }
+ }
+ }
+ }
+
+ static constexpr uint32_t kMaxOffset = 0x1000;
+ Hashset<uint32_t, 4> push_constant_word_offsets;
+ auto check_push_constant_offset = [&](uint32_t offset) {
+ // Excessive values can cause OOM / timeouts when padding structures in the printer.
+ if (offset > kMaxOffset) {
+ return false;
+ }
+ // Offset must be 4-byte aligned.
+ if (offset & 0x3) {
+ return false;
+ }
+ // Offset must not have already been used.
+ if (!push_constant_word_offsets.Add(offset >> 2)) {
+ return false;
+ }
+ // Offset must be after the user-defined push constants.
+ if (offset < user_push_constant_size) {
+ return false;
+ }
+ return true;
+ };
+
+ if (options.first_instance_offset &&
+ !check_push_constant_offset(*options.first_instance_offset)) {
+ return Failure("invalid offset for first_instance_offset push constant");
+ }
+
+ if (options.first_vertex_offset && !check_push_constant_offset(*options.first_vertex_offset)) {
+ return Failure("invalid offset for first_vertex_offset push constant");
+ }
+
+ if (options.depth_range_offsets) {
+ if (!check_push_constant_offset(options.depth_range_offsets->max) ||
+ !check_push_constant_offset(options.depth_range_offsets->min)) {
+ return Failure("invalid offsets for depth range push constants");
+ }
+ }
+
+ return Success;
+}
+
Result<Output> Generate(core::ir::Module& ir, const Options& options, const std::string&) {
// Raise from core-dialect to GLSL-dialect.
if (auto res = Raise(ir, options); res != Success) {
diff --git a/src/tint/lang/glsl/writer/writer.h b/src/tint/lang/glsl/writer/writer.h
index f904642..73b298a 100644
--- a/src/tint/lang/glsl/writer/writer.h
+++ b/src/tint/lang/glsl/writer/writer.h
@@ -45,6 +45,12 @@
namespace tint::glsl::writer {
+/// Check if the module @p ir is supported by the GLSL backend with @p options.
+/// @param ir the module
+/// @param options the writer options
+/// @returns Success or a failure message indicating why GLSL generation would fail
+Result<SuccessType> CanGenerate(const core::ir::Module& ir, const Options& options);
+
/// Generate GLSL for a program, according to a set of configuration options.
/// The result will contain the GLSL and supplementary information, or failure.
/// information.
diff --git a/src/tint/lang/glsl/writer/writer_fuzz.cc b/src/tint/lang/glsl/writer/writer_fuzz.cc
index 1c19f27..88e04a1 100644
--- a/src/tint/lang/glsl/writer/writer_fuzz.cc
+++ b/src/tint/lang/glsl/writer/writer_fuzz.cc
@@ -105,151 +105,6 @@
return options;
}
-bool CanRun(const core::ir::Module& module, Options& options) {
- // Make sure that every texture variable is in the texture_builtins_from_uniform binding list,
- // otherwise TextureBuiltinsFromUniform will fail.
- // Also make sure there is at most one user-declared push_constant, and make a note of its size.
- uint32_t user_push_constant_size = 0;
- for (auto* inst : *module.root_block) {
- auto* var = inst->As<core::ir::Var>();
-
- if (!var) {
- continue;
- }
- auto* ptr = var->Result(0)->Type()->As<core::type::Pointer>();
-
- // The pixel_local extension is not supported by the GLSL backend.
- if (ptr->AddressSpace() == core::AddressSpace::kPixelLocal) {
- return false;
- }
-
- if (ptr->StoreType()->Is<core::type::Texture>()) {
- bool found = false;
- auto binding_point = var->BindingPoint();
- for (auto& bp :
- options.bindings.texture_builtins_from_uniform.ubo_bindingpoint_ordering) {
- if (bp == binding_point) {
- found = true;
- break;
- }
- }
- if (!found) {
- return false;
- }
-
- // Check texel formats for read-write storage textures.
- if (auto* st = ptr->StoreType()->As<core::type::StorageTexture>()) {
- if (st->Access() == core::Access::kReadWrite) {
- switch (st->TexelFormat()) {
- case core::TexelFormat::kR32Float:
- case core::TexelFormat::kR32Sint:
- case core::TexelFormat::kR32Uint:
- break;
- default:
- return false;
- }
- }
- }
- }
-
- if (ptr->AddressSpace() == core::AddressSpace::kPushConstant) {
- if (user_push_constant_size > 0) {
- // We've already seen a user-declared push constant.
- return false;
- }
- user_push_constant_size = tint::RoundUp(4u, ptr->StoreType()->Size());
- }
- }
-
- // Check for calls to unsupported builtin functions.
- for (auto* inst : module.Instructions()) {
- auto* call = inst->As<core::ir::CoreBuiltinCall>();
- if (!call) {
- continue;
- }
-
- if (core::IsSubgroup(call->Func())) {
- return false;
- }
- if (call->Func() == core::BuiltinFn::kInputAttachmentLoad) {
- return false;
- }
- }
-
- // Check for unsupported shader IO builtins.
- for (auto& func : module.functions) {
- if (!func->IsEntryPoint()) {
- continue;
- }
-
- // subgroup builtins are not supported.
- for (auto* param : func->Params()) {
- if (auto* str = param->Type()->As<core::type::Struct>()) {
- for (auto* member : str->Members()) {
- if (member->Attributes().builtin == core::BuiltinValue::kSubgroupInvocationId ||
- member->Attributes().builtin == core::BuiltinValue::kSubgroupSize) {
- return false;
- }
- }
- } else {
- if (param->Builtin() == core::BuiltinValue::kSubgroupInvocationId ||
- param->Builtin() == core::BuiltinValue::kSubgroupSize) {
- return false;
- }
- }
- }
-
- // clip_distance is not supported.
- if (auto* str = func->ReturnType()->As<core::type::Struct>()) {
- for (auto* member : str->Members()) {
- if (member->Attributes().builtin == core::BuiltinValue::kClipDistances) {
- return false;
- }
- }
- }
- }
-
- static constexpr uint32_t kMaxOffset = 0x1000;
- Hashset<uint32_t, 4> push_constant_word_offsets;
- auto check_push_constant_offset = [&](uint32_t offset) {
- // Excessive values can cause OOM / timeouts when padding structures in the printer.
- if (offset > kMaxOffset) {
- return false;
- }
- // Offset must be 4-byte aligned.
- if (offset & 0x3) {
- return false;
- }
- // Offset must not have already been used.
- if (!push_constant_word_offsets.Add(offset >> 2)) {
- return false;
- }
- // Offset must be after the user-defined push constants.
- if (offset < user_push_constant_size) {
- return false;
- }
- return true;
- };
-
- if (options.first_instance_offset &&
- !check_push_constant_offset(*options.first_instance_offset)) {
- return false;
- }
-
- if (options.first_vertex_offset && !check_push_constant_offset(*options.first_vertex_offset)) {
- return false;
- }
-
- if (options.depth_range_offsets) {
- if (!check_push_constant_offset(options.depth_range_offsets->max) ||
- !check_push_constant_offset(options.depth_range_offsets->min)) {
- return false;
- }
- }
-
- return true;
-}
-
Result<SuccessType> IRFuzzer(core::ir::Module& module, const fuzz::ir::Context& context) {
// TODO(375388101): We cannot run the backend for every entry point in the module unless we
// clone the whole module each time, so for now we just generate the first entry point.
@@ -269,8 +124,10 @@
// TODO(377391551): Enable fuzzing of options.
auto options = GenerateOptions(module);
- if (!CanRun(module, options)) {
- return Failure{"Cannot run module"};
+
+ auto check = CanGenerate(module, options);
+ if (check != Success) {
+ return check.Failure();
}
auto output = Generate(module, options, "");
diff --git a/test/tint/builtins/compute_subgroup_inclusive.wgsl.expected.glsl b/test/tint/builtins/compute_subgroup_inclusive.wgsl.expected.glsl
index 61225ce..fc05dcf 100644
--- a/test/tint/builtins/compute_subgroup_inclusive.wgsl.expected.glsl
+++ b/test/tint/builtins/compute_subgroup_inclusive.wgsl.expected.glsl
@@ -1,11 +1,5 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/inputAttachmentLoad/315bf5.wgsl.expected.glsl b/test/tint/builtins/gen/literal/inputAttachmentLoad/315bf5.wgsl.expected.glsl
index dd8dbc2..4bf7134 100644
--- a/test/tint/builtins/gen/literal/inputAttachmentLoad/315bf5.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/inputAttachmentLoad/315bf5.wgsl.expected.glsl
@@ -1,11 +1,5 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/raise/texture_polyfill.cc:262 internal compiler error: TINT_UNREACHABLE unhandled texture function: inputAttachmentLoad
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+error: input attachments are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/inputAttachmentLoad/c38b2f.wgsl.expected.glsl b/test/tint/builtins/gen/literal/inputAttachmentLoad/c38b2f.wgsl.expected.glsl
index dd8dbc2..4bf7134 100644
--- a/test/tint/builtins/gen/literal/inputAttachmentLoad/c38b2f.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/inputAttachmentLoad/c38b2f.wgsl.expected.glsl
@@ -1,11 +1,5 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/raise/texture_polyfill.cc:262 internal compiler error: TINT_UNREACHABLE unhandled texture function: inputAttachmentLoad
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+error: input attachments are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/inputAttachmentLoad/fc4d97.wgsl.expected.glsl b/test/tint/builtins/gen/literal/inputAttachmentLoad/fc4d97.wgsl.expected.glsl
index dd8dbc2..4bf7134 100644
--- a/test/tint/builtins/gen/literal/inputAttachmentLoad/fc4d97.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/inputAttachmentLoad/fc4d97.wgsl.expected.glsl
@@ -1,11 +1,5 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/raise/texture_polyfill.cc:262 internal compiler error: TINT_UNREACHABLE unhandled texture function: inputAttachmentLoad
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+error: input attachments are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadBroadcast/0464d1.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadBroadcast/0464d1.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadBroadcast/0464d1.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadBroadcast/0464d1.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadBroadcast/0639ea.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadBroadcast/0639ea.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadBroadcast/0639ea.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadBroadcast/0639ea.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadBroadcast/0cc513.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadBroadcast/0cc513.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadBroadcast/0cc513.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadBroadcast/0cc513.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadBroadcast/0e0e6e.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadBroadcast/0e0e6e.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadBroadcast/0e0e6e.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadBroadcast/0e0e6e.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadBroadcast/2d0b7d.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadBroadcast/2d0b7d.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadBroadcast/2d0b7d.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadBroadcast/2d0b7d.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadBroadcast/355db5.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadBroadcast/355db5.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadBroadcast/355db5.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadBroadcast/355db5.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadBroadcast/3c3824.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadBroadcast/3c3824.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadBroadcast/3c3824.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadBroadcast/3c3824.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadBroadcast/4d9898.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadBroadcast/4d9898.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadBroadcast/4d9898.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadBroadcast/4d9898.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadBroadcast/641316.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadBroadcast/641316.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadBroadcast/641316.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadBroadcast/641316.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadBroadcast/704803.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadBroadcast/704803.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadBroadcast/704803.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadBroadcast/704803.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadBroadcast/76f499.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadBroadcast/76f499.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadBroadcast/76f499.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadBroadcast/76f499.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadBroadcast/78129b.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadBroadcast/78129b.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadBroadcast/78129b.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadBroadcast/78129b.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadBroadcast/796753.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadBroadcast/796753.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadBroadcast/796753.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadBroadcast/796753.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadBroadcast/820991.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadBroadcast/820991.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadBroadcast/820991.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadBroadcast/820991.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadBroadcast/960c6b.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadBroadcast/960c6b.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadBroadcast/960c6b.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadBroadcast/960c6b.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadBroadcast/9d802c.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadBroadcast/9d802c.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadBroadcast/9d802c.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadBroadcast/9d802c.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadBroadcast/a2d2b4.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadBroadcast/a2d2b4.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadBroadcast/a2d2b4.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadBroadcast/a2d2b4.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadBroadcast/ae401e.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadBroadcast/ae401e.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadBroadcast/ae401e.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadBroadcast/ae401e.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadBroadcast/b68331.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadBroadcast/b68331.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadBroadcast/b68331.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadBroadcast/b68331.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadBroadcast/bed00b.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadBroadcast/bed00b.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadBroadcast/bed00b.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadBroadcast/bed00b.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadBroadcast/c0e704.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadBroadcast/c0e704.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadBroadcast/c0e704.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadBroadcast/c0e704.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadBroadcast/cd3624.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadBroadcast/cd3624.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadBroadcast/cd3624.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadBroadcast/cd3624.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadBroadcast/cebc6a.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadBroadcast/cebc6a.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadBroadcast/cebc6a.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadBroadcast/cebc6a.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadBroadcast/cfbf48.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadBroadcast/cfbf48.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadBroadcast/cfbf48.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadBroadcast/cfbf48.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadBroadcast/e6d39d.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadBroadcast/e6d39d.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadBroadcast/e6d39d.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadBroadcast/e6d39d.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadBroadcast/e6d948.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadBroadcast/e6d948.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadBroadcast/e6d948.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadBroadcast/e6d948.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadBroadcast/e7c301.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadBroadcast/e7c301.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadBroadcast/e7c301.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadBroadcast/e7c301.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadBroadcast/ef7d5d.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadBroadcast/ef7d5d.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadBroadcast/ef7d5d.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadBroadcast/ef7d5d.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadBroadcast/f1e8ec.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadBroadcast/f1e8ec.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadBroadcast/f1e8ec.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadBroadcast/f1e8ec.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadBroadcast/f5f923.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadBroadcast/f5f923.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadBroadcast/f5f923.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadBroadcast/f5f923.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadBroadcast/f60448.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadBroadcast/f60448.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadBroadcast/f60448.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadBroadcast/f60448.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadBroadcast/f9d579.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadBroadcast/f9d579.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadBroadcast/f9d579.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadBroadcast/f9d579.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadSwapDiagonal/15ac75.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadSwapDiagonal/15ac75.wgsl.expected.glsl
index 43f77fb..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadSwapDiagonal/15ac75.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadSwapDiagonal/15ac75.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapDiagonal
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadSwapDiagonal/2be5e7.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadSwapDiagonal/2be5e7.wgsl.expected.glsl
index 43f77fb..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadSwapDiagonal/2be5e7.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadSwapDiagonal/2be5e7.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapDiagonal
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadSwapDiagonal/331804.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadSwapDiagonal/331804.wgsl.expected.glsl
index 43f77fb..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadSwapDiagonal/331804.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadSwapDiagonal/331804.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapDiagonal
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadSwapDiagonal/348173.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadSwapDiagonal/348173.wgsl.expected.glsl
index 43f77fb..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadSwapDiagonal/348173.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadSwapDiagonal/348173.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapDiagonal
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadSwapDiagonal/486196.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadSwapDiagonal/486196.wgsl.expected.glsl
index 43f77fb..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadSwapDiagonal/486196.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadSwapDiagonal/486196.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapDiagonal
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadSwapDiagonal/730e40.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadSwapDiagonal/730e40.wgsl.expected.glsl
index 43f77fb..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadSwapDiagonal/730e40.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadSwapDiagonal/730e40.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapDiagonal
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadSwapDiagonal/8077c8.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadSwapDiagonal/8077c8.wgsl.expected.glsl
index 43f77fb..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadSwapDiagonal/8077c8.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadSwapDiagonal/8077c8.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapDiagonal
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadSwapDiagonal/856536.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadSwapDiagonal/856536.wgsl.expected.glsl
index 43f77fb..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadSwapDiagonal/856536.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadSwapDiagonal/856536.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapDiagonal
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadSwapDiagonal/9ccb38.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadSwapDiagonal/9ccb38.wgsl.expected.glsl
index 43f77fb..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadSwapDiagonal/9ccb38.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadSwapDiagonal/9ccb38.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapDiagonal
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadSwapDiagonal/a090b0.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadSwapDiagonal/a090b0.wgsl.expected.glsl
index 43f77fb..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadSwapDiagonal/a090b0.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadSwapDiagonal/a090b0.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapDiagonal
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadSwapDiagonal/a665b1.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadSwapDiagonal/a665b1.wgsl.expected.glsl
index 43f77fb..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadSwapDiagonal/a665b1.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadSwapDiagonal/a665b1.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapDiagonal
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadSwapDiagonal/a82e1d.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadSwapDiagonal/a82e1d.wgsl.expected.glsl
index 43f77fb..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadSwapDiagonal/a82e1d.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadSwapDiagonal/a82e1d.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapDiagonal
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadSwapDiagonal/af19a5.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadSwapDiagonal/af19a5.wgsl.expected.glsl
index 43f77fb..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadSwapDiagonal/af19a5.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadSwapDiagonal/af19a5.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapDiagonal
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadSwapDiagonal/b905fc.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadSwapDiagonal/b905fc.wgsl.expected.glsl
index 43f77fb..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadSwapDiagonal/b905fc.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadSwapDiagonal/b905fc.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapDiagonal
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadSwapDiagonal/c31636.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadSwapDiagonal/c31636.wgsl.expected.glsl
index 43f77fb..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadSwapDiagonal/c31636.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadSwapDiagonal/c31636.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapDiagonal
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadSwapDiagonal/e4bec8.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadSwapDiagonal/e4bec8.wgsl.expected.glsl
index 43f77fb..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadSwapDiagonal/e4bec8.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadSwapDiagonal/e4bec8.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapDiagonal
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadSwapX/02834c.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadSwapX/02834c.wgsl.expected.glsl
index 2203d7f..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadSwapX/02834c.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadSwapX/02834c.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapX
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadSwapX/053f3b.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadSwapX/053f3b.wgsl.expected.glsl
index 2203d7f..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadSwapX/053f3b.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadSwapX/053f3b.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapX
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadSwapX/07f1fc.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadSwapX/07f1fc.wgsl.expected.glsl
index 2203d7f..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadSwapX/07f1fc.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadSwapX/07f1fc.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapX
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadSwapX/150d6f.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadSwapX/150d6f.wgsl.expected.glsl
index 2203d7f..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadSwapX/150d6f.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadSwapX/150d6f.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapX
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadSwapX/19f8ce.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadSwapX/19f8ce.wgsl.expected.glsl
index 2203d7f..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadSwapX/19f8ce.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadSwapX/19f8ce.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapX
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadSwapX/1e1086.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadSwapX/1e1086.wgsl.expected.glsl
index 2203d7f..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadSwapX/1e1086.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadSwapX/1e1086.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapX
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadSwapX/69af6a.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadSwapX/69af6a.wgsl.expected.glsl
index 2203d7f..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadSwapX/69af6a.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadSwapX/69af6a.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapX
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadSwapX/8203ad.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadSwapX/8203ad.wgsl.expected.glsl
index 2203d7f..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadSwapX/8203ad.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadSwapX/8203ad.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapX
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadSwapX/879738.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadSwapX/879738.wgsl.expected.glsl
index 2203d7f..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadSwapX/879738.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadSwapX/879738.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapX
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadSwapX/9bea80.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadSwapX/9bea80.wgsl.expected.glsl
index 2203d7f..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadSwapX/9bea80.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadSwapX/9bea80.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapX
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadSwapX/a4e103.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadSwapX/a4e103.wgsl.expected.glsl
index 2203d7f..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadSwapX/a4e103.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadSwapX/a4e103.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapX
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadSwapX/b1a5fe.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadSwapX/b1a5fe.wgsl.expected.glsl
index 2203d7f..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadSwapX/b1a5fe.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadSwapX/b1a5fe.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapX
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadSwapX/bc2013.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadSwapX/bc2013.wgsl.expected.glsl
index 2203d7f..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadSwapX/bc2013.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadSwapX/bc2013.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapX
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadSwapX/bddb9f.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadSwapX/bddb9f.wgsl.expected.glsl
index 2203d7f..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadSwapX/bddb9f.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadSwapX/bddb9f.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapX
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadSwapX/d60cec.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadSwapX/d60cec.wgsl.expected.glsl
index 2203d7f..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadSwapX/d60cec.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadSwapX/d60cec.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapX
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadSwapX/edfa1f.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadSwapX/edfa1f.wgsl.expected.glsl
index 2203d7f..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadSwapX/edfa1f.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadSwapX/edfa1f.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapX
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadSwapY/06a67c.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadSwapY/06a67c.wgsl.expected.glsl
index e9be819..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadSwapY/06a67c.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadSwapY/06a67c.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapY
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadSwapY/0c4938.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadSwapY/0c4938.wgsl.expected.glsl
index e9be819..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadSwapY/0c4938.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadSwapY/0c4938.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapY
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadSwapY/0d05a8.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadSwapY/0d05a8.wgsl.expected.glsl
index e9be819..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadSwapY/0d05a8.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadSwapY/0d05a8.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapY
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadSwapY/14bb9a.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadSwapY/14bb9a.wgsl.expected.glsl
index e9be819..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadSwapY/14bb9a.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadSwapY/14bb9a.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapY
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadSwapY/1f1a06.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadSwapY/1f1a06.wgsl.expected.glsl
index e9be819..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadSwapY/1f1a06.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadSwapY/1f1a06.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapY
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadSwapY/264908.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadSwapY/264908.wgsl.expected.glsl
index e9be819..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadSwapY/264908.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadSwapY/264908.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapY
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadSwapY/5b2e67.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadSwapY/5b2e67.wgsl.expected.glsl
index e9be819..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadSwapY/5b2e67.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadSwapY/5b2e67.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapY
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadSwapY/6f6bc9.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadSwapY/6f6bc9.wgsl.expected.glsl
index e9be819..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadSwapY/6f6bc9.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadSwapY/6f6bc9.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapY
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadSwapY/9277e9.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadSwapY/9277e9.wgsl.expected.glsl
index e9be819..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadSwapY/9277e9.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadSwapY/9277e9.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapY
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadSwapY/94ab6d.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadSwapY/94ab6d.wgsl.expected.glsl
index e9be819..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadSwapY/94ab6d.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadSwapY/94ab6d.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapY
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadSwapY/a27e1c.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadSwapY/a27e1c.wgsl.expected.glsl
index e9be819..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadSwapY/a27e1c.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadSwapY/a27e1c.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapY
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadSwapY/a50fcb.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadSwapY/a50fcb.wgsl.expected.glsl
index e9be819..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadSwapY/a50fcb.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadSwapY/a50fcb.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapY
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadSwapY/b9d9e7.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadSwapY/b9d9e7.wgsl.expected.glsl
index e9be819..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadSwapY/b9d9e7.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadSwapY/b9d9e7.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapY
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadSwapY/bb697b.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadSwapY/bb697b.wgsl.expected.glsl
index e9be819..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadSwapY/bb697b.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadSwapY/bb697b.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapY
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadSwapY/be4e72.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadSwapY/be4e72.wgsl.expected.glsl
index e9be819..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadSwapY/be4e72.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadSwapY/be4e72.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapY
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/quadSwapY/d1ab4d.wgsl.expected.glsl b/test/tint/builtins/gen/literal/quadSwapY/d1ab4d.wgsl.expected.glsl
index e9be819..21f1759 100644
--- a/test/tint/builtins/gen/literal/quadSwapY/d1ab4d.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/quadSwapY/d1ab4d.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapY
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupAdd/0dd12a.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupAdd/0dd12a.wgsl.expected.glsl
index 276d51e..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupAdd/0dd12a.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupAdd/0dd12a.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupAdd/1280c8.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupAdd/1280c8.wgsl.expected.glsl
index 276d51e..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupAdd/1280c8.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupAdd/1280c8.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupAdd/1eb429.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupAdd/1eb429.wgsl.expected.glsl
index 276d51e..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupAdd/1eb429.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupAdd/1eb429.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupAdd/225207.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupAdd/225207.wgsl.expected.glsl
index 276d51e..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupAdd/225207.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupAdd/225207.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupAdd/22d041.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupAdd/22d041.wgsl.expected.glsl
index 276d51e..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupAdd/22d041.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupAdd/22d041.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupAdd/28db2c.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupAdd/28db2c.wgsl.expected.glsl
index 276d51e..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupAdd/28db2c.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupAdd/28db2c.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupAdd/2ab40a.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupAdd/2ab40a.wgsl.expected.glsl
index 276d51e..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupAdd/2ab40a.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupAdd/2ab40a.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupAdd/3854ae.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupAdd/3854ae.wgsl.expected.glsl
index 276d51e..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupAdd/3854ae.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupAdd/3854ae.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupAdd/6587ff.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupAdd/6587ff.wgsl.expected.glsl
index 276d51e..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupAdd/6587ff.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupAdd/6587ff.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupAdd/7d1215.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupAdd/7d1215.wgsl.expected.glsl
index 276d51e..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupAdd/7d1215.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupAdd/7d1215.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupAdd/8f4c15.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupAdd/8f4c15.wgsl.expected.glsl
index 276d51e..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupAdd/8f4c15.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupAdd/8f4c15.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupAdd/b61df7.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupAdd/b61df7.wgsl.expected.glsl
index 276d51e..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupAdd/b61df7.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupAdd/b61df7.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupAdd/ba53f9.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupAdd/ba53f9.wgsl.expected.glsl
index 276d51e..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupAdd/ba53f9.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupAdd/ba53f9.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupAdd/cae1ed.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupAdd/cae1ed.wgsl.expected.glsl
index 276d51e..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupAdd/cae1ed.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupAdd/cae1ed.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupAdd/dcf73f.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupAdd/dcf73f.wgsl.expected.glsl
index 276d51e..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupAdd/dcf73f.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupAdd/dcf73f.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupAdd/fbc357.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupAdd/fbc357.wgsl.expected.glsl
index 276d51e..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupAdd/fbc357.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupAdd/fbc357.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupAll/c962bd.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupAll/c962bd.wgsl.expected.glsl
index 9f4f1ce..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupAll/c962bd.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupAll/c962bd.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupAll
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupAnd/1877b3.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupAnd/1877b3.wgsl.expected.glsl
index 5a3ec60..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupAnd/1877b3.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupAnd/1877b3.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupAnd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupAnd/376802.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupAnd/376802.wgsl.expected.glsl
index 5a3ec60..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupAnd/376802.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupAnd/376802.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupAnd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupAnd/4adc72.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupAnd/4adc72.wgsl.expected.glsl
index 5a3ec60..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupAnd/4adc72.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupAnd/4adc72.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupAnd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupAnd/4df632.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupAnd/4df632.wgsl.expected.glsl
index 5a3ec60..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupAnd/4df632.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupAnd/4df632.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupAnd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupAnd/97655b.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupAnd/97655b.wgsl.expected.glsl
index 5a3ec60..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupAnd/97655b.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupAnd/97655b.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupAnd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupAnd/ad0cd3.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupAnd/ad0cd3.wgsl.expected.glsl
index 5a3ec60..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupAnd/ad0cd3.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupAnd/ad0cd3.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupAnd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupAnd/c6fc92.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupAnd/c6fc92.wgsl.expected.glsl
index 5a3ec60..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupAnd/c6fc92.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupAnd/c6fc92.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupAnd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupAnd/d2c9a6.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupAnd/d2c9a6.wgsl.expected.glsl
index 5a3ec60..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupAnd/d2c9a6.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupAnd/d2c9a6.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupAnd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupAny/cddda0.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupAny/cddda0.wgsl.expected.glsl
index ad72778..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupAny/cddda0.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupAny/cddda0.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupAny
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupBallot/1a8251.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupBallot/1a8251.wgsl.expected.glsl
index a63dd5d..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupBallot/1a8251.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupBallot/1a8251.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBallot
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupBroadcast/02f329.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupBroadcast/02f329.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupBroadcast/02f329.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupBroadcast/02f329.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupBroadcast/07e2d8.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupBroadcast/07e2d8.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupBroadcast/07e2d8.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupBroadcast/07e2d8.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupBroadcast/08beca.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupBroadcast/08beca.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupBroadcast/08beca.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupBroadcast/08beca.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupBroadcast/0f44e2.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupBroadcast/0f44e2.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupBroadcast/0f44e2.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupBroadcast/0f44e2.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupBroadcast/13f36c.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupBroadcast/13f36c.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupBroadcast/13f36c.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupBroadcast/13f36c.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupBroadcast/1d79c7.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupBroadcast/1d79c7.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupBroadcast/1d79c7.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupBroadcast/1d79c7.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupBroadcast/279027.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupBroadcast/279027.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupBroadcast/279027.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupBroadcast/279027.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupBroadcast/2b59c9.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupBroadcast/2b59c9.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupBroadcast/2b59c9.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupBroadcast/2b59c9.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupBroadcast/34ae44.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupBroadcast/34ae44.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupBroadcast/34ae44.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupBroadcast/34ae44.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupBroadcast/34fa3d.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupBroadcast/34fa3d.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupBroadcast/34fa3d.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupBroadcast/34fa3d.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupBroadcast/3e6879.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupBroadcast/3e6879.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupBroadcast/3e6879.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupBroadcast/3e6879.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupBroadcast/41e5d7.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupBroadcast/41e5d7.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupBroadcast/41e5d7.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupBroadcast/41e5d7.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupBroadcast/49de94.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupBroadcast/49de94.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupBroadcast/49de94.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupBroadcast/49de94.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupBroadcast/4a4334.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupBroadcast/4a4334.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupBroadcast/4a4334.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupBroadcast/4a4334.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupBroadcast/5196c8.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupBroadcast/5196c8.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupBroadcast/5196c8.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupBroadcast/5196c8.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupBroadcast/6290a2.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupBroadcast/6290a2.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupBroadcast/6290a2.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupBroadcast/6290a2.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupBroadcast/719ad6.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupBroadcast/719ad6.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupBroadcast/719ad6.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupBroadcast/719ad6.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupBroadcast/727609.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupBroadcast/727609.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupBroadcast/727609.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupBroadcast/727609.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupBroadcast/838c78.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupBroadcast/838c78.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupBroadcast/838c78.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupBroadcast/838c78.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupBroadcast/867093.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupBroadcast/867093.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupBroadcast/867093.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupBroadcast/867093.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupBroadcast/8855b2.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupBroadcast/8855b2.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupBroadcast/8855b2.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupBroadcast/8855b2.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupBroadcast/912ff5.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupBroadcast/912ff5.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupBroadcast/912ff5.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupBroadcast/912ff5.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupBroadcast/9ccdca.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupBroadcast/9ccdca.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupBroadcast/9ccdca.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupBroadcast/9ccdca.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupBroadcast/a279d7.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupBroadcast/a279d7.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupBroadcast/a279d7.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupBroadcast/a279d7.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupBroadcast/a3b3e5.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupBroadcast/a3b3e5.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupBroadcast/a3b3e5.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupBroadcast/a3b3e5.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupBroadcast/b7e93b.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupBroadcast/b7e93b.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupBroadcast/b7e93b.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupBroadcast/b7e93b.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupBroadcast/c36fe1.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupBroadcast/c36fe1.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupBroadcast/c36fe1.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupBroadcast/c36fe1.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupBroadcast/cd7aa1.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupBroadcast/cd7aa1.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupBroadcast/cd7aa1.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupBroadcast/cd7aa1.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupBroadcast/e275c8.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupBroadcast/e275c8.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupBroadcast/e275c8.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupBroadcast/e275c8.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupBroadcast/e4dd1a.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupBroadcast/e4dd1a.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupBroadcast/e4dd1a.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupBroadcast/e4dd1a.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupBroadcast/f637f9.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupBroadcast/f637f9.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupBroadcast/f637f9.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupBroadcast/f637f9.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupBroadcast/fa6810.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupBroadcast/fa6810.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupBroadcast/fa6810.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupBroadcast/fa6810.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupBroadcastFirst/0538e1.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupBroadcastFirst/0538e1.wgsl.expected.glsl
index d86f60f..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupBroadcastFirst/0538e1.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupBroadcastFirst/0538e1.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcastFirst
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupBroadcastFirst/0e58ec.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupBroadcastFirst/0e58ec.wgsl.expected.glsl
index d86f60f..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupBroadcastFirst/0e58ec.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupBroadcastFirst/0e58ec.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcastFirst
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupBroadcastFirst/151e52.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupBroadcastFirst/151e52.wgsl.expected.glsl
index d86f60f..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupBroadcastFirst/151e52.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupBroadcastFirst/151e52.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcastFirst
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupBroadcastFirst/1d9530.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupBroadcastFirst/1d9530.wgsl.expected.glsl
index d86f60f..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupBroadcastFirst/1d9530.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupBroadcastFirst/1d9530.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcastFirst
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupBroadcastFirst/5c6962.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupBroadcastFirst/5c6962.wgsl.expected.glsl
index d86f60f..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupBroadcastFirst/5c6962.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupBroadcastFirst/5c6962.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcastFirst
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupBroadcastFirst/5e5b6f.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupBroadcastFirst/5e5b6f.wgsl.expected.glsl
index d86f60f..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupBroadcastFirst/5e5b6f.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupBroadcastFirst/5e5b6f.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcastFirst
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupBroadcastFirst/612d6f.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupBroadcastFirst/612d6f.wgsl.expected.glsl
index d86f60f..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupBroadcastFirst/612d6f.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupBroadcastFirst/612d6f.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcastFirst
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupBroadcastFirst/61f177.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupBroadcastFirst/61f177.wgsl.expected.glsl
index d86f60f..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupBroadcastFirst/61f177.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupBroadcastFirst/61f177.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcastFirst
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupBroadcastFirst/6945f6.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupBroadcastFirst/6945f6.wgsl.expected.glsl
index d86f60f..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupBroadcastFirst/6945f6.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupBroadcastFirst/6945f6.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcastFirst
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupBroadcastFirst/705aad.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupBroadcastFirst/705aad.wgsl.expected.glsl
index d86f60f..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupBroadcastFirst/705aad.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupBroadcastFirst/705aad.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcastFirst
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupBroadcastFirst/85b351.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupBroadcastFirst/85b351.wgsl.expected.glsl
index d86f60f..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupBroadcastFirst/85b351.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupBroadcastFirst/85b351.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcastFirst
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupBroadcastFirst/8ae580.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupBroadcastFirst/8ae580.wgsl.expected.glsl
index d86f60f..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupBroadcastFirst/8ae580.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupBroadcastFirst/8ae580.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcastFirst
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupBroadcastFirst/9a1bdc.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupBroadcastFirst/9a1bdc.wgsl.expected.glsl
index d86f60f..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupBroadcastFirst/9a1bdc.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupBroadcastFirst/9a1bdc.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcastFirst
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupBroadcastFirst/9dccee.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupBroadcastFirst/9dccee.wgsl.expected.glsl
index d86f60f..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupBroadcastFirst/9dccee.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupBroadcastFirst/9dccee.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcastFirst
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupBroadcastFirst/a11307.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupBroadcastFirst/a11307.wgsl.expected.glsl
index d86f60f..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupBroadcastFirst/a11307.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupBroadcastFirst/a11307.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcastFirst
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupBroadcastFirst/e820d4.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupBroadcastFirst/e820d4.wgsl.expected.glsl
index d86f60f..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupBroadcastFirst/e820d4.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupBroadcastFirst/e820d4.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcastFirst
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupElect/3943d6.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupElect/3943d6.wgsl.expected.glsl
index 2b9a434..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupElect/3943d6.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupElect/3943d6.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupElect
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupExclusiveAdd/01de08.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupExclusiveAdd/01de08.wgsl.expected.glsl
index 0814297..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupExclusiveAdd/01de08.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupExclusiveAdd/01de08.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupExclusiveAdd/0ff95a.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupExclusiveAdd/0ff95a.wgsl.expected.glsl
index 0814297..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupExclusiveAdd/0ff95a.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupExclusiveAdd/0ff95a.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupExclusiveAdd/406ab4.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupExclusiveAdd/406ab4.wgsl.expected.glsl
index 0814297..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupExclusiveAdd/406ab4.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupExclusiveAdd/406ab4.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupExclusiveAdd/41cfde.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupExclusiveAdd/41cfde.wgsl.expected.glsl
index 0814297..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupExclusiveAdd/41cfde.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupExclusiveAdd/41cfde.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupExclusiveAdd/42684c.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupExclusiveAdd/42684c.wgsl.expected.glsl
index 0814297..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupExclusiveAdd/42684c.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupExclusiveAdd/42684c.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupExclusiveAdd/48acea.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupExclusiveAdd/48acea.wgsl.expected.glsl
index 0814297..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupExclusiveAdd/48acea.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupExclusiveAdd/48acea.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupExclusiveAdd/4a1568.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupExclusiveAdd/4a1568.wgsl.expected.glsl
index 0814297..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupExclusiveAdd/4a1568.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupExclusiveAdd/4a1568.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupExclusiveAdd/4c8024.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupExclusiveAdd/4c8024.wgsl.expected.glsl
index 0814297..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupExclusiveAdd/4c8024.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupExclusiveAdd/4c8024.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupExclusiveAdd/71ad0f.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupExclusiveAdd/71ad0f.wgsl.expected.glsl
index 0814297..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupExclusiveAdd/71ad0f.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupExclusiveAdd/71ad0f.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupExclusiveAdd/95e984.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupExclusiveAdd/95e984.wgsl.expected.glsl
index 0814297..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupExclusiveAdd/95e984.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupExclusiveAdd/95e984.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupExclusiveAdd/967e38.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupExclusiveAdd/967e38.wgsl.expected.glsl
index 0814297..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupExclusiveAdd/967e38.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupExclusiveAdd/967e38.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupExclusiveAdd/b0c261.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupExclusiveAdd/b0c261.wgsl.expected.glsl
index 0814297..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupExclusiveAdd/b0c261.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupExclusiveAdd/b0c261.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupExclusiveAdd/c08160.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupExclusiveAdd/c08160.wgsl.expected.glsl
index 0814297..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupExclusiveAdd/c08160.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupExclusiveAdd/c08160.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupExclusiveAdd/e58e23.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupExclusiveAdd/e58e23.wgsl.expected.glsl
index 0814297..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupExclusiveAdd/e58e23.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupExclusiveAdd/e58e23.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupExclusiveAdd/ec300f.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupExclusiveAdd/ec300f.wgsl.expected.glsl
index 0814297..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupExclusiveAdd/ec300f.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupExclusiveAdd/ec300f.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupExclusiveAdd/f0f712.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupExclusiveAdd/f0f712.wgsl.expected.glsl
index 0814297..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupExclusiveAdd/f0f712.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupExclusiveAdd/f0f712.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupExclusiveMul/000b92.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupExclusiveMul/000b92.wgsl.expected.glsl
index 6201b2b..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupExclusiveMul/000b92.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupExclusiveMul/000b92.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupExclusiveMul/019660.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupExclusiveMul/019660.wgsl.expected.glsl
index 6201b2b..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupExclusiveMul/019660.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupExclusiveMul/019660.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupExclusiveMul/0a04d5.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupExclusiveMul/0a04d5.wgsl.expected.glsl
index 6201b2b..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupExclusiveMul/0a04d5.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupExclusiveMul/0a04d5.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupExclusiveMul/13ba26.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupExclusiveMul/13ba26.wgsl.expected.glsl
index 6201b2b..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupExclusiveMul/13ba26.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupExclusiveMul/13ba26.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupExclusiveMul/25d1b9.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupExclusiveMul/25d1b9.wgsl.expected.glsl
index 6201b2b..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupExclusiveMul/25d1b9.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupExclusiveMul/25d1b9.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupExclusiveMul/4525a3.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupExclusiveMul/4525a3.wgsl.expected.glsl
index 6201b2b..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupExclusiveMul/4525a3.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupExclusiveMul/4525a3.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupExclusiveMul/6f431e.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupExclusiveMul/6f431e.wgsl.expected.glsl
index 6201b2b..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupExclusiveMul/6f431e.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupExclusiveMul/6f431e.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupExclusiveMul/7b5f57.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupExclusiveMul/7b5f57.wgsl.expected.glsl
index 6201b2b..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupExclusiveMul/7b5f57.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupExclusiveMul/7b5f57.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupExclusiveMul/87f23e.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupExclusiveMul/87f23e.wgsl.expected.glsl
index 6201b2b..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupExclusiveMul/87f23e.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupExclusiveMul/87f23e.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupExclusiveMul/98b2e4.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupExclusiveMul/98b2e4.wgsl.expected.glsl
index 6201b2b..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupExclusiveMul/98b2e4.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupExclusiveMul/98b2e4.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupExclusiveMul/a07956.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupExclusiveMul/a07956.wgsl.expected.glsl
index 6201b2b..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupExclusiveMul/a07956.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupExclusiveMul/a07956.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupExclusiveMul/a23002.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupExclusiveMul/a23002.wgsl.expected.glsl
index 6201b2b..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupExclusiveMul/a23002.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupExclusiveMul/a23002.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupExclusiveMul/d1d490.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupExclusiveMul/d1d490.wgsl.expected.glsl
index 6201b2b..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupExclusiveMul/d1d490.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupExclusiveMul/d1d490.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupExclusiveMul/dc51f8.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupExclusiveMul/dc51f8.wgsl.expected.glsl
index 6201b2b..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupExclusiveMul/dc51f8.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupExclusiveMul/dc51f8.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupExclusiveMul/e88d1c.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupExclusiveMul/e88d1c.wgsl.expected.glsl
index 6201b2b..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupExclusiveMul/e88d1c.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupExclusiveMul/e88d1c.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupExclusiveMul/f039f4.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupExclusiveMul/f039f4.wgsl.expected.glsl
index 6201b2b..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupExclusiveMul/f039f4.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupExclusiveMul/f039f4.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupInclusiveAdd/1b7680.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupInclusiveAdd/1b7680.wgsl.expected.glsl
index 61225ce..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupInclusiveAdd/1b7680.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupInclusiveAdd/1b7680.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupInclusiveAdd/367caa.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupInclusiveAdd/367caa.wgsl.expected.glsl
index 61225ce..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupInclusiveAdd/367caa.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupInclusiveAdd/367caa.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupInclusiveAdd/58ea3d.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupInclusiveAdd/58ea3d.wgsl.expected.glsl
index 61225ce..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupInclusiveAdd/58ea3d.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupInclusiveAdd/58ea3d.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupInclusiveAdd/7ed675.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupInclusiveAdd/7ed675.wgsl.expected.glsl
index 61225ce..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupInclusiveAdd/7ed675.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupInclusiveAdd/7ed675.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupInclusiveAdd/7f2040.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupInclusiveAdd/7f2040.wgsl.expected.glsl
index 61225ce..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupInclusiveAdd/7f2040.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupInclusiveAdd/7f2040.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupInclusiveAdd/8bbe75.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupInclusiveAdd/8bbe75.wgsl.expected.glsl
index 61225ce..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupInclusiveAdd/8bbe75.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupInclusiveAdd/8bbe75.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupInclusiveAdd/9bbcb0.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupInclusiveAdd/9bbcb0.wgsl.expected.glsl
index 61225ce..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupInclusiveAdd/9bbcb0.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupInclusiveAdd/9bbcb0.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupInclusiveAdd/a7c60f.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupInclusiveAdd/a7c60f.wgsl.expected.glsl
index 61225ce..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupInclusiveAdd/a7c60f.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupInclusiveAdd/a7c60f.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupInclusiveAdd/b787ce.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupInclusiveAdd/b787ce.wgsl.expected.glsl
index 61225ce..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupInclusiveAdd/b787ce.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupInclusiveAdd/b787ce.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupInclusiveAdd/c816b2.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupInclusiveAdd/c816b2.wgsl.expected.glsl
index 61225ce..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupInclusiveAdd/c816b2.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupInclusiveAdd/c816b2.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupInclusiveAdd/dde86f.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupInclusiveAdd/dde86f.wgsl.expected.glsl
index 61225ce..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupInclusiveAdd/dde86f.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupInclusiveAdd/dde86f.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupInclusiveAdd/df692b.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupInclusiveAdd/df692b.wgsl.expected.glsl
index 61225ce..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupInclusiveAdd/df692b.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupInclusiveAdd/df692b.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupInclusiveAdd/e18ebb.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupInclusiveAdd/e18ebb.wgsl.expected.glsl
index 61225ce..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupInclusiveAdd/e18ebb.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupInclusiveAdd/e18ebb.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupInclusiveAdd/f43b30.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupInclusiveAdd/f43b30.wgsl.expected.glsl
index 61225ce..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupInclusiveAdd/f43b30.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupInclusiveAdd/f43b30.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupInclusiveAdd/f8906d.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupInclusiveAdd/f8906d.wgsl.expected.glsl
index 61225ce..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupInclusiveAdd/f8906d.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupInclusiveAdd/f8906d.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupInclusiveAdd/fabbde.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupInclusiveAdd/fabbde.wgsl.expected.glsl
index 61225ce..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupInclusiveAdd/fabbde.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupInclusiveAdd/fabbde.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupInclusiveMul/01dc9b.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupInclusiveMul/01dc9b.wgsl.expected.glsl
index 7479235..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupInclusiveMul/01dc9b.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupInclusiveMul/01dc9b.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupInclusiveMul/10a1ef.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupInclusiveMul/10a1ef.wgsl.expected.glsl
index 7479235..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupInclusiveMul/10a1ef.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupInclusiveMul/10a1ef.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupInclusiveMul/1cdf5c.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupInclusiveMul/1cdf5c.wgsl.expected.glsl
index 7479235..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupInclusiveMul/1cdf5c.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupInclusiveMul/1cdf5c.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupInclusiveMul/2a7ec7.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupInclusiveMul/2a7ec7.wgsl.expected.glsl
index 7479235..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupInclusiveMul/2a7ec7.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupInclusiveMul/2a7ec7.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupInclusiveMul/2f8076.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupInclusiveMul/2f8076.wgsl.expected.glsl
index 7479235..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupInclusiveMul/2f8076.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupInclusiveMul/2f8076.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupInclusiveMul/359176.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupInclusiveMul/359176.wgsl.expected.glsl
index 7479235..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupInclusiveMul/359176.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupInclusiveMul/359176.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupInclusiveMul/4430d5.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupInclusiveMul/4430d5.wgsl.expected.glsl
index 7479235..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupInclusiveMul/4430d5.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupInclusiveMul/4430d5.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupInclusiveMul/517979.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupInclusiveMul/517979.wgsl.expected.glsl
index 7479235..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupInclusiveMul/517979.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupInclusiveMul/517979.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupInclusiveMul/69326e.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupInclusiveMul/69326e.wgsl.expected.glsl
index 7479235..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupInclusiveMul/69326e.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupInclusiveMul/69326e.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupInclusiveMul/769def.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupInclusiveMul/769def.wgsl.expected.glsl
index 7479235..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupInclusiveMul/769def.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupInclusiveMul/769def.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupInclusiveMul/7978b8.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupInclusiveMul/7978b8.wgsl.expected.glsl
index 7479235..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupInclusiveMul/7978b8.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupInclusiveMul/7978b8.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupInclusiveMul/89437b.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupInclusiveMul/89437b.wgsl.expected.glsl
index 7479235..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupInclusiveMul/89437b.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupInclusiveMul/89437b.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupInclusiveMul/9a54ec.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupInclusiveMul/9a54ec.wgsl.expected.glsl
index 7479235..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupInclusiveMul/9a54ec.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupInclusiveMul/9a54ec.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupInclusiveMul/ac5df5.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupInclusiveMul/ac5df5.wgsl.expected.glsl
index 7479235..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupInclusiveMul/ac5df5.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupInclusiveMul/ac5df5.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupInclusiveMul/dada1d.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupInclusiveMul/dada1d.wgsl.expected.glsl
index 7479235..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupInclusiveMul/dada1d.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupInclusiveMul/dada1d.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupInclusiveMul/e713f5.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupInclusiveMul/e713f5.wgsl.expected.glsl
index 7479235..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupInclusiveMul/e713f5.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupInclusiveMul/e713f5.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupMax/0b0375.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupMax/0b0375.wgsl.expected.glsl
index a57dd1a..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupMax/0b0375.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupMax/0b0375.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMax
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupMax/15ccbf.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupMax/15ccbf.wgsl.expected.glsl
index a57dd1a..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupMax/15ccbf.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupMax/15ccbf.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMax
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupMax/1a1a5f.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupMax/1a1a5f.wgsl.expected.glsl
index a57dd1a..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupMax/1a1a5f.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupMax/1a1a5f.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMax
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupMax/1fc846.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupMax/1fc846.wgsl.expected.glsl
index a57dd1a..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupMax/1fc846.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupMax/1fc846.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMax
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupMax/23f502.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupMax/23f502.wgsl.expected.glsl
index a57dd1a..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupMax/23f502.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupMax/23f502.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMax
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupMax/33e339.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupMax/33e339.wgsl.expected.glsl
index a57dd1a..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupMax/33e339.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupMax/33e339.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMax
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupMax/4ea90e.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupMax/4ea90e.wgsl.expected.glsl
index a57dd1a..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupMax/4ea90e.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupMax/4ea90e.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMax
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupMax/5611a5.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupMax/5611a5.wgsl.expected.glsl
index a57dd1a..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupMax/5611a5.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupMax/5611a5.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMax
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupMax/6c913e.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupMax/6c913e.wgsl.expected.glsl
index a57dd1a..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupMax/6c913e.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupMax/6c913e.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMax
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupMax/7c934c.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupMax/7c934c.wgsl.expected.glsl
index a57dd1a..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupMax/7c934c.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupMax/7c934c.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMax
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupMax/7e81ea.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupMax/7e81ea.wgsl.expected.glsl
index a57dd1a..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupMax/7e81ea.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupMax/7e81ea.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMax
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupMax/932164.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupMax/932164.wgsl.expected.glsl
index a57dd1a..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupMax/932164.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupMax/932164.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMax
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupMax/a3afe3.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupMax/a3afe3.wgsl.expected.glsl
index a57dd1a..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupMax/a3afe3.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupMax/a3afe3.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMax
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupMax/a3d5f7.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupMax/a3d5f7.wgsl.expected.glsl
index a57dd1a..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupMax/a3d5f7.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupMax/a3d5f7.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMax
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupMax/b58cbf.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupMax/b58cbf.wgsl.expected.glsl
index a57dd1a..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupMax/b58cbf.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupMax/b58cbf.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMax
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupMax/b8fb0e.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupMax/b8fb0e.wgsl.expected.glsl
index a57dd1a..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupMax/b8fb0e.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupMax/b8fb0e.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMax
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupMin/030ad6.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupMin/030ad6.wgsl.expected.glsl
index ec7bc74..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupMin/030ad6.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupMin/030ad6.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMin
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupMin/0bc13a.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupMin/0bc13a.wgsl.expected.glsl
index ec7bc74..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupMin/0bc13a.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupMin/0bc13a.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMin
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupMin/1de104.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupMin/1de104.wgsl.expected.glsl
index ec7bc74..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupMin/1de104.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupMin/1de104.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMin
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupMin/2493ab.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupMin/2493ab.wgsl.expected.glsl
index ec7bc74..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupMin/2493ab.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupMin/2493ab.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMin
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupMin/2d8828.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupMin/2d8828.wgsl.expected.glsl
index ec7bc74..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupMin/2d8828.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupMin/2d8828.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMin
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupMin/337a21.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupMin/337a21.wgsl.expected.glsl
index ec7bc74..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupMin/337a21.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupMin/337a21.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMin
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupMin/7def0a.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupMin/7def0a.wgsl.expected.glsl
index ec7bc74..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupMin/7def0a.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupMin/7def0a.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMin
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupMin/82ef23.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupMin/82ef23.wgsl.expected.glsl
index ec7bc74..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupMin/82ef23.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupMin/82ef23.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMin
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupMin/836960.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupMin/836960.wgsl.expected.glsl
index ec7bc74..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupMin/836960.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupMin/836960.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMin
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupMin/8bb8c1.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupMin/8bb8c1.wgsl.expected.glsl
index ec7bc74..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupMin/8bb8c1.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupMin/8bb8c1.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMin
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupMin/8ffadc.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupMin/8ffadc.wgsl.expected.glsl
index ec7bc74..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupMin/8ffadc.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupMin/8ffadc.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMin
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupMin/a96a2e.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupMin/a96a2e.wgsl.expected.glsl
index ec7bc74..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupMin/a96a2e.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupMin/a96a2e.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMin
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupMin/bbd9b0.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupMin/bbd9b0.wgsl.expected.glsl
index ec7bc74..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupMin/bbd9b0.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupMin/bbd9b0.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMin
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupMin/c6da7c.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupMin/c6da7c.wgsl.expected.glsl
index ec7bc74..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupMin/c6da7c.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupMin/c6da7c.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMin
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupMin/cd3b9d.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupMin/cd3b9d.wgsl.expected.glsl
index ec7bc74..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupMin/cd3b9d.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupMin/cd3b9d.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMin
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupMin/d85be6.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupMin/d85be6.wgsl.expected.glsl
index ec7bc74..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupMin/d85be6.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupMin/d85be6.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMin
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupMul/0de9d3.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupMul/0de9d3.wgsl.expected.glsl
index d653005..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupMul/0de9d3.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupMul/0de9d3.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupMul/2941a2.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupMul/2941a2.wgsl.expected.glsl
index d653005..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupMul/2941a2.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupMul/2941a2.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupMul/3fe886.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupMul/3fe886.wgsl.expected.glsl
index d653005..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupMul/3fe886.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupMul/3fe886.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupMul/4f8ee6.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupMul/4f8ee6.wgsl.expected.glsl
index d653005..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupMul/4f8ee6.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupMul/4f8ee6.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupMul/53aee2.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupMul/53aee2.wgsl.expected.glsl
index d653005..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupMul/53aee2.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupMul/53aee2.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupMul/5a8c86.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupMul/5a8c86.wgsl.expected.glsl
index d653005..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupMul/5a8c86.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupMul/5a8c86.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupMul/66c813.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupMul/66c813.wgsl.expected.glsl
index d653005..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupMul/66c813.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupMul/66c813.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupMul/6aaaf3.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupMul/6aaaf3.wgsl.expected.glsl
index d653005..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupMul/6aaaf3.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupMul/6aaaf3.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupMul/93eccd.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupMul/93eccd.wgsl.expected.glsl
index d653005..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupMul/93eccd.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupMul/93eccd.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupMul/d584a2.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupMul/d584a2.wgsl.expected.glsl
index d653005..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupMul/d584a2.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupMul/d584a2.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupMul/dc672a.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupMul/dc672a.wgsl.expected.glsl
index d653005..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupMul/dc672a.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupMul/dc672a.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupMul/dd1333.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupMul/dd1333.wgsl.expected.glsl
index d653005..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupMul/dd1333.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupMul/dd1333.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupMul/f2ac5b.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupMul/f2ac5b.wgsl.expected.glsl
index d653005..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupMul/f2ac5b.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupMul/f2ac5b.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupMul/f78398.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupMul/f78398.wgsl.expected.glsl
index d653005..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupMul/f78398.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupMul/f78398.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupMul/fa781b.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupMul/fa781b.wgsl.expected.glsl
index d653005..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupMul/fa781b.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupMul/fa781b.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupMul/fab258.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupMul/fab258.wgsl.expected.glsl
index d653005..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupMul/fab258.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupMul/fab258.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupOr/03343f.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupOr/03343f.wgsl.expected.glsl
index ea6c002..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupOr/03343f.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupOr/03343f.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupOr
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupOr/0bc264.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupOr/0bc264.wgsl.expected.glsl
index ea6c002..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupOr/0bc264.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupOr/0bc264.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupOr
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupOr/3f60e0.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupOr/3f60e0.wgsl.expected.glsl
index ea6c002..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupOr/3f60e0.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupOr/3f60e0.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupOr
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupOr/4d4eb0.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupOr/4d4eb0.wgsl.expected.glsl
index ea6c002..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupOr/4d4eb0.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupOr/4d4eb0.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupOr
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupOr/663a21.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupOr/663a21.wgsl.expected.glsl
index ea6c002..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupOr/663a21.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupOr/663a21.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupOr
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupOr/aa74f7.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupOr/aa74f7.wgsl.expected.glsl
index ea6c002..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupOr/aa74f7.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupOr/aa74f7.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupOr
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupOr/ae58b6.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupOr/ae58b6.wgsl.expected.glsl
index ea6c002..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupOr/ae58b6.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupOr/ae58b6.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupOr
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupOr/f915e3.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupOr/f915e3.wgsl.expected.glsl
index ea6c002..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupOr/f915e3.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupOr/f915e3.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupOr
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffle/030422.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffle/030422.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffle/030422.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffle/030422.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffle/1f664c.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffle/1f664c.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffle/1f664c.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffle/1f664c.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffle/21f083.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffle/21f083.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffle/21f083.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffle/21f083.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffle/2ee993.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffle/2ee993.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffle/2ee993.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffle/2ee993.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffle/323416.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffle/323416.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffle/323416.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffle/323416.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffle/4752bd.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffle/4752bd.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffle/4752bd.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffle/4752bd.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffle/4cbb69.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffle/4cbb69.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffle/4cbb69.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffle/4cbb69.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffle/4f5711.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffle/4f5711.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffle/4f5711.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffle/4f5711.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffle/54f328.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffle/54f328.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffle/54f328.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffle/54f328.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffle/5dfeab.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffle/5dfeab.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffle/5dfeab.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffle/5dfeab.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffle/5ef5a2.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffle/5ef5a2.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffle/5ef5a2.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffle/5ef5a2.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffle/647034.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffle/647034.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffle/647034.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffle/647034.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffle/7ba2d5.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffle/7ba2d5.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffle/7ba2d5.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffle/7ba2d5.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffle/7c5d64.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffle/7c5d64.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffle/7c5d64.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffle/7c5d64.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffle/7d7b1e.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffle/7d7b1e.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffle/7d7b1e.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffle/7d7b1e.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffle/821df9.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffle/821df9.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffle/821df9.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffle/821df9.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffle/824702.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffle/824702.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffle/824702.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffle/824702.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffle/84f261.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffle/84f261.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffle/84f261.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffle/84f261.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffle/85587b.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffle/85587b.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffle/85587b.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffle/85587b.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffle/8890a5.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffle/8890a5.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffle/8890a5.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffle/8890a5.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffle/8bfbcd.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffle/8bfbcd.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffle/8bfbcd.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffle/8bfbcd.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffle/8c3fd2.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffle/8c3fd2.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffle/8c3fd2.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffle/8c3fd2.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffle/aa1d5c.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffle/aa1d5c.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffle/aa1d5c.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffle/aa1d5c.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffle/b0f28d.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffle/b0f28d.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffle/b0f28d.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffle/b0f28d.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffle/b4bbb7.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffle/b4bbb7.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffle/b4bbb7.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffle/b4bbb7.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffle/bbb06c.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffle/bbb06c.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffle/bbb06c.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffle/bbb06c.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffle/d4a772.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffle/d4a772.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffle/d4a772.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffle/d4a772.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffle/d9ff67.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffle/d9ff67.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffle/d9ff67.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffle/d9ff67.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffle/e13c81.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffle/e13c81.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffle/e13c81.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffle/e13c81.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffle/e854d5.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffle/e854d5.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffle/e854d5.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffle/e854d5.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffle/f194f5.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffle/f194f5.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffle/f194f5.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffle/f194f5.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffle/fb4ab9.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffle/fb4ab9.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffle/fb4ab9.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffle/fb4ab9.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffleDown/10eb45.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffleDown/10eb45.wgsl.expected.glsl
index 9fafa38..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffleDown/10eb45.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffleDown/10eb45.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleDown
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffleDown/1b530f.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffleDown/1b530f.wgsl.expected.glsl
index 9fafa38..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffleDown/1b530f.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffleDown/1b530f.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleDown
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffleDown/257ff0.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffleDown/257ff0.wgsl.expected.glsl
index 9fafa38..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffleDown/257ff0.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffleDown/257ff0.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleDown
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffleDown/313d9b.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffleDown/313d9b.wgsl.expected.glsl
index 9fafa38..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffleDown/313d9b.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffleDown/313d9b.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleDown
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffleDown/57b1e8.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffleDown/57b1e8.wgsl.expected.glsl
index 9fafa38..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffleDown/57b1e8.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffleDown/57b1e8.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleDown
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffleDown/5d8b9f.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffleDown/5d8b9f.wgsl.expected.glsl
index 9fafa38..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffleDown/5d8b9f.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffleDown/5d8b9f.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleDown
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffleDown/63fdb0.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffleDown/63fdb0.wgsl.expected.glsl
index 9fafa38..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffleDown/63fdb0.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffleDown/63fdb0.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleDown
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffleDown/642789.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffleDown/642789.wgsl.expected.glsl
index 9fafa38..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffleDown/642789.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffleDown/642789.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleDown
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffleDown/7a0cf5.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffleDown/7a0cf5.wgsl.expected.glsl
index 9fafa38..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffleDown/7a0cf5.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffleDown/7a0cf5.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleDown
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffleDown/7f8886.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffleDown/7f8886.wgsl.expected.glsl
index 9fafa38..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffleDown/7f8886.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffleDown/7f8886.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleDown
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffleDown/9c6714.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffleDown/9c6714.wgsl.expected.glsl
index 9fafa38..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffleDown/9c6714.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffleDown/9c6714.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleDown
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffleDown/b41899.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffleDown/b41899.wgsl.expected.glsl
index 9fafa38..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffleDown/b41899.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffleDown/b41899.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleDown
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffleDown/c9f1c4.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffleDown/c9f1c4.wgsl.expected.glsl
index 9fafa38..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffleDown/c9f1c4.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffleDown/c9f1c4.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleDown
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffleDown/d269eb.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffleDown/d269eb.wgsl.expected.glsl
index 9fafa38..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffleDown/d269eb.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffleDown/d269eb.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleDown
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffleDown/d46304.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffleDown/d46304.wgsl.expected.glsl
index 9fafa38..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffleDown/d46304.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffleDown/d46304.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleDown
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffleDown/d90c2f.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffleDown/d90c2f.wgsl.expected.glsl
index 9fafa38..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffleDown/d90c2f.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffleDown/d90c2f.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleDown
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffleUp/0990cd.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffleUp/0990cd.wgsl.expected.glsl
index d6fd222..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffleUp/0990cd.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffleUp/0990cd.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleUp
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffleUp/1bb93f.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffleUp/1bb93f.wgsl.expected.glsl
index d6fd222..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffleUp/1bb93f.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffleUp/1bb93f.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleUp
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffleUp/23c7ca.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffleUp/23c7ca.wgsl.expected.glsl
index d6fd222..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffleUp/23c7ca.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffleUp/23c7ca.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleUp
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffleUp/3242a6.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffleUp/3242a6.wgsl.expected.glsl
index d6fd222..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffleUp/3242a6.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffleUp/3242a6.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleUp
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffleUp/33d495.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffleUp/33d495.wgsl.expected.glsl
index d6fd222..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffleUp/33d495.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffleUp/33d495.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleUp
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffleUp/3e609f.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffleUp/3e609f.wgsl.expected.glsl
index d6fd222..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffleUp/3e609f.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffleUp/3e609f.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleUp
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffleUp/58de69.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffleUp/58de69.wgsl.expected.glsl
index d6fd222..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffleUp/58de69.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffleUp/58de69.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleUp
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffleUp/868e52.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffleUp/868e52.wgsl.expected.glsl
index d6fd222..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffleUp/868e52.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffleUp/868e52.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleUp
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffleUp/87c9d6.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffleUp/87c9d6.wgsl.expected.glsl
index d6fd222..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffleUp/87c9d6.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffleUp/87c9d6.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleUp
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffleUp/88eb07.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffleUp/88eb07.wgsl.expected.glsl
index d6fd222..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffleUp/88eb07.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffleUp/88eb07.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleUp
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffleUp/8a63f3.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffleUp/8a63f3.wgsl.expected.glsl
index d6fd222..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffleUp/8a63f3.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffleUp/8a63f3.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleUp
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffleUp/a2075a.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffleUp/a2075a.wgsl.expected.glsl
index d6fd222..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffleUp/a2075a.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffleUp/a2075a.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleUp
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffleUp/abaea0.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffleUp/abaea0.wgsl.expected.glsl
index d6fd222..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffleUp/abaea0.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffleUp/abaea0.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleUp
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffleUp/b58804.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffleUp/b58804.wgsl.expected.glsl
index d6fd222..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffleUp/b58804.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffleUp/b58804.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleUp
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffleUp/bbf7f4.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffleUp/bbf7f4.wgsl.expected.glsl
index d6fd222..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffleUp/bbf7f4.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffleUp/bbf7f4.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleUp
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffleUp/db5bcb.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffleUp/db5bcb.wgsl.expected.glsl
index d6fd222..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffleUp/db5bcb.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffleUp/db5bcb.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleUp
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffleXor/071aa0.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffleXor/071aa0.wgsl.expected.glsl
index deb58cb..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffleXor/071aa0.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffleXor/071aa0.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleXor
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffleXor/08f588.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffleXor/08f588.wgsl.expected.glsl
index deb58cb..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffleXor/08f588.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffleXor/08f588.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleXor
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffleXor/1d36b6.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffleXor/1d36b6.wgsl.expected.glsl
index deb58cb..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffleXor/1d36b6.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffleXor/1d36b6.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleXor
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffleXor/1e247f.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffleXor/1e247f.wgsl.expected.glsl
index deb58cb..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffleXor/1e247f.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffleXor/1e247f.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleXor
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffleXor/1f2590.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffleXor/1f2590.wgsl.expected.glsl
index deb58cb..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffleXor/1f2590.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffleXor/1f2590.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleXor
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffleXor/2e033d.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffleXor/2e033d.wgsl.expected.glsl
index deb58cb..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffleXor/2e033d.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffleXor/2e033d.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleXor
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffleXor/445e83.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffleXor/445e83.wgsl.expected.glsl
index deb58cb..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffleXor/445e83.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffleXor/445e83.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleXor
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffleXor/7435fe.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffleXor/7435fe.wgsl.expected.glsl
index deb58cb..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffleXor/7435fe.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffleXor/7435fe.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleXor
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffleXor/80b6e9.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffleXor/80b6e9.wgsl.expected.glsl
index deb58cb..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffleXor/80b6e9.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffleXor/80b6e9.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleXor
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffleXor/9f945a.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffleXor/9f945a.wgsl.expected.glsl
index deb58cb..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffleXor/9f945a.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffleXor/9f945a.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleXor
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffleXor/bdddba.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffleXor/bdddba.wgsl.expected.glsl
index deb58cb..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffleXor/bdddba.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffleXor/bdddba.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleXor
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffleXor/c88290.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffleXor/c88290.wgsl.expected.glsl
index deb58cb..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffleXor/c88290.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffleXor/c88290.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleXor
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffleXor/caa816.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffleXor/caa816.wgsl.expected.glsl
index deb58cb..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffleXor/caa816.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffleXor/caa816.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleXor
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffleXor/d224ab.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffleXor/d224ab.wgsl.expected.glsl
index deb58cb..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffleXor/d224ab.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffleXor/d224ab.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleXor
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffleXor/e3c10b.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffleXor/e3c10b.wgsl.expected.glsl
index deb58cb..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffleXor/e3c10b.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffleXor/e3c10b.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleXor
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupShuffleXor/f7b453.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupShuffleXor/f7b453.wgsl.expected.glsl
index deb58cb..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupShuffleXor/f7b453.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupShuffleXor/f7b453.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleXor
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupXor/468721.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupXor/468721.wgsl.expected.glsl
index a5303ebd..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupXor/468721.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupXor/468721.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupXor
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupXor/473de8.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupXor/473de8.wgsl.expected.glsl
index a5303ebd..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupXor/473de8.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupXor/473de8.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupXor
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupXor/694b17.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupXor/694b17.wgsl.expected.glsl
index a5303ebd..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupXor/694b17.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupXor/694b17.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupXor
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupXor/7750d6.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupXor/7750d6.wgsl.expected.glsl
index a5303ebd..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupXor/7750d6.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupXor/7750d6.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupXor
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupXor/7f6672.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupXor/7f6672.wgsl.expected.glsl
index a5303ebd..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupXor/7f6672.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupXor/7f6672.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupXor
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupXor/83b1f3.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupXor/83b1f3.wgsl.expected.glsl
index a5303ebd..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupXor/83b1f3.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupXor/83b1f3.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupXor
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupXor/9c6e73.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupXor/9c6e73.wgsl.expected.glsl
index a5303ebd..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupXor/9c6e73.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupXor/9c6e73.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupXor
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/subgroupXor/9d77e4.wgsl.expected.glsl b/test/tint/builtins/gen/literal/subgroupXor/9d77e4.wgsl.expected.glsl
index a5303ebd..21f1759 100644
--- a/test/tint/builtins/gen/literal/subgroupXor/9d77e4.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/subgroupXor/9d77e4.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupXor
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureDimensions/01edb1.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureDimensions/01edb1.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/01edb1.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/01edb1.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureDimensions/0276ec.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureDimensions/0276ec.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/0276ec.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/0276ec.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureDimensions/033195.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureDimensions/033195.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/033195.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/033195.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureDimensions/038847.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureDimensions/038847.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/038847.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/038847.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureDimensions/03f81e.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureDimensions/03f81e.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/03f81e.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/03f81e.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureDimensions/0973c9.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureDimensions/0973c9.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/0973c9.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/0973c9.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureDimensions/0de70c.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureDimensions/0de70c.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/0de70c.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/0de70c.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureDimensions/20eaad.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureDimensions/20eaad.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/20eaad.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/20eaad.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureDimensions/283b58.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureDimensions/283b58.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/283b58.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/283b58.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureDimensions/2a58b7.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureDimensions/2a58b7.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/2a58b7.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/2a58b7.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureDimensions/325338.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureDimensions/325338.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/325338.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/325338.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureDimensions/36eeb7.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureDimensions/36eeb7.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/36eeb7.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/36eeb7.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureDimensions/38c9ca.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureDimensions/38c9ca.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/38c9ca.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/38c9ca.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureDimensions/427f92.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureDimensions/427f92.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/427f92.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/427f92.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureDimensions/55fdeb.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureDimensions/55fdeb.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/55fdeb.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/55fdeb.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureDimensions/5703b3.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureDimensions/5703b3.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/5703b3.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/5703b3.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureDimensions/579eee.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureDimensions/579eee.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/579eee.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/579eee.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureDimensions/70dd33.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureDimensions/70dd33.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/70dd33.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/70dd33.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureDimensions/715917.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureDimensions/715917.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/715917.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/715917.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureDimensions/795fbb.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureDimensions/795fbb.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/795fbb.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/795fbb.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureDimensions/7ea4b5.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureDimensions/7ea4b5.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/7ea4b5.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/7ea4b5.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureDimensions/8243a1.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureDimensions/8243a1.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/8243a1.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/8243a1.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureDimensions/8a2b17.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureDimensions/8a2b17.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/8a2b17.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/8a2b17.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureDimensions/8b9906.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureDimensions/8b9906.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/8b9906.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/8b9906.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureDimensions/8bd369.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureDimensions/8bd369.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/8bd369.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/8bd369.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureDimensions/a105a5.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureDimensions/a105a5.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/a105a5.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/a105a5.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureDimensions/a14386.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureDimensions/a14386.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/a14386.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/a14386.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureDimensions/a7ae4c.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureDimensions/a7ae4c.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/a7ae4c.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/a7ae4c.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureDimensions/ae75a7.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureDimensions/ae75a7.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/ae75a7.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/ae75a7.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureDimensions/b16352.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureDimensions/b16352.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/b16352.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/b16352.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureDimensions/b284b8.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureDimensions/b284b8.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/b284b8.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/b284b8.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureDimensions/b5d68e.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureDimensions/b5d68e.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/b5d68e.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/b5d68e.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureDimensions/bc96f6.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureDimensions/bc96f6.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/bc96f6.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/bc96f6.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureDimensions/c27466.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureDimensions/c27466.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/c27466.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/c27466.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureDimensions/ca10cc.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureDimensions/ca10cc.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/ca10cc.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/ca10cc.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureDimensions/deb3c0.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureDimensions/deb3c0.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/deb3c0.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/deb3c0.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureDimensions/e4f021.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureDimensions/e4f021.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/e4f021.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/e4f021.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureDimensions/e50eb8.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureDimensions/e50eb8.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/e50eb8.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/e50eb8.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureDimensions/eb10d6.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureDimensions/eb10d6.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/eb10d6.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/eb10d6.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureDimensions/eb1249.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureDimensions/eb1249.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/eb1249.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/eb1249.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureDimensions/eb9f4d.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureDimensions/eb9f4d.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/eb9f4d.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/eb9f4d.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureDimensions/f406ff.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureDimensions/f406ff.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/f406ff.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/f406ff.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureDimensions/f55a94.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureDimensions/f55a94.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/f55a94.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/f55a94.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureDimensions/f93ece.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureDimensions/f93ece.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureDimensions/f93ece.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureDimensions/f93ece.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/012e11.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/012e11.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/012e11.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/012e11.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/02c48d.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/02c48d.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/02c48d.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/02c48d.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/03e03e.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/03e03e.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/03e03e.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/03e03e.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/054350.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/054350.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/054350.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/054350.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/0b515a.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/0b515a.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/0b515a.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/0b515a.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/14cc4c.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/14cc4c.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/14cc4c.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/14cc4c.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/170593.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/170593.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/170593.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/170593.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/17095b.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/17095b.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/17095b.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/17095b.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/1bc5ab.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/1bc5ab.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/1bc5ab.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/1bc5ab.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/1d43ae.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/1d43ae.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/1d43ae.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/1d43ae.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/25b67f.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/25b67f.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/25b67f.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/25b67f.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/26b8f6.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/26b8f6.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/26b8f6.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/26b8f6.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/2cee30.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/2cee30.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/2cee30.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/2cee30.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/2dbfc2.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/2dbfc2.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/2dbfc2.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/2dbfc2.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/32a7b8.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/32a7b8.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/32a7b8.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/32a7b8.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/39016c.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/39016c.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/39016c.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/39016c.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/395447.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/395447.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/395447.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/395447.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/3a2350.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/3a2350.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/3a2350.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/3a2350.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/3cfb9c.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/3cfb9c.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/3cfb9c.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/3cfb9c.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/40ee8b.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/40ee8b.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/40ee8b.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/40ee8b.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/4212a1.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/4212a1.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/4212a1.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/4212a1.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/42a631.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/42a631.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/42a631.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/42a631.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/43cd86.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/43cd86.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/43cd86.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/43cd86.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/4542ae.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/4542ae.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/4542ae.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/4542ae.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/473d3e.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/473d3e.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/473d3e.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/473d3e.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/4a5c55.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/4a5c55.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/4a5c55.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/4a5c55.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/4c15b2.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/4c15b2.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/4c15b2.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/4c15b2.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/4e2c5c.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/4e2c5c.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/4e2c5c.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/4e2c5c.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/4f90bb.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/4f90bb.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/4f90bb.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/4f90bb.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/5154e1.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/5154e1.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/5154e1.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/5154e1.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/53941c.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/53941c.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/53941c.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/53941c.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/5b0f5b.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/5b0f5b.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/5b0f5b.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/5b0f5b.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/5b4947.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/5b4947.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/5b4947.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/5b4947.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/5c69f8.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/5c69f8.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/5c69f8.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/5c69f8.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/5e17a7.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/5e17a7.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/5e17a7.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/5e17a7.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/5e1843.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/5e1843.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/5e1843.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/5e1843.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/622278.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/622278.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/622278.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/622278.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/64c372.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/64c372.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/64c372.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/64c372.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/666010.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/666010.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/666010.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/666010.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/68d273.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/68d273.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/68d273.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/68d273.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/6a6871.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/6a6871.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/6a6871.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/6a6871.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/6b8ba6.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/6b8ba6.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/6b8ba6.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/6b8ba6.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/6ba9ab.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/6ba9ab.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/6ba9ab.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/6ba9ab.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/6bf3e2.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/6bf3e2.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/6bf3e2.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/6bf3e2.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/6d7bb5.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/6d7bb5.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/6d7bb5.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/6d7bb5.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/6e903f.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/6e903f.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/6e903f.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/6e903f.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/6f0ea8.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/6f0ea8.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/6f0ea8.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/6f0ea8.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/6f8927.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/6f8927.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/6f8927.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/6f8927.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/742f1b.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/742f1b.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/742f1b.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/742f1b.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/74a387.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/74a387.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/74a387.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/74a387.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/7e5cbc.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/7e5cbc.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/7e5cbc.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/7e5cbc.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/80dae1.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/80dae1.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/80dae1.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/80dae1.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/848d85.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/848d85.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/848d85.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/848d85.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/84a438.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/84a438.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/84a438.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/84a438.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/878e24.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/878e24.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/878e24.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/878e24.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/87f0a6.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/87f0a6.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/87f0a6.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/87f0a6.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/8b62fb.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/8b62fb.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/8b62fb.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/8b62fb.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/8e68c9.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/8e68c9.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/8e68c9.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/8e68c9.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/8fc29b.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/8fc29b.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/8fc29b.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/8fc29b.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/9242e7.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/9242e7.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/9242e7.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/9242e7.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/9fa9fd.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/9fa9fd.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/9fa9fd.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/9fa9fd.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/9fd7be.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/9fd7be.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/9fd7be.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/9fd7be.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/a2b3f4.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/a2b3f4.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/a2b3f4.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/a2b3f4.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/a3733f.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/a3733f.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/a3733f.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/a3733f.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/a3f122.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/a3f122.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/a3f122.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/a3f122.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/a548a8.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/a548a8.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/a548a8.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/a548a8.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/a54e11.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/a54e11.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/a54e11.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/a54e11.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/a64b1d.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/a64b1d.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/a64b1d.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/a64b1d.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/a7bcb4.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/a7bcb4.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/a7bcb4.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/a7bcb4.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/a7c171.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/a7c171.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/a7c171.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/a7c171.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/a92b18.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/a92b18.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/a92b18.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/a92b18.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/aa2579.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/aa2579.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/aa2579.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/aa2579.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/aae9c3.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/aae9c3.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/aae9c3.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/aae9c3.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/acf22f.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/acf22f.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/acf22f.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/acf22f.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/b60a86.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/b60a86.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/b60a86.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/b60a86.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/b60db7.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/b60db7.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/b60db7.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/b60db7.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/ba74b2.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/ba74b2.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/ba74b2.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/ba74b2.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/babdf3.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/babdf3.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/babdf3.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/babdf3.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/bbb762.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/bbb762.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/bbb762.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/bbb762.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/bd990a.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/bd990a.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/bd990a.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/bd990a.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/c5c86d.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/c5c86d.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/c5c86d.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/c5c86d.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/c7e313.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/c7e313.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/c7e313.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/c7e313.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/c98bf4.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/c98bf4.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/c98bf4.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/c98bf4.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/c9b083.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/c9b083.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/c9b083.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/c9b083.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/cac876.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/cac876.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/cac876.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/cac876.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/cdbcf6.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/cdbcf6.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/cdbcf6.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/cdbcf6.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/cddf6b.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/cddf6b.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/cddf6b.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/cddf6b.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/d37a08.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/d37a08.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/d37a08.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/d37a08.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/d3d8fc.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/d3d8fc.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/d3d8fc.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/d3d8fc.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/d72de9.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/d72de9.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/d72de9.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/d72de9.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/d7996a.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/d7996a.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/d7996a.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/d7996a.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/d79c5c.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/d79c5c.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/d79c5c.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/d79c5c.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/d80ff3.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/d80ff3.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/d80ff3.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/d80ff3.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/d8be5a.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/d8be5a.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/d8be5a.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/d8be5a.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/d91f37.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/d91f37.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/d91f37.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/d91f37.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/dab04f.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/dab04f.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/dab04f.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/dab04f.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/dd5859.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/dd5859.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/dd5859.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/dd5859.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/de5a0e.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/de5a0e.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/de5a0e.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/de5a0e.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/e1c3cf.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/e1c3cf.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/e1c3cf.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/e1c3cf.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/e2d7da.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/e2d7da.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/e2d7da.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/e2d7da.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/e33285.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/e33285.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/e33285.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/e33285.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/e9eb65.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/e9eb65.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/e9eb65.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/e9eb65.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/f0514a.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/f0514a.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/f0514a.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/f0514a.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/f2c311.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/f2c311.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/f2c311.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/f2c311.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/f5fbc6.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/f5fbc6.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/f5fbc6.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/f5fbc6.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/f7f3bc.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/f7f3bc.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/f7f3bc.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/f7f3bc.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/f82eb2.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/f82eb2.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/f82eb2.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/f82eb2.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/fc47ff.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/fc47ff.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/fc47ff.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/fc47ff.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/fd9606.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/fd9606.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/fd9606.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/fd9606.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureLoad/fe2c1b.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureLoad/fe2c1b.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureLoad/fe2c1b.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureLoad/fe2c1b.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureNumLayers/0856ae.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureNumLayers/0856ae.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureNumLayers/0856ae.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureNumLayers/0856ae.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureNumLayers/2a48dc.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureNumLayers/2a48dc.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureNumLayers/2a48dc.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureNumLayers/2a48dc.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureNumLayers/327d70.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureNumLayers/327d70.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureNumLayers/327d70.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureNumLayers/327d70.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureNumLayers/32ca10.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureNumLayers/32ca10.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureNumLayers/32ca10.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureNumLayers/32ca10.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureNumLayers/380a60.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureNumLayers/380a60.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureNumLayers/380a60.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureNumLayers/380a60.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureNumLayers/54a654.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureNumLayers/54a654.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureNumLayers/54a654.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureNumLayers/54a654.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureNumLayers/5ee8f2.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureNumLayers/5ee8f2.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureNumLayers/5ee8f2.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureNumLayers/5ee8f2.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureNumLayers/6da0eb.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureNumLayers/6da0eb.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureNumLayers/6da0eb.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureNumLayers/6da0eb.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureNumLayers/a54655.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureNumLayers/a54655.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureNumLayers/a54655.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureNumLayers/a54655.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureNumLayers/d3f655.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureNumLayers/d3f655.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureNumLayers/d3f655.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureNumLayers/d3f655.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureNumLayers/e47aac.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureNumLayers/e47aac.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureNumLayers/e47aac.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureNumLayers/e47aac.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/036d0e.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/036d0e.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/036d0e.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/036d0e.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/03e7a0.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/03e7a0.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/03e7a0.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/03e7a0.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/042b06.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/042b06.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/042b06.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/042b06.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/052a4e.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/052a4e.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/052a4e.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/052a4e.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/053664.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/053664.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/053664.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/053664.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/09e4d5.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/09e4d5.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/09e4d5.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/09e4d5.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/101325.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/101325.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/101325.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/101325.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/145061.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/145061.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/145061.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/145061.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/178e69.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/178e69.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/178e69.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/178e69.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/195d1b.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/195d1b.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/195d1b.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/195d1b.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/197637.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/197637.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/197637.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/197637.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/1af236.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/1af236.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/1af236.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/1af236.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/2046db.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/2046db.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/2046db.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/2046db.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/2173fd.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/2173fd.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/2173fd.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/2173fd.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/26a26d.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/26a26d.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/26a26d.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/26a26d.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/28e109.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/28e109.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/28e109.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/28e109.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/2a60c9.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/2a60c9.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/2a60c9.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/2a60c9.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/2addd6.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/2addd6.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/2addd6.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/2addd6.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/2c76db.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/2c76db.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/2c76db.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/2c76db.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/2f29ea.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/2f29ea.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/2f29ea.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/2f29ea.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/3310d3.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/3310d3.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/3310d3.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/3310d3.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/345332.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/345332.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/345332.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/345332.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/3d96a4.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/3d96a4.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/3d96a4.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/3d96a4.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/3f61ca.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/3f61ca.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/3f61ca.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/3f61ca.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/441222.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/441222.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/441222.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/441222.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/4483e7.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/4483e7.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/4483e7.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/4483e7.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/44b372.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/44b372.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/44b372.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/44b372.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/47bd70.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/47bd70.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/47bd70.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/47bd70.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/48cb56.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/48cb56.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/48cb56.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/48cb56.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/4c76b7.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/4c76b7.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/4c76b7.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/4c76b7.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/4ddf52.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/4ddf52.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/4ddf52.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/4ddf52.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/5030f5.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/5030f5.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/5030f5.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/5030f5.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/544f06.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/544f06.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/544f06.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/544f06.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/55f9dc.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/55f9dc.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/55f9dc.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/55f9dc.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/58fc35.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/58fc35.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/58fc35.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/58fc35.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/5a8b41.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/5a8b41.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/5a8b41.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/5a8b41.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/5b4522.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/5b4522.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/5b4522.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/5b4522.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/646dbc.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/646dbc.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/646dbc.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/646dbc.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/65b6aa.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/65b6aa.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/65b6aa.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/65b6aa.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/6d1809.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/6d1809.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/6d1809.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/6d1809.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/6d259f.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/6d259f.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/6d259f.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/6d259f.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/6f3542.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/6f3542.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/6f3542.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/6f3542.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/6fb99b.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/6fb99b.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/6fb99b.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/6fb99b.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/704e1f.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/704e1f.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/704e1f.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/704e1f.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/706236.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/706236.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/706236.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/706236.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/706560.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/706560.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/706560.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/706560.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/726d6d.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/726d6d.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/726d6d.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/726d6d.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/73a735.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/73a735.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/73a735.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/73a735.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/751256.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/751256.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/751256.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/751256.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/7d10e0.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/7d10e0.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/7d10e0.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/7d10e0.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/7dd042.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/7dd042.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/7dd042.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/7dd042.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/7e787a.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/7e787a.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/7e787a.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/7e787a.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/818df6.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/818df6.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/818df6.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/818df6.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/84f4f4.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/84f4f4.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/84f4f4.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/84f4f4.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/86f713.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/86f713.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/86f713.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/86f713.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/877c92.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/877c92.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/877c92.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/877c92.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/8815b1.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/8815b1.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/8815b1.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/8815b1.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/885921.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/885921.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/885921.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/885921.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/88ce7e.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/88ce7e.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/88ce7e.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/88ce7e.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/8a46ff.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/8a46ff.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/8a46ff.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/8a46ff.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/8a85b9.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/8a85b9.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/8a85b9.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/8a85b9.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/8ae0bc.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/8ae0bc.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/8ae0bc.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/8ae0bc.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/8ebdc9.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/8ebdc9.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/8ebdc9.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/8ebdc9.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/90960e.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/90960e.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/90960e.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/90960e.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/90a553.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/90a553.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/90a553.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/90a553.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/976636.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/976636.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/976636.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/976636.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/9ba5c1.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/9ba5c1.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/9ba5c1.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/9ba5c1.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/9cea9e.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/9cea9e.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/9cea9e.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/9cea9e.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/9d7c62.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/9d7c62.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/9d7c62.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/9d7c62.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/a14041.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/a14041.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/a14041.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/a14041.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/a19a12.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/a19a12.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/a19a12.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/a19a12.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/a24491.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/a24491.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/a24491.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/a24491.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/a5b88e.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/a5b88e.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/a5b88e.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/a5b88e.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/a5c925.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/a5c925.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/a5c925.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/a5c925.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/a66ca4.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/a66ca4.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/a66ca4.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/a66ca4.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/ab03b6.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/ab03b6.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/ab03b6.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/ab03b6.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/ac0a55.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/ac0a55.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/ac0a55.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/ac0a55.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/aedea3.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/aedea3.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/aedea3.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/aedea3.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/b16110.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/b16110.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/b16110.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/b16110.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/b286b4.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/b286b4.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/b286b4.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/b286b4.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/b36bc1.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/b36bc1.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/b36bc1.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/b36bc1.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/b4389e.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/b4389e.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/b4389e.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/b4389e.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/b89ffb.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/b89ffb.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/b89ffb.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/b89ffb.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/b9d863.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/b9d863.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/b9d863.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/b9d863.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/bc1423.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/bc1423.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/bc1423.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/bc1423.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/c06463.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/c06463.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/c06463.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/c06463.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/c1c664.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/c1c664.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/c1c664.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/c1c664.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/c1f760.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/c1f760.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/c1f760.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/c1f760.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/c63f05.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/c63f05.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/c63f05.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/c63f05.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/c79451.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/c79451.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/c79451.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/c79451.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/ccac20.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/ccac20.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/ccac20.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/ccac20.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/d0d62c.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/d0d62c.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/d0d62c.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/d0d62c.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/d0fadc.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/d0fadc.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/d0fadc.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/d0fadc.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/d1ab82.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/d1ab82.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/d1ab82.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/d1ab82.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/d3a22b.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/d3a22b.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/d3a22b.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/d3a22b.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/d86d33.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/d86d33.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/d86d33.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/d86d33.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/da530c.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/da530c.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/da530c.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/da530c.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/db5128.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/db5128.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/db5128.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/db5128.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/dd8b29.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/dd8b29.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/dd8b29.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/dd8b29.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/de38e5.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/de38e5.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/de38e5.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/de38e5.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/e1784d.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/e1784d.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/e1784d.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/e1784d.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/e46fd8.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/e46fd8.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/e46fd8.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/e46fd8.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/e72bdc.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/e72bdc.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/e72bdc.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/e72bdc.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/e87f6e.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/e87f6e.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/e87f6e.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/e87f6e.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/f05928.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/f05928.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/f05928.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/f05928.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/f6f392.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/f6f392.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/f6f392.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/f6f392.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/f8aaf9.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/f8aaf9.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/f8aaf9.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/f8aaf9.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/f975a0.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/f975a0.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/f975a0.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/f975a0.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/fc916e.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/fc916e.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/fc916e.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/fc916e.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/literal/textureStore/ff23b3.wgsl.expected.glsl b/test/tint/builtins/gen/literal/textureStore/ff23b3.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/literal/textureStore/ff23b3.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/literal/textureStore/ff23b3.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/inputAttachmentLoad/315bf5.wgsl.expected.glsl b/test/tint/builtins/gen/var/inputAttachmentLoad/315bf5.wgsl.expected.glsl
index dd8dbc2..4bf7134 100644
--- a/test/tint/builtins/gen/var/inputAttachmentLoad/315bf5.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/inputAttachmentLoad/315bf5.wgsl.expected.glsl
@@ -1,11 +1,5 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/raise/texture_polyfill.cc:262 internal compiler error: TINT_UNREACHABLE unhandled texture function: inputAttachmentLoad
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+error: input attachments are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/inputAttachmentLoad/c38b2f.wgsl.expected.glsl b/test/tint/builtins/gen/var/inputAttachmentLoad/c38b2f.wgsl.expected.glsl
index dd8dbc2..4bf7134 100644
--- a/test/tint/builtins/gen/var/inputAttachmentLoad/c38b2f.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/inputAttachmentLoad/c38b2f.wgsl.expected.glsl
@@ -1,11 +1,5 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/raise/texture_polyfill.cc:262 internal compiler error: TINT_UNREACHABLE unhandled texture function: inputAttachmentLoad
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+error: input attachments are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/inputAttachmentLoad/fc4d97.wgsl.expected.glsl b/test/tint/builtins/gen/var/inputAttachmentLoad/fc4d97.wgsl.expected.glsl
index dd8dbc2..4bf7134 100644
--- a/test/tint/builtins/gen/var/inputAttachmentLoad/fc4d97.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/inputAttachmentLoad/fc4d97.wgsl.expected.glsl
@@ -1,11 +1,5 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/raise/texture_polyfill.cc:262 internal compiler error: TINT_UNREACHABLE unhandled texture function: inputAttachmentLoad
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+error: input attachments are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadBroadcast/0464d1.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadBroadcast/0464d1.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/var/quadBroadcast/0464d1.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadBroadcast/0464d1.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadBroadcast/0639ea.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadBroadcast/0639ea.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/var/quadBroadcast/0639ea.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadBroadcast/0639ea.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadBroadcast/0cc513.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadBroadcast/0cc513.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/var/quadBroadcast/0cc513.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadBroadcast/0cc513.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadBroadcast/0e0e6e.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadBroadcast/0e0e6e.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/var/quadBroadcast/0e0e6e.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadBroadcast/0e0e6e.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadBroadcast/2d0b7d.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadBroadcast/2d0b7d.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/var/quadBroadcast/2d0b7d.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadBroadcast/2d0b7d.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadBroadcast/355db5.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadBroadcast/355db5.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/var/quadBroadcast/355db5.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadBroadcast/355db5.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadBroadcast/3c3824.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadBroadcast/3c3824.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/var/quadBroadcast/3c3824.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadBroadcast/3c3824.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadBroadcast/4d9898.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadBroadcast/4d9898.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/var/quadBroadcast/4d9898.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadBroadcast/4d9898.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadBroadcast/641316.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadBroadcast/641316.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/var/quadBroadcast/641316.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadBroadcast/641316.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadBroadcast/704803.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadBroadcast/704803.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/var/quadBroadcast/704803.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadBroadcast/704803.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadBroadcast/76f499.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadBroadcast/76f499.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/var/quadBroadcast/76f499.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadBroadcast/76f499.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadBroadcast/78129b.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadBroadcast/78129b.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/var/quadBroadcast/78129b.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadBroadcast/78129b.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadBroadcast/796753.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadBroadcast/796753.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/var/quadBroadcast/796753.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadBroadcast/796753.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadBroadcast/820991.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadBroadcast/820991.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/var/quadBroadcast/820991.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadBroadcast/820991.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadBroadcast/960c6b.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadBroadcast/960c6b.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/var/quadBroadcast/960c6b.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadBroadcast/960c6b.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadBroadcast/9d802c.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadBroadcast/9d802c.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/var/quadBroadcast/9d802c.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadBroadcast/9d802c.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadBroadcast/a2d2b4.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadBroadcast/a2d2b4.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/var/quadBroadcast/a2d2b4.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadBroadcast/a2d2b4.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadBroadcast/ae401e.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadBroadcast/ae401e.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/var/quadBroadcast/ae401e.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadBroadcast/ae401e.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadBroadcast/b68331.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadBroadcast/b68331.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/var/quadBroadcast/b68331.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadBroadcast/b68331.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadBroadcast/bed00b.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadBroadcast/bed00b.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/var/quadBroadcast/bed00b.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadBroadcast/bed00b.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadBroadcast/c0e704.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadBroadcast/c0e704.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/var/quadBroadcast/c0e704.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadBroadcast/c0e704.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadBroadcast/cd3624.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadBroadcast/cd3624.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/var/quadBroadcast/cd3624.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadBroadcast/cd3624.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadBroadcast/cebc6a.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadBroadcast/cebc6a.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/var/quadBroadcast/cebc6a.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadBroadcast/cebc6a.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadBroadcast/cfbf48.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadBroadcast/cfbf48.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/var/quadBroadcast/cfbf48.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadBroadcast/cfbf48.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadBroadcast/e6d39d.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadBroadcast/e6d39d.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/var/quadBroadcast/e6d39d.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadBroadcast/e6d39d.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadBroadcast/e6d948.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadBroadcast/e6d948.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/var/quadBroadcast/e6d948.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadBroadcast/e6d948.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadBroadcast/e7c301.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadBroadcast/e7c301.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/var/quadBroadcast/e7c301.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadBroadcast/e7c301.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadBroadcast/ef7d5d.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadBroadcast/ef7d5d.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/var/quadBroadcast/ef7d5d.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadBroadcast/ef7d5d.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadBroadcast/f1e8ec.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadBroadcast/f1e8ec.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/var/quadBroadcast/f1e8ec.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadBroadcast/f1e8ec.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadBroadcast/f5f923.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadBroadcast/f5f923.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/var/quadBroadcast/f5f923.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadBroadcast/f5f923.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadBroadcast/f60448.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadBroadcast/f60448.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/var/quadBroadcast/f60448.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadBroadcast/f60448.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadBroadcast/f9d579.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadBroadcast/f9d579.wgsl.expected.glsl
index cb6cd62..21f1759 100644
--- a/test/tint/builtins/gen/var/quadBroadcast/f9d579.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadBroadcast/f9d579.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadSwapDiagonal/15ac75.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadSwapDiagonal/15ac75.wgsl.expected.glsl
index 43f77fb..21f1759 100644
--- a/test/tint/builtins/gen/var/quadSwapDiagonal/15ac75.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadSwapDiagonal/15ac75.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapDiagonal
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadSwapDiagonal/2be5e7.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadSwapDiagonal/2be5e7.wgsl.expected.glsl
index 43f77fb..21f1759 100644
--- a/test/tint/builtins/gen/var/quadSwapDiagonal/2be5e7.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadSwapDiagonal/2be5e7.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapDiagonal
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadSwapDiagonal/331804.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadSwapDiagonal/331804.wgsl.expected.glsl
index 43f77fb..21f1759 100644
--- a/test/tint/builtins/gen/var/quadSwapDiagonal/331804.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadSwapDiagonal/331804.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapDiagonal
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadSwapDiagonal/348173.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadSwapDiagonal/348173.wgsl.expected.glsl
index 43f77fb..21f1759 100644
--- a/test/tint/builtins/gen/var/quadSwapDiagonal/348173.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadSwapDiagonal/348173.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapDiagonal
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadSwapDiagonal/486196.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadSwapDiagonal/486196.wgsl.expected.glsl
index 43f77fb..21f1759 100644
--- a/test/tint/builtins/gen/var/quadSwapDiagonal/486196.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadSwapDiagonal/486196.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapDiagonal
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadSwapDiagonal/730e40.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadSwapDiagonal/730e40.wgsl.expected.glsl
index 43f77fb..21f1759 100644
--- a/test/tint/builtins/gen/var/quadSwapDiagonal/730e40.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadSwapDiagonal/730e40.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapDiagonal
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadSwapDiagonal/8077c8.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadSwapDiagonal/8077c8.wgsl.expected.glsl
index 43f77fb..21f1759 100644
--- a/test/tint/builtins/gen/var/quadSwapDiagonal/8077c8.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadSwapDiagonal/8077c8.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapDiagonal
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadSwapDiagonal/856536.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadSwapDiagonal/856536.wgsl.expected.glsl
index 43f77fb..21f1759 100644
--- a/test/tint/builtins/gen/var/quadSwapDiagonal/856536.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadSwapDiagonal/856536.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapDiagonal
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadSwapDiagonal/9ccb38.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadSwapDiagonal/9ccb38.wgsl.expected.glsl
index 43f77fb..21f1759 100644
--- a/test/tint/builtins/gen/var/quadSwapDiagonal/9ccb38.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadSwapDiagonal/9ccb38.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapDiagonal
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadSwapDiagonal/a090b0.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadSwapDiagonal/a090b0.wgsl.expected.glsl
index 43f77fb..21f1759 100644
--- a/test/tint/builtins/gen/var/quadSwapDiagonal/a090b0.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadSwapDiagonal/a090b0.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapDiagonal
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadSwapDiagonal/a665b1.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadSwapDiagonal/a665b1.wgsl.expected.glsl
index 43f77fb..21f1759 100644
--- a/test/tint/builtins/gen/var/quadSwapDiagonal/a665b1.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadSwapDiagonal/a665b1.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapDiagonal
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadSwapDiagonal/a82e1d.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadSwapDiagonal/a82e1d.wgsl.expected.glsl
index 43f77fb..21f1759 100644
--- a/test/tint/builtins/gen/var/quadSwapDiagonal/a82e1d.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadSwapDiagonal/a82e1d.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapDiagonal
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadSwapDiagonal/af19a5.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadSwapDiagonal/af19a5.wgsl.expected.glsl
index 43f77fb..21f1759 100644
--- a/test/tint/builtins/gen/var/quadSwapDiagonal/af19a5.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadSwapDiagonal/af19a5.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapDiagonal
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadSwapDiagonal/b905fc.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadSwapDiagonal/b905fc.wgsl.expected.glsl
index 43f77fb..21f1759 100644
--- a/test/tint/builtins/gen/var/quadSwapDiagonal/b905fc.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadSwapDiagonal/b905fc.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapDiagonal
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadSwapDiagonal/c31636.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadSwapDiagonal/c31636.wgsl.expected.glsl
index 43f77fb..21f1759 100644
--- a/test/tint/builtins/gen/var/quadSwapDiagonal/c31636.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadSwapDiagonal/c31636.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapDiagonal
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadSwapDiagonal/e4bec8.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadSwapDiagonal/e4bec8.wgsl.expected.glsl
index 43f77fb..21f1759 100644
--- a/test/tint/builtins/gen/var/quadSwapDiagonal/e4bec8.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadSwapDiagonal/e4bec8.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapDiagonal
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadSwapX/02834c.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadSwapX/02834c.wgsl.expected.glsl
index 2203d7f..21f1759 100644
--- a/test/tint/builtins/gen/var/quadSwapX/02834c.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadSwapX/02834c.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapX
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadSwapX/053f3b.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadSwapX/053f3b.wgsl.expected.glsl
index 2203d7f..21f1759 100644
--- a/test/tint/builtins/gen/var/quadSwapX/053f3b.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadSwapX/053f3b.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapX
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadSwapX/07f1fc.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadSwapX/07f1fc.wgsl.expected.glsl
index 2203d7f..21f1759 100644
--- a/test/tint/builtins/gen/var/quadSwapX/07f1fc.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadSwapX/07f1fc.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapX
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadSwapX/150d6f.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadSwapX/150d6f.wgsl.expected.glsl
index 2203d7f..21f1759 100644
--- a/test/tint/builtins/gen/var/quadSwapX/150d6f.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadSwapX/150d6f.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapX
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadSwapX/19f8ce.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadSwapX/19f8ce.wgsl.expected.glsl
index 2203d7f..21f1759 100644
--- a/test/tint/builtins/gen/var/quadSwapX/19f8ce.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadSwapX/19f8ce.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapX
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadSwapX/1e1086.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadSwapX/1e1086.wgsl.expected.glsl
index 2203d7f..21f1759 100644
--- a/test/tint/builtins/gen/var/quadSwapX/1e1086.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadSwapX/1e1086.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapX
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadSwapX/69af6a.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadSwapX/69af6a.wgsl.expected.glsl
index 2203d7f..21f1759 100644
--- a/test/tint/builtins/gen/var/quadSwapX/69af6a.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadSwapX/69af6a.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapX
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadSwapX/8203ad.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadSwapX/8203ad.wgsl.expected.glsl
index 2203d7f..21f1759 100644
--- a/test/tint/builtins/gen/var/quadSwapX/8203ad.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadSwapX/8203ad.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapX
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadSwapX/879738.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadSwapX/879738.wgsl.expected.glsl
index 2203d7f..21f1759 100644
--- a/test/tint/builtins/gen/var/quadSwapX/879738.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadSwapX/879738.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapX
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadSwapX/9bea80.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadSwapX/9bea80.wgsl.expected.glsl
index 2203d7f..21f1759 100644
--- a/test/tint/builtins/gen/var/quadSwapX/9bea80.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadSwapX/9bea80.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapX
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadSwapX/a4e103.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadSwapX/a4e103.wgsl.expected.glsl
index 2203d7f..21f1759 100644
--- a/test/tint/builtins/gen/var/quadSwapX/a4e103.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadSwapX/a4e103.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapX
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadSwapX/b1a5fe.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadSwapX/b1a5fe.wgsl.expected.glsl
index 2203d7f..21f1759 100644
--- a/test/tint/builtins/gen/var/quadSwapX/b1a5fe.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadSwapX/b1a5fe.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapX
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadSwapX/bc2013.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadSwapX/bc2013.wgsl.expected.glsl
index 2203d7f..21f1759 100644
--- a/test/tint/builtins/gen/var/quadSwapX/bc2013.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadSwapX/bc2013.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapX
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadSwapX/bddb9f.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadSwapX/bddb9f.wgsl.expected.glsl
index 2203d7f..21f1759 100644
--- a/test/tint/builtins/gen/var/quadSwapX/bddb9f.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadSwapX/bddb9f.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapX
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadSwapX/d60cec.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadSwapX/d60cec.wgsl.expected.glsl
index 2203d7f..21f1759 100644
--- a/test/tint/builtins/gen/var/quadSwapX/d60cec.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadSwapX/d60cec.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapX
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadSwapX/edfa1f.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadSwapX/edfa1f.wgsl.expected.glsl
index 2203d7f..21f1759 100644
--- a/test/tint/builtins/gen/var/quadSwapX/edfa1f.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadSwapX/edfa1f.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapX
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadSwapY/06a67c.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadSwapY/06a67c.wgsl.expected.glsl
index e9be819..21f1759 100644
--- a/test/tint/builtins/gen/var/quadSwapY/06a67c.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadSwapY/06a67c.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapY
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadSwapY/0c4938.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadSwapY/0c4938.wgsl.expected.glsl
index e9be819..21f1759 100644
--- a/test/tint/builtins/gen/var/quadSwapY/0c4938.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadSwapY/0c4938.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapY
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadSwapY/0d05a8.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadSwapY/0d05a8.wgsl.expected.glsl
index e9be819..21f1759 100644
--- a/test/tint/builtins/gen/var/quadSwapY/0d05a8.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadSwapY/0d05a8.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapY
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadSwapY/14bb9a.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadSwapY/14bb9a.wgsl.expected.glsl
index e9be819..21f1759 100644
--- a/test/tint/builtins/gen/var/quadSwapY/14bb9a.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadSwapY/14bb9a.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapY
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadSwapY/1f1a06.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadSwapY/1f1a06.wgsl.expected.glsl
index e9be819..21f1759 100644
--- a/test/tint/builtins/gen/var/quadSwapY/1f1a06.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadSwapY/1f1a06.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapY
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadSwapY/264908.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadSwapY/264908.wgsl.expected.glsl
index e9be819..21f1759 100644
--- a/test/tint/builtins/gen/var/quadSwapY/264908.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadSwapY/264908.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapY
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadSwapY/5b2e67.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadSwapY/5b2e67.wgsl.expected.glsl
index e9be819..21f1759 100644
--- a/test/tint/builtins/gen/var/quadSwapY/5b2e67.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadSwapY/5b2e67.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapY
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadSwapY/6f6bc9.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadSwapY/6f6bc9.wgsl.expected.glsl
index e9be819..21f1759 100644
--- a/test/tint/builtins/gen/var/quadSwapY/6f6bc9.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadSwapY/6f6bc9.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapY
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadSwapY/9277e9.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadSwapY/9277e9.wgsl.expected.glsl
index e9be819..21f1759 100644
--- a/test/tint/builtins/gen/var/quadSwapY/9277e9.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadSwapY/9277e9.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapY
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadSwapY/94ab6d.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadSwapY/94ab6d.wgsl.expected.glsl
index e9be819..21f1759 100644
--- a/test/tint/builtins/gen/var/quadSwapY/94ab6d.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadSwapY/94ab6d.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapY
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadSwapY/a27e1c.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadSwapY/a27e1c.wgsl.expected.glsl
index e9be819..21f1759 100644
--- a/test/tint/builtins/gen/var/quadSwapY/a27e1c.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadSwapY/a27e1c.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapY
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadSwapY/a50fcb.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadSwapY/a50fcb.wgsl.expected.glsl
index e9be819..21f1759 100644
--- a/test/tint/builtins/gen/var/quadSwapY/a50fcb.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadSwapY/a50fcb.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapY
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadSwapY/b9d9e7.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadSwapY/b9d9e7.wgsl.expected.glsl
index e9be819..21f1759 100644
--- a/test/tint/builtins/gen/var/quadSwapY/b9d9e7.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadSwapY/b9d9e7.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapY
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadSwapY/bb697b.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadSwapY/bb697b.wgsl.expected.glsl
index e9be819..21f1759 100644
--- a/test/tint/builtins/gen/var/quadSwapY/bb697b.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadSwapY/bb697b.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapY
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadSwapY/be4e72.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadSwapY/be4e72.wgsl.expected.glsl
index e9be819..21f1759 100644
--- a/test/tint/builtins/gen/var/quadSwapY/be4e72.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadSwapY/be4e72.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapY
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/quadSwapY/d1ab4d.wgsl.expected.glsl b/test/tint/builtins/gen/var/quadSwapY/d1ab4d.wgsl.expected.glsl
index e9be819..21f1759 100644
--- a/test/tint/builtins/gen/var/quadSwapY/d1ab4d.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/quadSwapY/d1ab4d.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: quadSwapY
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupAdd/0dd12a.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupAdd/0dd12a.wgsl.expected.glsl
index 276d51e..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupAdd/0dd12a.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupAdd/0dd12a.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupAdd/1280c8.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupAdd/1280c8.wgsl.expected.glsl
index 276d51e..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupAdd/1280c8.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupAdd/1280c8.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupAdd/1eb429.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupAdd/1eb429.wgsl.expected.glsl
index 276d51e..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupAdd/1eb429.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupAdd/1eb429.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupAdd/225207.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupAdd/225207.wgsl.expected.glsl
index 276d51e..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupAdd/225207.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupAdd/225207.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupAdd/22d041.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupAdd/22d041.wgsl.expected.glsl
index 276d51e..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupAdd/22d041.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupAdd/22d041.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupAdd/28db2c.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupAdd/28db2c.wgsl.expected.glsl
index 276d51e..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupAdd/28db2c.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupAdd/28db2c.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupAdd/2ab40a.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupAdd/2ab40a.wgsl.expected.glsl
index 276d51e..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupAdd/2ab40a.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupAdd/2ab40a.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupAdd/3854ae.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupAdd/3854ae.wgsl.expected.glsl
index 276d51e..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupAdd/3854ae.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupAdd/3854ae.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupAdd/6587ff.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupAdd/6587ff.wgsl.expected.glsl
index 276d51e..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupAdd/6587ff.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupAdd/6587ff.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupAdd/7d1215.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupAdd/7d1215.wgsl.expected.glsl
index 276d51e..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupAdd/7d1215.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupAdd/7d1215.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupAdd/8f4c15.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupAdd/8f4c15.wgsl.expected.glsl
index 276d51e..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupAdd/8f4c15.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupAdd/8f4c15.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupAdd/b61df7.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupAdd/b61df7.wgsl.expected.glsl
index 276d51e..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupAdd/b61df7.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupAdd/b61df7.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupAdd/ba53f9.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupAdd/ba53f9.wgsl.expected.glsl
index 276d51e..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupAdd/ba53f9.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupAdd/ba53f9.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupAdd/cae1ed.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupAdd/cae1ed.wgsl.expected.glsl
index 276d51e..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupAdd/cae1ed.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupAdd/cae1ed.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupAdd/dcf73f.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupAdd/dcf73f.wgsl.expected.glsl
index 276d51e..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupAdd/dcf73f.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupAdd/dcf73f.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupAdd/fbc357.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupAdd/fbc357.wgsl.expected.glsl
index 276d51e..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupAdd/fbc357.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupAdd/fbc357.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupAll/c962bd.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupAll/c962bd.wgsl.expected.glsl
index 9f4f1ce..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupAll/c962bd.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupAll/c962bd.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupAll
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupAnd/1877b3.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupAnd/1877b3.wgsl.expected.glsl
index 5a3ec60..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupAnd/1877b3.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupAnd/1877b3.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupAnd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupAnd/376802.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupAnd/376802.wgsl.expected.glsl
index 5a3ec60..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupAnd/376802.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupAnd/376802.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupAnd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupAnd/4adc72.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupAnd/4adc72.wgsl.expected.glsl
index 5a3ec60..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupAnd/4adc72.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupAnd/4adc72.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupAnd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupAnd/4df632.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupAnd/4df632.wgsl.expected.glsl
index 5a3ec60..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupAnd/4df632.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupAnd/4df632.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupAnd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupAnd/97655b.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupAnd/97655b.wgsl.expected.glsl
index 5a3ec60..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupAnd/97655b.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupAnd/97655b.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupAnd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupAnd/ad0cd3.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupAnd/ad0cd3.wgsl.expected.glsl
index 5a3ec60..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupAnd/ad0cd3.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupAnd/ad0cd3.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupAnd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupAnd/c6fc92.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupAnd/c6fc92.wgsl.expected.glsl
index 5a3ec60..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupAnd/c6fc92.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupAnd/c6fc92.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupAnd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupAnd/d2c9a6.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupAnd/d2c9a6.wgsl.expected.glsl
index 5a3ec60..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupAnd/d2c9a6.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupAnd/d2c9a6.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupAnd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupAny/cddda0.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupAny/cddda0.wgsl.expected.glsl
index ad72778..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupAny/cddda0.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupAny/cddda0.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupAny
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupBallot/1a8251.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupBallot/1a8251.wgsl.expected.glsl
index a63dd5d..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupBallot/1a8251.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupBallot/1a8251.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBallot
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupBroadcast/02f329.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupBroadcast/02f329.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupBroadcast/02f329.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupBroadcast/02f329.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupBroadcast/07e2d8.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupBroadcast/07e2d8.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupBroadcast/07e2d8.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupBroadcast/07e2d8.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupBroadcast/08beca.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupBroadcast/08beca.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupBroadcast/08beca.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupBroadcast/08beca.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupBroadcast/0f44e2.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupBroadcast/0f44e2.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupBroadcast/0f44e2.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupBroadcast/0f44e2.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupBroadcast/13f36c.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupBroadcast/13f36c.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupBroadcast/13f36c.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupBroadcast/13f36c.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupBroadcast/1d79c7.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupBroadcast/1d79c7.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupBroadcast/1d79c7.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupBroadcast/1d79c7.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupBroadcast/279027.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupBroadcast/279027.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupBroadcast/279027.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupBroadcast/279027.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupBroadcast/2b59c9.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupBroadcast/2b59c9.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupBroadcast/2b59c9.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupBroadcast/2b59c9.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupBroadcast/34ae44.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupBroadcast/34ae44.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupBroadcast/34ae44.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupBroadcast/34ae44.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupBroadcast/34fa3d.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupBroadcast/34fa3d.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupBroadcast/34fa3d.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupBroadcast/34fa3d.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupBroadcast/3e6879.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupBroadcast/3e6879.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupBroadcast/3e6879.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupBroadcast/3e6879.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupBroadcast/41e5d7.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupBroadcast/41e5d7.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupBroadcast/41e5d7.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupBroadcast/41e5d7.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupBroadcast/49de94.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupBroadcast/49de94.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupBroadcast/49de94.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupBroadcast/49de94.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupBroadcast/4a4334.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupBroadcast/4a4334.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupBroadcast/4a4334.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupBroadcast/4a4334.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupBroadcast/5196c8.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupBroadcast/5196c8.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupBroadcast/5196c8.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupBroadcast/5196c8.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupBroadcast/6290a2.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupBroadcast/6290a2.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupBroadcast/6290a2.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupBroadcast/6290a2.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupBroadcast/719ad6.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupBroadcast/719ad6.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupBroadcast/719ad6.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupBroadcast/719ad6.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupBroadcast/727609.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupBroadcast/727609.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupBroadcast/727609.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupBroadcast/727609.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupBroadcast/838c78.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupBroadcast/838c78.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupBroadcast/838c78.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupBroadcast/838c78.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupBroadcast/867093.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupBroadcast/867093.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupBroadcast/867093.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupBroadcast/867093.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupBroadcast/8855b2.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupBroadcast/8855b2.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupBroadcast/8855b2.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupBroadcast/8855b2.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupBroadcast/912ff5.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupBroadcast/912ff5.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupBroadcast/912ff5.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupBroadcast/912ff5.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupBroadcast/9ccdca.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupBroadcast/9ccdca.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupBroadcast/9ccdca.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupBroadcast/9ccdca.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupBroadcast/a279d7.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupBroadcast/a279d7.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupBroadcast/a279d7.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupBroadcast/a279d7.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupBroadcast/a3b3e5.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupBroadcast/a3b3e5.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupBroadcast/a3b3e5.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupBroadcast/a3b3e5.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupBroadcast/b7e93b.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupBroadcast/b7e93b.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupBroadcast/b7e93b.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupBroadcast/b7e93b.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupBroadcast/c36fe1.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupBroadcast/c36fe1.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupBroadcast/c36fe1.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupBroadcast/c36fe1.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupBroadcast/cd7aa1.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupBroadcast/cd7aa1.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupBroadcast/cd7aa1.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupBroadcast/cd7aa1.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupBroadcast/e275c8.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupBroadcast/e275c8.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupBroadcast/e275c8.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupBroadcast/e275c8.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupBroadcast/e4dd1a.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupBroadcast/e4dd1a.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupBroadcast/e4dd1a.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupBroadcast/e4dd1a.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupBroadcast/f637f9.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupBroadcast/f637f9.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupBroadcast/f637f9.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupBroadcast/f637f9.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupBroadcast/fa6810.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupBroadcast/fa6810.wgsl.expected.glsl
index ab9a610..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupBroadcast/fa6810.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupBroadcast/fa6810.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcast
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupBroadcastFirst/0538e1.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupBroadcastFirst/0538e1.wgsl.expected.glsl
index d86f60f..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupBroadcastFirst/0538e1.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupBroadcastFirst/0538e1.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcastFirst
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupBroadcastFirst/0e58ec.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupBroadcastFirst/0e58ec.wgsl.expected.glsl
index d86f60f..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupBroadcastFirst/0e58ec.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupBroadcastFirst/0e58ec.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcastFirst
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupBroadcastFirst/151e52.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupBroadcastFirst/151e52.wgsl.expected.glsl
index d86f60f..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupBroadcastFirst/151e52.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupBroadcastFirst/151e52.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcastFirst
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupBroadcastFirst/1d9530.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupBroadcastFirst/1d9530.wgsl.expected.glsl
index d86f60f..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupBroadcastFirst/1d9530.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupBroadcastFirst/1d9530.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcastFirst
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupBroadcastFirst/5c6962.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupBroadcastFirst/5c6962.wgsl.expected.glsl
index d86f60f..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupBroadcastFirst/5c6962.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupBroadcastFirst/5c6962.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcastFirst
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupBroadcastFirst/5e5b6f.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupBroadcastFirst/5e5b6f.wgsl.expected.glsl
index d86f60f..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupBroadcastFirst/5e5b6f.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupBroadcastFirst/5e5b6f.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcastFirst
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupBroadcastFirst/612d6f.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupBroadcastFirst/612d6f.wgsl.expected.glsl
index d86f60f..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupBroadcastFirst/612d6f.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupBroadcastFirst/612d6f.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcastFirst
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupBroadcastFirst/61f177.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupBroadcastFirst/61f177.wgsl.expected.glsl
index d86f60f..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupBroadcastFirst/61f177.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupBroadcastFirst/61f177.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcastFirst
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupBroadcastFirst/6945f6.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupBroadcastFirst/6945f6.wgsl.expected.glsl
index d86f60f..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupBroadcastFirst/6945f6.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupBroadcastFirst/6945f6.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcastFirst
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupBroadcastFirst/705aad.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupBroadcastFirst/705aad.wgsl.expected.glsl
index d86f60f..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupBroadcastFirst/705aad.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupBroadcastFirst/705aad.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcastFirst
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupBroadcastFirst/85b351.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupBroadcastFirst/85b351.wgsl.expected.glsl
index d86f60f..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupBroadcastFirst/85b351.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupBroadcastFirst/85b351.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcastFirst
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupBroadcastFirst/8ae580.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupBroadcastFirst/8ae580.wgsl.expected.glsl
index d86f60f..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupBroadcastFirst/8ae580.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupBroadcastFirst/8ae580.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcastFirst
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupBroadcastFirst/9a1bdc.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupBroadcastFirst/9a1bdc.wgsl.expected.glsl
index d86f60f..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupBroadcastFirst/9a1bdc.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupBroadcastFirst/9a1bdc.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcastFirst
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupBroadcastFirst/9dccee.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupBroadcastFirst/9dccee.wgsl.expected.glsl
index d86f60f..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupBroadcastFirst/9dccee.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupBroadcastFirst/9dccee.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcastFirst
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupBroadcastFirst/a11307.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupBroadcastFirst/a11307.wgsl.expected.glsl
index d86f60f..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupBroadcastFirst/a11307.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupBroadcastFirst/a11307.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcastFirst
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupBroadcastFirst/e820d4.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupBroadcastFirst/e820d4.wgsl.expected.glsl
index d86f60f..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupBroadcastFirst/e820d4.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupBroadcastFirst/e820d4.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupBroadcastFirst
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupElect/3943d6.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupElect/3943d6.wgsl.expected.glsl
index 2b9a434..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupElect/3943d6.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupElect/3943d6.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupElect
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupExclusiveAdd/01de08.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupExclusiveAdd/01de08.wgsl.expected.glsl
index 0814297..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupExclusiveAdd/01de08.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupExclusiveAdd/01de08.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupExclusiveAdd/0ff95a.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupExclusiveAdd/0ff95a.wgsl.expected.glsl
index 0814297..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupExclusiveAdd/0ff95a.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupExclusiveAdd/0ff95a.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupExclusiveAdd/406ab4.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupExclusiveAdd/406ab4.wgsl.expected.glsl
index 0814297..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupExclusiveAdd/406ab4.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupExclusiveAdd/406ab4.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupExclusiveAdd/41cfde.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupExclusiveAdd/41cfde.wgsl.expected.glsl
index 0814297..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupExclusiveAdd/41cfde.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupExclusiveAdd/41cfde.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupExclusiveAdd/42684c.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupExclusiveAdd/42684c.wgsl.expected.glsl
index 0814297..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupExclusiveAdd/42684c.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupExclusiveAdd/42684c.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupExclusiveAdd/48acea.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupExclusiveAdd/48acea.wgsl.expected.glsl
index 0814297..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupExclusiveAdd/48acea.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupExclusiveAdd/48acea.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupExclusiveAdd/4a1568.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupExclusiveAdd/4a1568.wgsl.expected.glsl
index 0814297..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupExclusiveAdd/4a1568.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupExclusiveAdd/4a1568.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupExclusiveAdd/4c8024.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupExclusiveAdd/4c8024.wgsl.expected.glsl
index 0814297..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupExclusiveAdd/4c8024.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupExclusiveAdd/4c8024.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupExclusiveAdd/71ad0f.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupExclusiveAdd/71ad0f.wgsl.expected.glsl
index 0814297..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupExclusiveAdd/71ad0f.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupExclusiveAdd/71ad0f.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupExclusiveAdd/95e984.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupExclusiveAdd/95e984.wgsl.expected.glsl
index 0814297..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupExclusiveAdd/95e984.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupExclusiveAdd/95e984.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupExclusiveAdd/967e38.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupExclusiveAdd/967e38.wgsl.expected.glsl
index 0814297..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupExclusiveAdd/967e38.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupExclusiveAdd/967e38.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupExclusiveAdd/b0c261.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupExclusiveAdd/b0c261.wgsl.expected.glsl
index 0814297..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupExclusiveAdd/b0c261.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupExclusiveAdd/b0c261.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupExclusiveAdd/c08160.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupExclusiveAdd/c08160.wgsl.expected.glsl
index 0814297..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupExclusiveAdd/c08160.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupExclusiveAdd/c08160.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupExclusiveAdd/e58e23.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupExclusiveAdd/e58e23.wgsl.expected.glsl
index 0814297..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupExclusiveAdd/e58e23.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupExclusiveAdd/e58e23.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupExclusiveAdd/ec300f.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupExclusiveAdd/ec300f.wgsl.expected.glsl
index 0814297..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupExclusiveAdd/ec300f.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupExclusiveAdd/ec300f.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupExclusiveAdd/f0f712.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupExclusiveAdd/f0f712.wgsl.expected.glsl
index 0814297..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupExclusiveAdd/f0f712.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupExclusiveAdd/f0f712.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupExclusiveMul/000b92.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupExclusiveMul/000b92.wgsl.expected.glsl
index 6201b2b..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupExclusiveMul/000b92.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupExclusiveMul/000b92.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupExclusiveMul/019660.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupExclusiveMul/019660.wgsl.expected.glsl
index 6201b2b..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupExclusiveMul/019660.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupExclusiveMul/019660.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupExclusiveMul/0a04d5.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupExclusiveMul/0a04d5.wgsl.expected.glsl
index 6201b2b..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupExclusiveMul/0a04d5.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupExclusiveMul/0a04d5.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupExclusiveMul/13ba26.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupExclusiveMul/13ba26.wgsl.expected.glsl
index 6201b2b..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupExclusiveMul/13ba26.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupExclusiveMul/13ba26.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupExclusiveMul/25d1b9.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupExclusiveMul/25d1b9.wgsl.expected.glsl
index 6201b2b..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupExclusiveMul/25d1b9.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupExclusiveMul/25d1b9.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupExclusiveMul/4525a3.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupExclusiveMul/4525a3.wgsl.expected.glsl
index 6201b2b..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupExclusiveMul/4525a3.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupExclusiveMul/4525a3.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupExclusiveMul/6f431e.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupExclusiveMul/6f431e.wgsl.expected.glsl
index 6201b2b..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupExclusiveMul/6f431e.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupExclusiveMul/6f431e.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupExclusiveMul/7b5f57.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupExclusiveMul/7b5f57.wgsl.expected.glsl
index 6201b2b..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupExclusiveMul/7b5f57.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupExclusiveMul/7b5f57.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupExclusiveMul/87f23e.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupExclusiveMul/87f23e.wgsl.expected.glsl
index 6201b2b..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupExclusiveMul/87f23e.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupExclusiveMul/87f23e.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupExclusiveMul/98b2e4.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupExclusiveMul/98b2e4.wgsl.expected.glsl
index 6201b2b..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupExclusiveMul/98b2e4.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupExclusiveMul/98b2e4.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupExclusiveMul/a07956.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupExclusiveMul/a07956.wgsl.expected.glsl
index 6201b2b..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupExclusiveMul/a07956.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupExclusiveMul/a07956.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupExclusiveMul/a23002.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupExclusiveMul/a23002.wgsl.expected.glsl
index 6201b2b..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupExclusiveMul/a23002.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupExclusiveMul/a23002.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupExclusiveMul/d1d490.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupExclusiveMul/d1d490.wgsl.expected.glsl
index 6201b2b..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupExclusiveMul/d1d490.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupExclusiveMul/d1d490.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupExclusiveMul/dc51f8.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupExclusiveMul/dc51f8.wgsl.expected.glsl
index 6201b2b..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupExclusiveMul/dc51f8.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupExclusiveMul/dc51f8.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupExclusiveMul/e88d1c.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupExclusiveMul/e88d1c.wgsl.expected.glsl
index 6201b2b..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupExclusiveMul/e88d1c.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupExclusiveMul/e88d1c.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupExclusiveMul/f039f4.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupExclusiveMul/f039f4.wgsl.expected.glsl
index 6201b2b..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupExclusiveMul/f039f4.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupExclusiveMul/f039f4.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupExclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupInclusiveAdd/1b7680.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupInclusiveAdd/1b7680.wgsl.expected.glsl
index 61225ce..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupInclusiveAdd/1b7680.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupInclusiveAdd/1b7680.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupInclusiveAdd/367caa.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupInclusiveAdd/367caa.wgsl.expected.glsl
index 61225ce..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupInclusiveAdd/367caa.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupInclusiveAdd/367caa.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupInclusiveAdd/58ea3d.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupInclusiveAdd/58ea3d.wgsl.expected.glsl
index 61225ce..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupInclusiveAdd/58ea3d.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupInclusiveAdd/58ea3d.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupInclusiveAdd/7ed675.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupInclusiveAdd/7ed675.wgsl.expected.glsl
index 61225ce..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupInclusiveAdd/7ed675.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupInclusiveAdd/7ed675.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupInclusiveAdd/7f2040.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupInclusiveAdd/7f2040.wgsl.expected.glsl
index 61225ce..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupInclusiveAdd/7f2040.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupInclusiveAdd/7f2040.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupInclusiveAdd/8bbe75.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupInclusiveAdd/8bbe75.wgsl.expected.glsl
index 61225ce..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupInclusiveAdd/8bbe75.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupInclusiveAdd/8bbe75.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupInclusiveAdd/9bbcb0.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupInclusiveAdd/9bbcb0.wgsl.expected.glsl
index 61225ce..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupInclusiveAdd/9bbcb0.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupInclusiveAdd/9bbcb0.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupInclusiveAdd/a7c60f.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupInclusiveAdd/a7c60f.wgsl.expected.glsl
index 61225ce..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupInclusiveAdd/a7c60f.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupInclusiveAdd/a7c60f.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupInclusiveAdd/b787ce.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupInclusiveAdd/b787ce.wgsl.expected.glsl
index 61225ce..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupInclusiveAdd/b787ce.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupInclusiveAdd/b787ce.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupInclusiveAdd/c816b2.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupInclusiveAdd/c816b2.wgsl.expected.glsl
index 61225ce..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupInclusiveAdd/c816b2.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupInclusiveAdd/c816b2.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupInclusiveAdd/dde86f.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupInclusiveAdd/dde86f.wgsl.expected.glsl
index 61225ce..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupInclusiveAdd/dde86f.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupInclusiveAdd/dde86f.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupInclusiveAdd/df692b.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupInclusiveAdd/df692b.wgsl.expected.glsl
index 61225ce..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupInclusiveAdd/df692b.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupInclusiveAdd/df692b.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupInclusiveAdd/e18ebb.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupInclusiveAdd/e18ebb.wgsl.expected.glsl
index 61225ce..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupInclusiveAdd/e18ebb.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupInclusiveAdd/e18ebb.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupInclusiveAdd/f43b30.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupInclusiveAdd/f43b30.wgsl.expected.glsl
index 61225ce..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupInclusiveAdd/f43b30.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupInclusiveAdd/f43b30.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupInclusiveAdd/f8906d.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupInclusiveAdd/f8906d.wgsl.expected.glsl
index 61225ce..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupInclusiveAdd/f8906d.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupInclusiveAdd/f8906d.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupInclusiveAdd/fabbde.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupInclusiveAdd/fabbde.wgsl.expected.glsl
index 61225ce..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupInclusiveAdd/fabbde.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupInclusiveAdd/fabbde.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveAdd
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupInclusiveMul/01dc9b.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupInclusiveMul/01dc9b.wgsl.expected.glsl
index 7479235..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupInclusiveMul/01dc9b.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupInclusiveMul/01dc9b.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupInclusiveMul/10a1ef.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupInclusiveMul/10a1ef.wgsl.expected.glsl
index 7479235..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupInclusiveMul/10a1ef.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupInclusiveMul/10a1ef.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupInclusiveMul/1cdf5c.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupInclusiveMul/1cdf5c.wgsl.expected.glsl
index 7479235..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupInclusiveMul/1cdf5c.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupInclusiveMul/1cdf5c.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupInclusiveMul/2a7ec7.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupInclusiveMul/2a7ec7.wgsl.expected.glsl
index 7479235..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupInclusiveMul/2a7ec7.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupInclusiveMul/2a7ec7.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupInclusiveMul/2f8076.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupInclusiveMul/2f8076.wgsl.expected.glsl
index 7479235..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupInclusiveMul/2f8076.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupInclusiveMul/2f8076.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupInclusiveMul/359176.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupInclusiveMul/359176.wgsl.expected.glsl
index 7479235..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupInclusiveMul/359176.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupInclusiveMul/359176.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupInclusiveMul/4430d5.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupInclusiveMul/4430d5.wgsl.expected.glsl
index 7479235..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupInclusiveMul/4430d5.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupInclusiveMul/4430d5.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupInclusiveMul/517979.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupInclusiveMul/517979.wgsl.expected.glsl
index 7479235..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupInclusiveMul/517979.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupInclusiveMul/517979.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupInclusiveMul/69326e.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupInclusiveMul/69326e.wgsl.expected.glsl
index 7479235..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupInclusiveMul/69326e.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupInclusiveMul/69326e.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupInclusiveMul/769def.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupInclusiveMul/769def.wgsl.expected.glsl
index 7479235..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupInclusiveMul/769def.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupInclusiveMul/769def.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupInclusiveMul/7978b8.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupInclusiveMul/7978b8.wgsl.expected.glsl
index 7479235..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupInclusiveMul/7978b8.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupInclusiveMul/7978b8.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupInclusiveMul/89437b.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupInclusiveMul/89437b.wgsl.expected.glsl
index 7479235..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupInclusiveMul/89437b.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupInclusiveMul/89437b.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupInclusiveMul/9a54ec.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupInclusiveMul/9a54ec.wgsl.expected.glsl
index 7479235..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupInclusiveMul/9a54ec.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupInclusiveMul/9a54ec.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupInclusiveMul/ac5df5.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupInclusiveMul/ac5df5.wgsl.expected.glsl
index 7479235..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupInclusiveMul/ac5df5.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupInclusiveMul/ac5df5.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupInclusiveMul/dada1d.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupInclusiveMul/dada1d.wgsl.expected.glsl
index 7479235..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupInclusiveMul/dada1d.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupInclusiveMul/dada1d.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupInclusiveMul/e713f5.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupInclusiveMul/e713f5.wgsl.expected.glsl
index 7479235..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupInclusiveMul/e713f5.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupInclusiveMul/e713f5.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupInclusiveMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupMax/0b0375.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupMax/0b0375.wgsl.expected.glsl
index a57dd1a..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupMax/0b0375.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupMax/0b0375.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMax
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupMax/15ccbf.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupMax/15ccbf.wgsl.expected.glsl
index a57dd1a..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupMax/15ccbf.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupMax/15ccbf.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMax
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupMax/1a1a5f.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupMax/1a1a5f.wgsl.expected.glsl
index a57dd1a..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupMax/1a1a5f.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupMax/1a1a5f.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMax
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupMax/1fc846.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupMax/1fc846.wgsl.expected.glsl
index a57dd1a..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupMax/1fc846.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupMax/1fc846.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMax
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupMax/23f502.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupMax/23f502.wgsl.expected.glsl
index a57dd1a..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupMax/23f502.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupMax/23f502.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMax
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupMax/33e339.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupMax/33e339.wgsl.expected.glsl
index a57dd1a..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupMax/33e339.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupMax/33e339.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMax
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupMax/4ea90e.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupMax/4ea90e.wgsl.expected.glsl
index a57dd1a..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupMax/4ea90e.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupMax/4ea90e.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMax
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupMax/5611a5.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupMax/5611a5.wgsl.expected.glsl
index a57dd1a..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupMax/5611a5.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupMax/5611a5.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMax
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupMax/6c913e.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupMax/6c913e.wgsl.expected.glsl
index a57dd1a..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupMax/6c913e.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupMax/6c913e.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMax
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupMax/7c934c.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupMax/7c934c.wgsl.expected.glsl
index a57dd1a..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupMax/7c934c.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupMax/7c934c.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMax
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupMax/7e81ea.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupMax/7e81ea.wgsl.expected.glsl
index a57dd1a..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupMax/7e81ea.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupMax/7e81ea.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMax
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupMax/932164.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupMax/932164.wgsl.expected.glsl
index a57dd1a..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupMax/932164.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupMax/932164.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMax
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupMax/a3afe3.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupMax/a3afe3.wgsl.expected.glsl
index a57dd1a..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupMax/a3afe3.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupMax/a3afe3.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMax
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupMax/a3d5f7.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupMax/a3d5f7.wgsl.expected.glsl
index a57dd1a..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupMax/a3d5f7.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupMax/a3d5f7.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMax
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupMax/b58cbf.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupMax/b58cbf.wgsl.expected.glsl
index a57dd1a..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupMax/b58cbf.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupMax/b58cbf.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMax
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupMax/b8fb0e.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupMax/b8fb0e.wgsl.expected.glsl
index a57dd1a..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupMax/b8fb0e.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupMax/b8fb0e.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMax
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupMin/030ad6.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupMin/030ad6.wgsl.expected.glsl
index ec7bc74..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupMin/030ad6.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupMin/030ad6.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMin
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupMin/0bc13a.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupMin/0bc13a.wgsl.expected.glsl
index ec7bc74..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupMin/0bc13a.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupMin/0bc13a.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMin
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupMin/1de104.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupMin/1de104.wgsl.expected.glsl
index ec7bc74..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupMin/1de104.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupMin/1de104.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMin
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupMin/2493ab.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupMin/2493ab.wgsl.expected.glsl
index ec7bc74..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupMin/2493ab.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupMin/2493ab.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMin
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupMin/2d8828.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupMin/2d8828.wgsl.expected.glsl
index ec7bc74..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupMin/2d8828.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupMin/2d8828.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMin
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupMin/337a21.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupMin/337a21.wgsl.expected.glsl
index ec7bc74..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupMin/337a21.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupMin/337a21.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMin
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupMin/7def0a.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupMin/7def0a.wgsl.expected.glsl
index ec7bc74..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupMin/7def0a.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupMin/7def0a.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMin
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupMin/82ef23.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupMin/82ef23.wgsl.expected.glsl
index ec7bc74..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupMin/82ef23.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupMin/82ef23.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMin
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupMin/836960.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupMin/836960.wgsl.expected.glsl
index ec7bc74..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupMin/836960.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupMin/836960.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMin
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupMin/8bb8c1.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupMin/8bb8c1.wgsl.expected.glsl
index ec7bc74..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupMin/8bb8c1.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupMin/8bb8c1.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMin
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupMin/8ffadc.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupMin/8ffadc.wgsl.expected.glsl
index ec7bc74..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupMin/8ffadc.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupMin/8ffadc.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMin
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupMin/a96a2e.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupMin/a96a2e.wgsl.expected.glsl
index ec7bc74..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupMin/a96a2e.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupMin/a96a2e.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMin
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupMin/bbd9b0.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupMin/bbd9b0.wgsl.expected.glsl
index ec7bc74..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupMin/bbd9b0.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupMin/bbd9b0.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMin
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupMin/c6da7c.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupMin/c6da7c.wgsl.expected.glsl
index ec7bc74..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupMin/c6da7c.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupMin/c6da7c.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMin
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupMin/cd3b9d.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupMin/cd3b9d.wgsl.expected.glsl
index ec7bc74..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupMin/cd3b9d.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupMin/cd3b9d.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMin
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupMin/d85be6.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupMin/d85be6.wgsl.expected.glsl
index ec7bc74..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupMin/d85be6.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupMin/d85be6.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMin
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupMul/0de9d3.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupMul/0de9d3.wgsl.expected.glsl
index d653005..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupMul/0de9d3.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupMul/0de9d3.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupMul/2941a2.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupMul/2941a2.wgsl.expected.glsl
index d653005..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupMul/2941a2.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupMul/2941a2.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupMul/3fe886.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupMul/3fe886.wgsl.expected.glsl
index d653005..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupMul/3fe886.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupMul/3fe886.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupMul/4f8ee6.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupMul/4f8ee6.wgsl.expected.glsl
index d653005..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupMul/4f8ee6.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupMul/4f8ee6.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupMul/53aee2.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupMul/53aee2.wgsl.expected.glsl
index d653005..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupMul/53aee2.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupMul/53aee2.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupMul/5a8c86.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupMul/5a8c86.wgsl.expected.glsl
index d653005..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupMul/5a8c86.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupMul/5a8c86.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupMul/66c813.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupMul/66c813.wgsl.expected.glsl
index d653005..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupMul/66c813.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupMul/66c813.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupMul/6aaaf3.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupMul/6aaaf3.wgsl.expected.glsl
index d653005..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupMul/6aaaf3.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupMul/6aaaf3.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupMul/93eccd.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupMul/93eccd.wgsl.expected.glsl
index d653005..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupMul/93eccd.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupMul/93eccd.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupMul/d584a2.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupMul/d584a2.wgsl.expected.glsl
index d653005..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupMul/d584a2.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupMul/d584a2.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupMul/dc672a.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupMul/dc672a.wgsl.expected.glsl
index d653005..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupMul/dc672a.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupMul/dc672a.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupMul/dd1333.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupMul/dd1333.wgsl.expected.glsl
index d653005..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupMul/dd1333.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupMul/dd1333.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupMul/f2ac5b.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupMul/f2ac5b.wgsl.expected.glsl
index d653005..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupMul/f2ac5b.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupMul/f2ac5b.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupMul/f78398.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupMul/f78398.wgsl.expected.glsl
index d653005..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupMul/f78398.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupMul/f78398.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupMul/fa781b.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupMul/fa781b.wgsl.expected.glsl
index d653005..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupMul/fa781b.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupMul/fa781b.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupMul/fab258.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupMul/fab258.wgsl.expected.glsl
index d653005..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupMul/fab258.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupMul/fab258.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupMul
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupOr/03343f.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupOr/03343f.wgsl.expected.glsl
index ea6c002..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupOr/03343f.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupOr/03343f.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupOr
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupOr/0bc264.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupOr/0bc264.wgsl.expected.glsl
index ea6c002..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupOr/0bc264.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupOr/0bc264.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupOr
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupOr/3f60e0.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupOr/3f60e0.wgsl.expected.glsl
index ea6c002..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupOr/3f60e0.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupOr/3f60e0.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupOr
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupOr/4d4eb0.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupOr/4d4eb0.wgsl.expected.glsl
index ea6c002..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupOr/4d4eb0.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupOr/4d4eb0.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupOr
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupOr/663a21.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupOr/663a21.wgsl.expected.glsl
index ea6c002..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupOr/663a21.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupOr/663a21.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupOr
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupOr/aa74f7.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupOr/aa74f7.wgsl.expected.glsl
index ea6c002..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupOr/aa74f7.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupOr/aa74f7.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupOr
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupOr/ae58b6.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupOr/ae58b6.wgsl.expected.glsl
index ea6c002..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupOr/ae58b6.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupOr/ae58b6.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupOr
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupOr/f915e3.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupOr/f915e3.wgsl.expected.glsl
index ea6c002..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupOr/f915e3.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupOr/f915e3.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupOr
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffle/030422.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffle/030422.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffle/030422.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffle/030422.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffle/1f664c.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffle/1f664c.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffle/1f664c.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffle/1f664c.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffle/21f083.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffle/21f083.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffle/21f083.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffle/21f083.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffle/2ee993.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffle/2ee993.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffle/2ee993.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffle/2ee993.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffle/323416.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffle/323416.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffle/323416.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffle/323416.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffle/4752bd.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffle/4752bd.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffle/4752bd.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffle/4752bd.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffle/4cbb69.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffle/4cbb69.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffle/4cbb69.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffle/4cbb69.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffle/4f5711.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffle/4f5711.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffle/4f5711.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffle/4f5711.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffle/54f328.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffle/54f328.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffle/54f328.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffle/54f328.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffle/5dfeab.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffle/5dfeab.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffle/5dfeab.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffle/5dfeab.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffle/5ef5a2.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffle/5ef5a2.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffle/5ef5a2.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffle/5ef5a2.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffle/647034.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffle/647034.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffle/647034.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffle/647034.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffle/7ba2d5.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffle/7ba2d5.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffle/7ba2d5.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffle/7ba2d5.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffle/7c5d64.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffle/7c5d64.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffle/7c5d64.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffle/7c5d64.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffle/7d7b1e.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffle/7d7b1e.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffle/7d7b1e.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffle/7d7b1e.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffle/821df9.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffle/821df9.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffle/821df9.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffle/821df9.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffle/824702.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffle/824702.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffle/824702.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffle/824702.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffle/84f261.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffle/84f261.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffle/84f261.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffle/84f261.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffle/85587b.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffle/85587b.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffle/85587b.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffle/85587b.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffle/8890a5.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffle/8890a5.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffle/8890a5.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffle/8890a5.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffle/8bfbcd.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffle/8bfbcd.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffle/8bfbcd.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffle/8bfbcd.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffle/8c3fd2.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffle/8c3fd2.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffle/8c3fd2.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffle/8c3fd2.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffle/aa1d5c.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffle/aa1d5c.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffle/aa1d5c.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffle/aa1d5c.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffle/b0f28d.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffle/b0f28d.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffle/b0f28d.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffle/b0f28d.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffle/b4bbb7.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffle/b4bbb7.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffle/b4bbb7.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffle/b4bbb7.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffle/bbb06c.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffle/bbb06c.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffle/bbb06c.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffle/bbb06c.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffle/d4a772.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffle/d4a772.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffle/d4a772.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffle/d4a772.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffle/d9ff67.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffle/d9ff67.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffle/d9ff67.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffle/d9ff67.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffle/e13c81.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffle/e13c81.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffle/e13c81.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffle/e13c81.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffle/e854d5.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffle/e854d5.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffle/e854d5.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffle/e854d5.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffle/f194f5.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffle/f194f5.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffle/f194f5.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffle/f194f5.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffle/fb4ab9.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffle/fb4ab9.wgsl.expected.glsl
index d498675..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffle/fb4ab9.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffle/fb4ab9.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffle
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffleDown/10eb45.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffleDown/10eb45.wgsl.expected.glsl
index 9fafa38..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffleDown/10eb45.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffleDown/10eb45.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleDown
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffleDown/1b530f.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffleDown/1b530f.wgsl.expected.glsl
index 9fafa38..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffleDown/1b530f.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffleDown/1b530f.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleDown
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffleDown/257ff0.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffleDown/257ff0.wgsl.expected.glsl
index 9fafa38..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffleDown/257ff0.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffleDown/257ff0.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleDown
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffleDown/313d9b.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffleDown/313d9b.wgsl.expected.glsl
index 9fafa38..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffleDown/313d9b.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffleDown/313d9b.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleDown
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffleDown/57b1e8.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffleDown/57b1e8.wgsl.expected.glsl
index 9fafa38..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffleDown/57b1e8.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffleDown/57b1e8.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleDown
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffleDown/5d8b9f.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffleDown/5d8b9f.wgsl.expected.glsl
index 9fafa38..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffleDown/5d8b9f.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffleDown/5d8b9f.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleDown
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffleDown/63fdb0.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffleDown/63fdb0.wgsl.expected.glsl
index 9fafa38..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffleDown/63fdb0.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffleDown/63fdb0.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleDown
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffleDown/642789.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffleDown/642789.wgsl.expected.glsl
index 9fafa38..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffleDown/642789.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffleDown/642789.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleDown
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffleDown/7a0cf5.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffleDown/7a0cf5.wgsl.expected.glsl
index 9fafa38..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffleDown/7a0cf5.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffleDown/7a0cf5.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleDown
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffleDown/7f8886.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffleDown/7f8886.wgsl.expected.glsl
index 9fafa38..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffleDown/7f8886.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffleDown/7f8886.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleDown
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffleDown/9c6714.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffleDown/9c6714.wgsl.expected.glsl
index 9fafa38..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffleDown/9c6714.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffleDown/9c6714.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleDown
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffleDown/b41899.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffleDown/b41899.wgsl.expected.glsl
index 9fafa38..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffleDown/b41899.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffleDown/b41899.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleDown
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffleDown/c9f1c4.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffleDown/c9f1c4.wgsl.expected.glsl
index 9fafa38..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffleDown/c9f1c4.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffleDown/c9f1c4.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleDown
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffleDown/d269eb.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffleDown/d269eb.wgsl.expected.glsl
index 9fafa38..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffleDown/d269eb.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffleDown/d269eb.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleDown
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffleDown/d46304.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffleDown/d46304.wgsl.expected.glsl
index 9fafa38..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffleDown/d46304.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffleDown/d46304.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleDown
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffleDown/d90c2f.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffleDown/d90c2f.wgsl.expected.glsl
index 9fafa38..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffleDown/d90c2f.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffleDown/d90c2f.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleDown
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffleUp/0990cd.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffleUp/0990cd.wgsl.expected.glsl
index d6fd222..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffleUp/0990cd.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffleUp/0990cd.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleUp
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffleUp/1bb93f.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffleUp/1bb93f.wgsl.expected.glsl
index d6fd222..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffleUp/1bb93f.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffleUp/1bb93f.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleUp
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffleUp/23c7ca.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffleUp/23c7ca.wgsl.expected.glsl
index d6fd222..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffleUp/23c7ca.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffleUp/23c7ca.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleUp
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffleUp/3242a6.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffleUp/3242a6.wgsl.expected.glsl
index d6fd222..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffleUp/3242a6.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffleUp/3242a6.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleUp
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffleUp/33d495.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffleUp/33d495.wgsl.expected.glsl
index d6fd222..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffleUp/33d495.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffleUp/33d495.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleUp
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffleUp/3e609f.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffleUp/3e609f.wgsl.expected.glsl
index d6fd222..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffleUp/3e609f.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffleUp/3e609f.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleUp
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffleUp/58de69.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffleUp/58de69.wgsl.expected.glsl
index d6fd222..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffleUp/58de69.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffleUp/58de69.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleUp
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffleUp/868e52.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffleUp/868e52.wgsl.expected.glsl
index d6fd222..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffleUp/868e52.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffleUp/868e52.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleUp
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffleUp/87c9d6.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffleUp/87c9d6.wgsl.expected.glsl
index d6fd222..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffleUp/87c9d6.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffleUp/87c9d6.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleUp
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffleUp/88eb07.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffleUp/88eb07.wgsl.expected.glsl
index d6fd222..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffleUp/88eb07.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffleUp/88eb07.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleUp
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffleUp/8a63f3.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffleUp/8a63f3.wgsl.expected.glsl
index d6fd222..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffleUp/8a63f3.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffleUp/8a63f3.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleUp
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffleUp/a2075a.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffleUp/a2075a.wgsl.expected.glsl
index d6fd222..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffleUp/a2075a.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffleUp/a2075a.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleUp
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffleUp/abaea0.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffleUp/abaea0.wgsl.expected.glsl
index d6fd222..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffleUp/abaea0.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffleUp/abaea0.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleUp
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffleUp/b58804.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffleUp/b58804.wgsl.expected.glsl
index d6fd222..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffleUp/b58804.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffleUp/b58804.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleUp
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffleUp/bbf7f4.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffleUp/bbf7f4.wgsl.expected.glsl
index d6fd222..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffleUp/bbf7f4.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffleUp/bbf7f4.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleUp
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffleUp/db5bcb.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffleUp/db5bcb.wgsl.expected.glsl
index d6fd222..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffleUp/db5bcb.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffleUp/db5bcb.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleUp
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffleXor/071aa0.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffleXor/071aa0.wgsl.expected.glsl
index deb58cb..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffleXor/071aa0.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffleXor/071aa0.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleXor
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffleXor/08f588.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffleXor/08f588.wgsl.expected.glsl
index deb58cb..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffleXor/08f588.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffleXor/08f588.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleXor
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffleXor/1d36b6.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffleXor/1d36b6.wgsl.expected.glsl
index deb58cb..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffleXor/1d36b6.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffleXor/1d36b6.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleXor
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffleXor/1e247f.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffleXor/1e247f.wgsl.expected.glsl
index deb58cb..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffleXor/1e247f.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffleXor/1e247f.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleXor
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffleXor/1f2590.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffleXor/1f2590.wgsl.expected.glsl
index deb58cb..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffleXor/1f2590.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffleXor/1f2590.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleXor
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffleXor/2e033d.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffleXor/2e033d.wgsl.expected.glsl
index deb58cb..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffleXor/2e033d.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffleXor/2e033d.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleXor
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffleXor/445e83.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffleXor/445e83.wgsl.expected.glsl
index deb58cb..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffleXor/445e83.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffleXor/445e83.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleXor
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffleXor/7435fe.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffleXor/7435fe.wgsl.expected.glsl
index deb58cb..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffleXor/7435fe.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffleXor/7435fe.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleXor
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffleXor/80b6e9.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffleXor/80b6e9.wgsl.expected.glsl
index deb58cb..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffleXor/80b6e9.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffleXor/80b6e9.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleXor
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffleXor/9f945a.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffleXor/9f945a.wgsl.expected.glsl
index deb58cb..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffleXor/9f945a.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffleXor/9f945a.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleXor
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffleXor/bdddba.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffleXor/bdddba.wgsl.expected.glsl
index deb58cb..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffleXor/bdddba.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffleXor/bdddba.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleXor
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffleXor/c88290.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffleXor/c88290.wgsl.expected.glsl
index deb58cb..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffleXor/c88290.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffleXor/c88290.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleXor
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffleXor/caa816.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffleXor/caa816.wgsl.expected.glsl
index deb58cb..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffleXor/caa816.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffleXor/caa816.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleXor
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffleXor/d224ab.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffleXor/d224ab.wgsl.expected.glsl
index deb58cb..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffleXor/d224ab.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffleXor/d224ab.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleXor
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffleXor/e3c10b.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffleXor/e3c10b.wgsl.expected.glsl
index deb58cb..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffleXor/e3c10b.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffleXor/e3c10b.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleXor
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupShuffleXor/f7b453.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupShuffleXor/f7b453.wgsl.expected.glsl
index deb58cb..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupShuffleXor/f7b453.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupShuffleXor/f7b453.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupShuffleXor
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupXor/468721.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupXor/468721.wgsl.expected.glsl
index a5303ebd..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupXor/468721.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupXor/468721.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupXor
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupXor/473de8.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupXor/473de8.wgsl.expected.glsl
index a5303ebd..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupXor/473de8.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupXor/473de8.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupXor
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupXor/694b17.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupXor/694b17.wgsl.expected.glsl
index a5303ebd..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupXor/694b17.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupXor/694b17.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupXor
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupXor/7750d6.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupXor/7750d6.wgsl.expected.glsl
index a5303ebd..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupXor/7750d6.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupXor/7750d6.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupXor
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupXor/7f6672.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupXor/7f6672.wgsl.expected.glsl
index a5303ebd..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupXor/7f6672.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupXor/7f6672.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupXor
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupXor/83b1f3.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupXor/83b1f3.wgsl.expected.glsl
index a5303ebd..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupXor/83b1f3.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupXor/83b1f3.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupXor
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupXor/9c6e73.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupXor/9c6e73.wgsl.expected.glsl
index a5303ebd..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupXor/9c6e73.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupXor/9c6e73.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupXor
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/subgroupXor/9d77e4.wgsl.expected.glsl b/test/tint/builtins/gen/var/subgroupXor/9d77e4.wgsl.expected.glsl
index a5303ebd..21f1759 100644
--- a/test/tint/builtins/gen/var/subgroupXor/9d77e4.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/subgroupXor/9d77e4.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:1487 internal compiler error: TINT_UNREACHABLE unhandled core builtin: subgroupXor
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: subgroups are not supported by the GLSL backend
+//
+// compute_main
+//
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureDimensions/01edb1.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureDimensions/01edb1.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureDimensions/01edb1.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/01edb1.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureDimensions/0276ec.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureDimensions/0276ec.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureDimensions/0276ec.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/0276ec.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureDimensions/033195.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureDimensions/033195.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureDimensions/033195.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/033195.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureDimensions/038847.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureDimensions/038847.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureDimensions/038847.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/038847.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureDimensions/03f81e.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureDimensions/03f81e.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureDimensions/03f81e.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/03f81e.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureDimensions/0973c9.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureDimensions/0973c9.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureDimensions/0973c9.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/0973c9.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureDimensions/0de70c.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureDimensions/0de70c.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureDimensions/0de70c.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/0de70c.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureDimensions/20eaad.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureDimensions/20eaad.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureDimensions/20eaad.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/20eaad.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureDimensions/283b58.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureDimensions/283b58.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureDimensions/283b58.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/283b58.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureDimensions/2a58b7.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureDimensions/2a58b7.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureDimensions/2a58b7.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/2a58b7.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureDimensions/325338.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureDimensions/325338.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureDimensions/325338.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/325338.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureDimensions/36eeb7.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureDimensions/36eeb7.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureDimensions/36eeb7.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/36eeb7.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureDimensions/38c9ca.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureDimensions/38c9ca.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureDimensions/38c9ca.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/38c9ca.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureDimensions/427f92.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureDimensions/427f92.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureDimensions/427f92.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/427f92.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureDimensions/55fdeb.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureDimensions/55fdeb.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureDimensions/55fdeb.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/55fdeb.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureDimensions/5703b3.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureDimensions/5703b3.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureDimensions/5703b3.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/5703b3.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureDimensions/579eee.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureDimensions/579eee.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureDimensions/579eee.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/579eee.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureDimensions/70dd33.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureDimensions/70dd33.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureDimensions/70dd33.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/70dd33.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureDimensions/715917.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureDimensions/715917.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureDimensions/715917.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/715917.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureDimensions/795fbb.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureDimensions/795fbb.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureDimensions/795fbb.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/795fbb.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureDimensions/7ea4b5.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureDimensions/7ea4b5.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureDimensions/7ea4b5.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/7ea4b5.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureDimensions/8243a1.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureDimensions/8243a1.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureDimensions/8243a1.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/8243a1.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureDimensions/8a2b17.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureDimensions/8a2b17.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureDimensions/8a2b17.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/8a2b17.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureDimensions/8b9906.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureDimensions/8b9906.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureDimensions/8b9906.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/8b9906.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureDimensions/8bd369.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureDimensions/8bd369.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureDimensions/8bd369.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/8bd369.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureDimensions/a105a5.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureDimensions/a105a5.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureDimensions/a105a5.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/a105a5.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureDimensions/a14386.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureDimensions/a14386.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureDimensions/a14386.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/a14386.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureDimensions/a7ae4c.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureDimensions/a7ae4c.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureDimensions/a7ae4c.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/a7ae4c.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureDimensions/ae75a7.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureDimensions/ae75a7.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureDimensions/ae75a7.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/ae75a7.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureDimensions/b16352.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureDimensions/b16352.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureDimensions/b16352.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/b16352.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureDimensions/b284b8.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureDimensions/b284b8.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureDimensions/b284b8.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/b284b8.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureDimensions/b5d68e.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureDimensions/b5d68e.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureDimensions/b5d68e.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/b5d68e.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureDimensions/bc96f6.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureDimensions/bc96f6.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureDimensions/bc96f6.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/bc96f6.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureDimensions/c27466.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureDimensions/c27466.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureDimensions/c27466.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/c27466.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureDimensions/ca10cc.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureDimensions/ca10cc.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureDimensions/ca10cc.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/ca10cc.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureDimensions/deb3c0.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureDimensions/deb3c0.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureDimensions/deb3c0.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/deb3c0.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureDimensions/e4f021.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureDimensions/e4f021.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureDimensions/e4f021.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/e4f021.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureDimensions/e50eb8.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureDimensions/e50eb8.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureDimensions/e50eb8.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/e50eb8.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureDimensions/eb10d6.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureDimensions/eb10d6.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureDimensions/eb10d6.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/eb10d6.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureDimensions/eb1249.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureDimensions/eb1249.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureDimensions/eb1249.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/eb1249.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureDimensions/eb9f4d.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureDimensions/eb9f4d.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureDimensions/eb9f4d.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/eb9f4d.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureDimensions/f406ff.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureDimensions/f406ff.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureDimensions/f406ff.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/f406ff.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureDimensions/f55a94.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureDimensions/f55a94.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureDimensions/f55a94.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/f55a94.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureDimensions/f93ece.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureDimensions/f93ece.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureDimensions/f93ece.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureDimensions/f93ece.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/012e11.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/012e11.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/012e11.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/012e11.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/02c48d.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/02c48d.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/02c48d.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/02c48d.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/03e03e.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/03e03e.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/03e03e.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/03e03e.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/054350.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/054350.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/054350.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/054350.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/0b515a.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/0b515a.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/0b515a.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/0b515a.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/14cc4c.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/14cc4c.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/14cc4c.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/14cc4c.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/170593.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/170593.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/170593.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/170593.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/17095b.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/17095b.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/17095b.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/17095b.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/1bc5ab.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/1bc5ab.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/1bc5ab.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/1bc5ab.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/1d43ae.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/1d43ae.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/1d43ae.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/1d43ae.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/25b67f.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/25b67f.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/25b67f.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/25b67f.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/26b8f6.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/26b8f6.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/26b8f6.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/26b8f6.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/2cee30.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/2cee30.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/2cee30.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/2cee30.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/2dbfc2.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/2dbfc2.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/2dbfc2.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/2dbfc2.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/32a7b8.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/32a7b8.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/32a7b8.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/32a7b8.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/39016c.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/39016c.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/39016c.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/39016c.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/395447.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/395447.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/395447.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/395447.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/3a2350.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/3a2350.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/3a2350.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/3a2350.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/3cfb9c.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/3cfb9c.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/3cfb9c.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/3cfb9c.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/40ee8b.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/40ee8b.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/40ee8b.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/40ee8b.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/4212a1.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/4212a1.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/4212a1.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/4212a1.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/42a631.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/42a631.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/42a631.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/42a631.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/43cd86.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/43cd86.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/43cd86.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/43cd86.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/4542ae.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/4542ae.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/4542ae.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/4542ae.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/473d3e.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/473d3e.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/473d3e.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/473d3e.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/4a5c55.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/4a5c55.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/4a5c55.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/4a5c55.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/4c15b2.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/4c15b2.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/4c15b2.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/4c15b2.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/4e2c5c.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/4e2c5c.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/4e2c5c.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/4e2c5c.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/4f90bb.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/4f90bb.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/4f90bb.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/4f90bb.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/5154e1.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/5154e1.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/5154e1.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/5154e1.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/53941c.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/53941c.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/53941c.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/53941c.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/5b0f5b.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/5b0f5b.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/5b0f5b.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/5b0f5b.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/5b4947.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/5b4947.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/5b4947.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/5b4947.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/5c69f8.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/5c69f8.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/5c69f8.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/5c69f8.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/5e17a7.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/5e17a7.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/5e17a7.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/5e17a7.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/5e1843.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/5e1843.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/5e1843.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/5e1843.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/622278.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/622278.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/622278.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/622278.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/64c372.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/64c372.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/64c372.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/64c372.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/666010.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/666010.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/666010.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/666010.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/68d273.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/68d273.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/68d273.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/68d273.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/6a6871.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/6a6871.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/6a6871.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/6a6871.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/6b8ba6.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/6b8ba6.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/6b8ba6.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/6b8ba6.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/6ba9ab.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/6ba9ab.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/6ba9ab.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/6ba9ab.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/6bf3e2.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/6bf3e2.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/6bf3e2.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/6bf3e2.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/6d7bb5.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/6d7bb5.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/6d7bb5.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/6d7bb5.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/6e903f.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/6e903f.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/6e903f.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/6e903f.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/6f0ea8.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/6f0ea8.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/6f0ea8.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/6f0ea8.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/6f8927.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/6f8927.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/6f8927.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/6f8927.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/742f1b.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/742f1b.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/742f1b.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/742f1b.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/74a387.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/74a387.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/74a387.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/74a387.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/7e5cbc.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/7e5cbc.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/7e5cbc.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/7e5cbc.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/80dae1.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/80dae1.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/80dae1.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/80dae1.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/848d85.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/848d85.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/848d85.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/848d85.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/84a438.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/84a438.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/84a438.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/84a438.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/878e24.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/878e24.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/878e24.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/878e24.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/87f0a6.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/87f0a6.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/87f0a6.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/87f0a6.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/8b62fb.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/8b62fb.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/8b62fb.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/8b62fb.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/8e68c9.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/8e68c9.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/8e68c9.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/8e68c9.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/8fc29b.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/8fc29b.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/8fc29b.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/8fc29b.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/9242e7.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/9242e7.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/9242e7.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/9242e7.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/9fa9fd.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/9fa9fd.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/9fa9fd.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/9fa9fd.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/9fd7be.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/9fd7be.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/9fd7be.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/9fd7be.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/a2b3f4.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/a2b3f4.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/a2b3f4.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/a2b3f4.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/a3733f.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/a3733f.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/a3733f.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/a3733f.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/a3f122.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/a3f122.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/a3f122.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/a3f122.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/a548a8.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/a548a8.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/a548a8.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/a548a8.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/a54e11.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/a54e11.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/a54e11.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/a54e11.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/a64b1d.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/a64b1d.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/a64b1d.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/a64b1d.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/a7bcb4.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/a7bcb4.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/a7bcb4.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/a7bcb4.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/a7c171.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/a7c171.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/a7c171.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/a7c171.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/a92b18.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/a92b18.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/a92b18.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/a92b18.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/aa2579.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/aa2579.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/aa2579.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/aa2579.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/aae9c3.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/aae9c3.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/aae9c3.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/aae9c3.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/acf22f.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/acf22f.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/acf22f.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/acf22f.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/b60a86.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/b60a86.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/b60a86.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/b60a86.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/b60db7.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/b60db7.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/b60db7.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/b60db7.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/ba74b2.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/ba74b2.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/ba74b2.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/ba74b2.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/babdf3.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/babdf3.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/babdf3.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/babdf3.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/bbb762.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/bbb762.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/bbb762.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/bbb762.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/bd990a.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/bd990a.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/bd990a.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/bd990a.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/c5c86d.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/c5c86d.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/c5c86d.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/c5c86d.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/c7e313.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/c7e313.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/c7e313.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/c7e313.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/c98bf4.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/c98bf4.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/c98bf4.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/c98bf4.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/c9b083.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/c9b083.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/c9b083.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/c9b083.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/cac876.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/cac876.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/cac876.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/cac876.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/cdbcf6.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/cdbcf6.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/cdbcf6.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/cdbcf6.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/cddf6b.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/cddf6b.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/cddf6b.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/cddf6b.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/d37a08.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/d37a08.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/d37a08.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/d37a08.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/d3d8fc.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/d3d8fc.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/d3d8fc.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/d3d8fc.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/d72de9.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/d72de9.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/d72de9.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/d72de9.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/d7996a.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/d7996a.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/d7996a.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/d7996a.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/d79c5c.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/d79c5c.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/d79c5c.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/d79c5c.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/d80ff3.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/d80ff3.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/d80ff3.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/d80ff3.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/d8be5a.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/d8be5a.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/d8be5a.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/d8be5a.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/d91f37.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/d91f37.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/d91f37.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/d91f37.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/dab04f.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/dab04f.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/dab04f.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/dab04f.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/dd5859.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/dd5859.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/dd5859.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/dd5859.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/de5a0e.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/de5a0e.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/de5a0e.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/de5a0e.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/e1c3cf.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/e1c3cf.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/e1c3cf.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/e1c3cf.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/e2d7da.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/e2d7da.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/e2d7da.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/e2d7da.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/e33285.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/e33285.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/e33285.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/e33285.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/e9eb65.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/e9eb65.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/e9eb65.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/e9eb65.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/f0514a.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/f0514a.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/f0514a.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/f0514a.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/f2c311.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/f2c311.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/f2c311.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/f2c311.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/f5fbc6.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/f5fbc6.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/f5fbc6.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/f5fbc6.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/f7f3bc.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/f7f3bc.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/f7f3bc.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/f7f3bc.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/f82eb2.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/f82eb2.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/f82eb2.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/f82eb2.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/fc47ff.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/fc47ff.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/fc47ff.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/fc47ff.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/fd9606.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/fd9606.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/fd9606.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/fd9606.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureLoad/fe2c1b.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureLoad/fe2c1b.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureLoad/fe2c1b.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureLoad/fe2c1b.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureNumLayers/0856ae.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureNumLayers/0856ae.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureNumLayers/0856ae.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureNumLayers/0856ae.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureNumLayers/2a48dc.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureNumLayers/2a48dc.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureNumLayers/2a48dc.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureNumLayers/2a48dc.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureNumLayers/327d70.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureNumLayers/327d70.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureNumLayers/327d70.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureNumLayers/327d70.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureNumLayers/32ca10.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureNumLayers/32ca10.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureNumLayers/32ca10.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureNumLayers/32ca10.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureNumLayers/380a60.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureNumLayers/380a60.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureNumLayers/380a60.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureNumLayers/380a60.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureNumLayers/54a654.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureNumLayers/54a654.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureNumLayers/54a654.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureNumLayers/54a654.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureNumLayers/5ee8f2.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureNumLayers/5ee8f2.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureNumLayers/5ee8f2.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureNumLayers/5ee8f2.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureNumLayers/6da0eb.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureNumLayers/6da0eb.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureNumLayers/6da0eb.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureNumLayers/6da0eb.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureNumLayers/a54655.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureNumLayers/a54655.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureNumLayers/a54655.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureNumLayers/a54655.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureNumLayers/d3f655.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureNumLayers/d3f655.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureNumLayers/d3f655.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureNumLayers/d3f655.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureNumLayers/e47aac.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureNumLayers/e47aac.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureNumLayers/e47aac.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureNumLayers/e47aac.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/036d0e.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/036d0e.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/036d0e.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/036d0e.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/03e7a0.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/03e7a0.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/03e7a0.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/03e7a0.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/042b06.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/042b06.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/042b06.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/042b06.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/052a4e.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/052a4e.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/052a4e.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/052a4e.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/053664.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/053664.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/053664.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/053664.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/09e4d5.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/09e4d5.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/09e4d5.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/09e4d5.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/101325.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/101325.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/101325.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/101325.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/145061.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/145061.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/145061.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/145061.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/178e69.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/178e69.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/178e69.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/178e69.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/195d1b.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/195d1b.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/195d1b.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/195d1b.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/197637.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/197637.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/197637.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/197637.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/1af236.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/1af236.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/1af236.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/1af236.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/2046db.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/2046db.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/2046db.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/2046db.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/2173fd.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/2173fd.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/2173fd.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/2173fd.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/26a26d.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/26a26d.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/26a26d.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/26a26d.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/28e109.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/28e109.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/28e109.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/28e109.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/2a60c9.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/2a60c9.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/2a60c9.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/2a60c9.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/2addd6.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/2addd6.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/2addd6.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/2addd6.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/2c76db.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/2c76db.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/2c76db.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/2c76db.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/2f29ea.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/2f29ea.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/2f29ea.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/2f29ea.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/3310d3.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/3310d3.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/3310d3.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/3310d3.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/345332.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/345332.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/345332.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/345332.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/3d96a4.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/3d96a4.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/3d96a4.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/3d96a4.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/3f61ca.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/3f61ca.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/3f61ca.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/3f61ca.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/441222.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/441222.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/441222.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/441222.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/4483e7.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/4483e7.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/4483e7.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/4483e7.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/44b372.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/44b372.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/44b372.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/44b372.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/47bd70.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/47bd70.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/47bd70.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/47bd70.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/48cb56.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/48cb56.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/48cb56.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/48cb56.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/4c76b7.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/4c76b7.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/4c76b7.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/4c76b7.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/4ddf52.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/4ddf52.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/4ddf52.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/4ddf52.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/5030f5.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/5030f5.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/5030f5.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/5030f5.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/544f06.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/544f06.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/544f06.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/544f06.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/55f9dc.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/55f9dc.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/55f9dc.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/55f9dc.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/58fc35.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/58fc35.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/58fc35.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/58fc35.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/5a8b41.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/5a8b41.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/5a8b41.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/5a8b41.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/5b4522.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/5b4522.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/5b4522.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/5b4522.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/646dbc.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/646dbc.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/646dbc.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/646dbc.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/65b6aa.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/65b6aa.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/65b6aa.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/65b6aa.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/6d1809.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/6d1809.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/6d1809.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/6d1809.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/6d259f.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/6d259f.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/6d259f.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/6d259f.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/6f3542.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/6f3542.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/6f3542.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/6f3542.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/6fb99b.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/6fb99b.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/6fb99b.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/6fb99b.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/704e1f.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/704e1f.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/704e1f.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/704e1f.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/706236.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/706236.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/706236.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/706236.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/706560.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/706560.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/706560.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/706560.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/726d6d.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/726d6d.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/726d6d.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/726d6d.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/73a735.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/73a735.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/73a735.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/73a735.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/751256.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/751256.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/751256.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/751256.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/7d10e0.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/7d10e0.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/7d10e0.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/7d10e0.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/7dd042.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/7dd042.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/7dd042.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/7dd042.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/7e787a.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/7e787a.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/7e787a.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/7e787a.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/818df6.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/818df6.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/818df6.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/818df6.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/84f4f4.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/84f4f4.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/84f4f4.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/84f4f4.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/86f713.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/86f713.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/86f713.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/86f713.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/877c92.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/877c92.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/877c92.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/877c92.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/8815b1.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/8815b1.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/8815b1.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/8815b1.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/885921.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/885921.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/885921.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/885921.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/88ce7e.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/88ce7e.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/88ce7e.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/88ce7e.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/8a46ff.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/8a46ff.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/8a46ff.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/8a46ff.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/8a85b9.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/8a85b9.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/8a85b9.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/8a85b9.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/8ae0bc.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/8ae0bc.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/8ae0bc.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/8ae0bc.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/8ebdc9.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/8ebdc9.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/8ebdc9.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/8ebdc9.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/90960e.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/90960e.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/90960e.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/90960e.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/90a553.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/90a553.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/90a553.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/90a553.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/976636.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/976636.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/976636.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/976636.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/9ba5c1.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/9ba5c1.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/9ba5c1.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/9ba5c1.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/9cea9e.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/9cea9e.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/9cea9e.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/9cea9e.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/9d7c62.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/9d7c62.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/9d7c62.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/9d7c62.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/a14041.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/a14041.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/a14041.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/a14041.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/a19a12.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/a19a12.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/a19a12.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/a19a12.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/a24491.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/a24491.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/a24491.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/a24491.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/a5b88e.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/a5b88e.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/a5b88e.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/a5b88e.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/a5c925.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/a5c925.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/a5c925.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/a5c925.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/a66ca4.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/a66ca4.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/a66ca4.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/a66ca4.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/ab03b6.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/ab03b6.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/ab03b6.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/ab03b6.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/ac0a55.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/ac0a55.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/ac0a55.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/ac0a55.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/aedea3.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/aedea3.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/aedea3.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/aedea3.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/b16110.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/b16110.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/b16110.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/b16110.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/b286b4.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/b286b4.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/b286b4.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/b286b4.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/b36bc1.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/b36bc1.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/b36bc1.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/b36bc1.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/b4389e.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/b4389e.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/b4389e.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/b4389e.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/b89ffb.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/b89ffb.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/b89ffb.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/b89ffb.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/b9d863.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/b9d863.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/b9d863.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/b9d863.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/bc1423.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/bc1423.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/bc1423.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/bc1423.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/c06463.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/c06463.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/c06463.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/c06463.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/c1c664.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/c1c664.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/c1c664.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/c1c664.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/c1f760.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/c1f760.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/c1f760.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/c1f760.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/c63f05.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/c63f05.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/c63f05.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/c63f05.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/c79451.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/c79451.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/c79451.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/c79451.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/ccac20.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/ccac20.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/ccac20.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/ccac20.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/d0d62c.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/d0d62c.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/d0d62c.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/d0d62c.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/d0fadc.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/d0fadc.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/d0fadc.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/d0fadc.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/d1ab82.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/d1ab82.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/d1ab82.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/d1ab82.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/d3a22b.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/d3a22b.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/d3a22b.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/d3a22b.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/d86d33.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/d86d33.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/d86d33.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/d86d33.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/da530c.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/da530c.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/da530c.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/da530c.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/db5128.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/db5128.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/db5128.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/db5128.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/dd8b29.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/dd8b29.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/dd8b29.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/dd8b29.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/de38e5.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/de38e5.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/de38e5.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/de38e5.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/e1784d.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/e1784d.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/e1784d.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/e1784d.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/e46fd8.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/e46fd8.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/e46fd8.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/e46fd8.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/e72bdc.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/e72bdc.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/e72bdc.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/e72bdc.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/e87f6e.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/e87f6e.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/e87f6e.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/e87f6e.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/f05928.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/f05928.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/f05928.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/f05928.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/f6f392.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/f6f392.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/f6f392.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/f6f392.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/f8aaf9.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/f8aaf9.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/f8aaf9.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/f8aaf9.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/f975a0.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/f975a0.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/f975a0.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/f975a0.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/fc916e.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/fc916e.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/fc916e.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/fc916e.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/builtins/gen/var/textureStore/ff23b3.wgsl.expected.glsl b/test/tint/builtins/gen/var/textureStore/ff23b3.wgsl.expected.glsl
index 6338d00..9d8b5ff 100644
--- a/test/tint/builtins/gen/var/textureStore/ff23b3.wgsl.expected.glsl
+++ b/test/tint/builtins/gen/var/textureStore/ff23b3.wgsl.expected.glsl
@@ -1,11 +1,12 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:733 internal compiler error: TINT_UNREACHABLE invalid texel format for read-write
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// fragment_main
+//
+error: unsupported read-write storage texture format
+//
+// compute_main
+//
+error: unsupported read-write storage texture format
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/extensions/clip_distances/first_member/clip_distances_size_1.wgsl.expected.glsl b/test/tint/extensions/clip_distances/first_member/clip_distances_size_1.wgsl.expected.glsl
index f8978b0..4e27280 100644
--- a/test/tint/extensions/clip_distances/first_member/clip_distances_size_1.wgsl.expected.glsl
+++ b/test/tint/extensions/clip_distances/first_member/clip_distances_size_1.wgsl.expected.glsl
@@ -1,11 +1,5 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/raise/shader_io.cc:109 internal compiler error: TINT_UNREACHABLE
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+error: clip_distances is not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/extensions/clip_distances/first_member/clip_distances_size_2.wgsl.expected.glsl b/test/tint/extensions/clip_distances/first_member/clip_distances_size_2.wgsl.expected.glsl
index be7db57..4e27280 100644
--- a/test/tint/extensions/clip_distances/first_member/clip_distances_size_2.wgsl.expected.glsl
+++ b/test/tint/extensions/clip_distances/first_member/clip_distances_size_2.wgsl.expected.glsl
@@ -1,23 +1,5 @@
-SKIP: FAILED
+SKIP: INVALID
-
-enable clip_distances;
-
-struct VertexOutputs {
- @builtin(position)
- position : vec4<f32>,
- @builtin(clip_distances)
- clipDistance : array<f32, 2>,
-}
-
-@vertex
-fn tint_symbol() -> VertexOutputs {
- return VertexOutputs(vec4<f32>(1.0, 2.0, 3.0, 4.0), array<f32, 2>(0.0, 0.0));
-}
-
-Failed to generate: <dawn>/test/tint/extensions/clip_distances/clip_distances_size_2.wgsl:1:8 error: GLSL backend does not support extension 'clip_distances'
-enable clip_distances;
- ^^^^^^^^^^^^^^
-
+error: clip_distances is not supported by the GLSL backend
tint executable returned error: exit status 1
diff --git a/test/tint/extensions/clip_distances/first_member/clip_distances_size_3.wgsl.expected.glsl b/test/tint/extensions/clip_distances/first_member/clip_distances_size_3.wgsl.expected.glsl
index f8978b0..4e27280 100644
--- a/test/tint/extensions/clip_distances/first_member/clip_distances_size_3.wgsl.expected.glsl
+++ b/test/tint/extensions/clip_distances/first_member/clip_distances_size_3.wgsl.expected.glsl
@@ -1,11 +1,5 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/raise/shader_io.cc:109 internal compiler error: TINT_UNREACHABLE
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+error: clip_distances is not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/extensions/clip_distances/first_member/clip_distances_size_4.wgsl.expected.glsl b/test/tint/extensions/clip_distances/first_member/clip_distances_size_4.wgsl.expected.glsl
index f8978b0..4e27280 100644
--- a/test/tint/extensions/clip_distances/first_member/clip_distances_size_4.wgsl.expected.glsl
+++ b/test/tint/extensions/clip_distances/first_member/clip_distances_size_4.wgsl.expected.glsl
@@ -1,11 +1,5 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/raise/shader_io.cc:109 internal compiler error: TINT_UNREACHABLE
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+error: clip_distances is not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/extensions/clip_distances/first_member/clip_distances_size_5.wgsl.expected.glsl b/test/tint/extensions/clip_distances/first_member/clip_distances_size_5.wgsl.expected.glsl
index f8978b0..4e27280 100644
--- a/test/tint/extensions/clip_distances/first_member/clip_distances_size_5.wgsl.expected.glsl
+++ b/test/tint/extensions/clip_distances/first_member/clip_distances_size_5.wgsl.expected.glsl
@@ -1,11 +1,5 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/raise/shader_io.cc:109 internal compiler error: TINT_UNREACHABLE
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+error: clip_distances is not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/extensions/clip_distances/first_member/clip_distances_size_6.wgsl.expected.glsl b/test/tint/extensions/clip_distances/first_member/clip_distances_size_6.wgsl.expected.glsl
index 55c7c68..4e27280 100644
--- a/test/tint/extensions/clip_distances/first_member/clip_distances_size_6.wgsl.expected.glsl
+++ b/test/tint/extensions/clip_distances/first_member/clip_distances_size_6.wgsl.expected.glsl
@@ -1,23 +1,5 @@
-SKIP: FAILED
+SKIP: INVALID
-
-enable clip_distances;
-
-struct VertexOutputs {
- @builtin(position)
- position : vec4<f32>,
- @builtin(clip_distances)
- clipDistance : array<f32, 6>,
-}
-
-@vertex
-fn tint_symbol() -> VertexOutputs {
- return VertexOutputs(vec4<f32>(1.0, 2.0, 3.0, 4.0), array<f32, 6>(0.0, 0.0, 0.0, 0.0, 0.0, 0.0));
-}
-
-Failed to generate: <dawn>/test/tint/extensions/clip_distances/clip_distances_size_6.wgsl:1:8 error: GLSL backend does not support extension 'clip_distances'
-enable clip_distances;
- ^^^^^^^^^^^^^^
-
+error: clip_distances is not supported by the GLSL backend
tint executable returned error: exit status 1
diff --git a/test/tint/extensions/clip_distances/first_member/clip_distances_size_7.wgsl.expected.glsl b/test/tint/extensions/clip_distances/first_member/clip_distances_size_7.wgsl.expected.glsl
index 26135be..4e27280 100644
--- a/test/tint/extensions/clip_distances/first_member/clip_distances_size_7.wgsl.expected.glsl
+++ b/test/tint/extensions/clip_distances/first_member/clip_distances_size_7.wgsl.expected.glsl
@@ -1,23 +1,5 @@
-SKIP: FAILED
+SKIP: INVALID
-
-enable clip_distances;
-
-struct VertexOutputs {
- @builtin(position)
- position : vec4<f32>,
- @builtin(clip_distances)
- clipDistance : array<f32, 7>,
-}
-
-@vertex
-fn tint_symbol() -> VertexOutputs {
- return VertexOutputs(vec4<f32>(1.0, 2.0, 3.0, 4.0), array<f32, 7>(0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0));
-}
-
-Failed to generate: <dawn>/test/tint/extensions/clip_distances/clip_distances_size_7.wgsl:1:8 error: GLSL backend does not support extension 'clip_distances'
-enable clip_distances;
- ^^^^^^^^^^^^^^
-
+error: clip_distances is not supported by the GLSL backend
tint executable returned error: exit status 1
diff --git a/test/tint/extensions/clip_distances/first_member/clip_distances_size_8.wgsl.expected.glsl b/test/tint/extensions/clip_distances/first_member/clip_distances_size_8.wgsl.expected.glsl
index f8978b0..4e27280 100644
--- a/test/tint/extensions/clip_distances/first_member/clip_distances_size_8.wgsl.expected.glsl
+++ b/test/tint/extensions/clip_distances/first_member/clip_distances_size_8.wgsl.expected.glsl
@@ -1,11 +1,5 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/raise/shader_io.cc:109 internal compiler error: TINT_UNREACHABLE
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+error: clip_distances is not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/extensions/clip_distances/last_member/clip_distances_size_1.wgsl.expected.glsl b/test/tint/extensions/clip_distances/last_member/clip_distances_size_1.wgsl.expected.glsl
index f8978b0..4e27280 100644
--- a/test/tint/extensions/clip_distances/last_member/clip_distances_size_1.wgsl.expected.glsl
+++ b/test/tint/extensions/clip_distances/last_member/clip_distances_size_1.wgsl.expected.glsl
@@ -1,11 +1,5 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/raise/shader_io.cc:109 internal compiler error: TINT_UNREACHABLE
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+error: clip_distances is not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/extensions/clip_distances/last_member/clip_distances_size_2.wgsl.expected.glsl b/test/tint/extensions/clip_distances/last_member/clip_distances_size_2.wgsl.expected.glsl
index be7db57..4e27280 100644
--- a/test/tint/extensions/clip_distances/last_member/clip_distances_size_2.wgsl.expected.glsl
+++ b/test/tint/extensions/clip_distances/last_member/clip_distances_size_2.wgsl.expected.glsl
@@ -1,23 +1,5 @@
-SKIP: FAILED
+SKIP: INVALID
-
-enable clip_distances;
-
-struct VertexOutputs {
- @builtin(position)
- position : vec4<f32>,
- @builtin(clip_distances)
- clipDistance : array<f32, 2>,
-}
-
-@vertex
-fn tint_symbol() -> VertexOutputs {
- return VertexOutputs(vec4<f32>(1.0, 2.0, 3.0, 4.0), array<f32, 2>(0.0, 0.0));
-}
-
-Failed to generate: <dawn>/test/tint/extensions/clip_distances/clip_distances_size_2.wgsl:1:8 error: GLSL backend does not support extension 'clip_distances'
-enable clip_distances;
- ^^^^^^^^^^^^^^
-
+error: clip_distances is not supported by the GLSL backend
tint executable returned error: exit status 1
diff --git a/test/tint/extensions/clip_distances/last_member/clip_distances_size_3.wgsl.expected.glsl b/test/tint/extensions/clip_distances/last_member/clip_distances_size_3.wgsl.expected.glsl
index f8978b0..4e27280 100644
--- a/test/tint/extensions/clip_distances/last_member/clip_distances_size_3.wgsl.expected.glsl
+++ b/test/tint/extensions/clip_distances/last_member/clip_distances_size_3.wgsl.expected.glsl
@@ -1,11 +1,5 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/raise/shader_io.cc:109 internal compiler error: TINT_UNREACHABLE
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+error: clip_distances is not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/extensions/clip_distances/last_member/clip_distances_size_4.wgsl.expected.glsl b/test/tint/extensions/clip_distances/last_member/clip_distances_size_4.wgsl.expected.glsl
index f8978b0..4e27280 100644
--- a/test/tint/extensions/clip_distances/last_member/clip_distances_size_4.wgsl.expected.glsl
+++ b/test/tint/extensions/clip_distances/last_member/clip_distances_size_4.wgsl.expected.glsl
@@ -1,11 +1,5 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/raise/shader_io.cc:109 internal compiler error: TINT_UNREACHABLE
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+error: clip_distances is not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/extensions/clip_distances/last_member/clip_distances_size_5.wgsl.expected.glsl b/test/tint/extensions/clip_distances/last_member/clip_distances_size_5.wgsl.expected.glsl
index f8978b0..4e27280 100644
--- a/test/tint/extensions/clip_distances/last_member/clip_distances_size_5.wgsl.expected.glsl
+++ b/test/tint/extensions/clip_distances/last_member/clip_distances_size_5.wgsl.expected.glsl
@@ -1,11 +1,5 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/raise/shader_io.cc:109 internal compiler error: TINT_UNREACHABLE
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+error: clip_distances is not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/extensions/clip_distances/last_member/clip_distances_size_6.wgsl.expected.glsl b/test/tint/extensions/clip_distances/last_member/clip_distances_size_6.wgsl.expected.glsl
index 55c7c68..4e27280 100644
--- a/test/tint/extensions/clip_distances/last_member/clip_distances_size_6.wgsl.expected.glsl
+++ b/test/tint/extensions/clip_distances/last_member/clip_distances_size_6.wgsl.expected.glsl
@@ -1,23 +1,5 @@
-SKIP: FAILED
+SKIP: INVALID
-
-enable clip_distances;
-
-struct VertexOutputs {
- @builtin(position)
- position : vec4<f32>,
- @builtin(clip_distances)
- clipDistance : array<f32, 6>,
-}
-
-@vertex
-fn tint_symbol() -> VertexOutputs {
- return VertexOutputs(vec4<f32>(1.0, 2.0, 3.0, 4.0), array<f32, 6>(0.0, 0.0, 0.0, 0.0, 0.0, 0.0));
-}
-
-Failed to generate: <dawn>/test/tint/extensions/clip_distances/clip_distances_size_6.wgsl:1:8 error: GLSL backend does not support extension 'clip_distances'
-enable clip_distances;
- ^^^^^^^^^^^^^^
-
+error: clip_distances is not supported by the GLSL backend
tint executable returned error: exit status 1
diff --git a/test/tint/extensions/clip_distances/last_member/clip_distances_size_7.wgsl.expected.glsl b/test/tint/extensions/clip_distances/last_member/clip_distances_size_7.wgsl.expected.glsl
index 26135be..4e27280 100644
--- a/test/tint/extensions/clip_distances/last_member/clip_distances_size_7.wgsl.expected.glsl
+++ b/test/tint/extensions/clip_distances/last_member/clip_distances_size_7.wgsl.expected.glsl
@@ -1,23 +1,5 @@
-SKIP: FAILED
+SKIP: INVALID
-
-enable clip_distances;
-
-struct VertexOutputs {
- @builtin(position)
- position : vec4<f32>,
- @builtin(clip_distances)
- clipDistance : array<f32, 7>,
-}
-
-@vertex
-fn tint_symbol() -> VertexOutputs {
- return VertexOutputs(vec4<f32>(1.0, 2.0, 3.0, 4.0), array<f32, 7>(0.0, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0));
-}
-
-Failed to generate: <dawn>/test/tint/extensions/clip_distances/clip_distances_size_7.wgsl:1:8 error: GLSL backend does not support extension 'clip_distances'
-enable clip_distances;
- ^^^^^^^^^^^^^^
-
+error: clip_distances is not supported by the GLSL backend
tint executable returned error: exit status 1
diff --git a/test/tint/extensions/clip_distances/last_member/clip_distances_size_8.wgsl.expected.glsl b/test/tint/extensions/clip_distances/last_member/clip_distances_size_8.wgsl.expected.glsl
index f8978b0..4e27280 100644
--- a/test/tint/extensions/clip_distances/last_member/clip_distances_size_8.wgsl.expected.glsl
+++ b/test/tint/extensions/clip_distances/last_member/clip_distances_size_8.wgsl.expected.glsl
@@ -1,11 +1,5 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/raise/shader_io.cc:109 internal compiler error: TINT_UNREACHABLE
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+error: clip_distances is not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/extensions/pixel_local/entry_point_use/additional_params/builtin.wgsl.expected.glsl b/test/tint/extensions/pixel_local/entry_point_use/additional_params/builtin.wgsl.expected.glsl
index c2f739d..c834d7a 100644
--- a/test/tint/extensions/pixel_local/entry_point_use/additional_params/builtin.wgsl.expected.glsl
+++ b/test/tint/extensions/pixel_local/entry_point_use/additional_params/builtin.wgsl.expected.glsl
@@ -1,11 +1,5 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:849 internal compiler error: TINT_UNREACHABLE PixelLocal not supported
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+error: pixel_local address space is not supported by the
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/extensions/pixel_local/entry_point_use/additional_params/builtin_and_location.wgsl.expected.glsl b/test/tint/extensions/pixel_local/entry_point_use/additional_params/builtin_and_location.wgsl.expected.glsl
index c2f739d..c834d7a 100644
--- a/test/tint/extensions/pixel_local/entry_point_use/additional_params/builtin_and_location.wgsl.expected.glsl
+++ b/test/tint/extensions/pixel_local/entry_point_use/additional_params/builtin_and_location.wgsl.expected.glsl
@@ -1,11 +1,5 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:849 internal compiler error: TINT_UNREACHABLE PixelLocal not supported
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+error: pixel_local address space is not supported by the
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/extensions/pixel_local/entry_point_use/additional_params/builtin_and_location_in_struct.wgsl.expected.glsl b/test/tint/extensions/pixel_local/entry_point_use/additional_params/builtin_and_location_in_struct.wgsl.expected.glsl
index c2f739d..c834d7a 100644
--- a/test/tint/extensions/pixel_local/entry_point_use/additional_params/builtin_and_location_in_struct.wgsl.expected.glsl
+++ b/test/tint/extensions/pixel_local/entry_point_use/additional_params/builtin_and_location_in_struct.wgsl.expected.glsl
@@ -1,11 +1,5 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:849 internal compiler error: TINT_UNREACHABLE PixelLocal not supported
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+error: pixel_local address space is not supported by the
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/extensions/pixel_local/entry_point_use/additional_params/builtin_in_struct.wgsl.expected.glsl b/test/tint/extensions/pixel_local/entry_point_use/additional_params/builtin_in_struct.wgsl.expected.glsl
index c2f739d..c834d7a 100644
--- a/test/tint/extensions/pixel_local/entry_point_use/additional_params/builtin_in_struct.wgsl.expected.glsl
+++ b/test/tint/extensions/pixel_local/entry_point_use/additional_params/builtin_in_struct.wgsl.expected.glsl
@@ -1,11 +1,5 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:849 internal compiler error: TINT_UNREACHABLE PixelLocal not supported
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+error: pixel_local address space is not supported by the
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/extensions/pixel_local/entry_point_use/additional_params/builtin_in_struct_and_location.wgsl.expected.glsl b/test/tint/extensions/pixel_local/entry_point_use/additional_params/builtin_in_struct_and_location.wgsl.expected.glsl
index c2f739d..c834d7a 100644
--- a/test/tint/extensions/pixel_local/entry_point_use/additional_params/builtin_in_struct_and_location.wgsl.expected.glsl
+++ b/test/tint/extensions/pixel_local/entry_point_use/additional_params/builtin_in_struct_and_location.wgsl.expected.glsl
@@ -1,11 +1,5 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:849 internal compiler error: TINT_UNREACHABLE PixelLocal not supported
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+error: pixel_local address space is not supported by the
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/extensions/pixel_local/entry_point_use/additional_params/builtin_in_struct_and_location_in_struct.wgsl.expected.glsl b/test/tint/extensions/pixel_local/entry_point_use/additional_params/builtin_in_struct_and_location_in_struct.wgsl.expected.glsl
index c2f739d..c834d7a 100644
--- a/test/tint/extensions/pixel_local/entry_point_use/additional_params/builtin_in_struct_and_location_in_struct.wgsl.expected.glsl
+++ b/test/tint/extensions/pixel_local/entry_point_use/additional_params/builtin_in_struct_and_location_in_struct.wgsl.expected.glsl
@@ -1,11 +1,5 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:849 internal compiler error: TINT_UNREACHABLE PixelLocal not supported
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+error: pixel_local address space is not supported by the
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/extensions/pixel_local/entry_point_use/additional_params/builtin_in_struct_multiple.wgsl.expected.glsl b/test/tint/extensions/pixel_local/entry_point_use/additional_params/builtin_in_struct_multiple.wgsl.expected.glsl
index d74629c..c834d7a 100644
--- a/test/tint/extensions/pixel_local/entry_point_use/additional_params/builtin_in_struct_multiple.wgsl.expected.glsl
+++ b/test/tint/extensions/pixel_local/entry_point_use/additional_params/builtin_in_struct_multiple.wgsl.expected.glsl
@@ -1,11 +1,5 @@
-SKIP: FAILED
+SKIP: INVALID
-..\..\src\tint\lang\glsl\writer\printer\printer.cc:955 internal compiler error: TINT_UNREACHABLE PixelLocal not supported
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+error: pixel_local address space is not supported by the
-tint executable returned error: exit status 0xc000001d
+tint executable returned error: exit status 1
diff --git a/test/tint/extensions/pixel_local/entry_point_use/additional_params/builtin_multiple.wgsl.expected.glsl b/test/tint/extensions/pixel_local/entry_point_use/additional_params/builtin_multiple.wgsl.expected.glsl
index d74629c..c834d7a 100644
--- a/test/tint/extensions/pixel_local/entry_point_use/additional_params/builtin_multiple.wgsl.expected.glsl
+++ b/test/tint/extensions/pixel_local/entry_point_use/additional_params/builtin_multiple.wgsl.expected.glsl
@@ -1,11 +1,5 @@
-SKIP: FAILED
+SKIP: INVALID
-..\..\src\tint\lang\glsl\writer\printer\printer.cc:955 internal compiler error: TINT_UNREACHABLE PixelLocal not supported
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+error: pixel_local address space is not supported by the
-tint executable returned error: exit status 0xc000001d
+tint executable returned error: exit status 1
diff --git a/test/tint/extensions/pixel_local/entry_point_use/additional_params/builtin_multiple_entry_points.wgsl.expected.glsl b/test/tint/extensions/pixel_local/entry_point_use/additional_params/builtin_multiple_entry_points.wgsl.expected.glsl
index d74629c..d4e5bff 100644
--- a/test/tint/extensions/pixel_local/entry_point_use/additional_params/builtin_multiple_entry_points.wgsl.expected.glsl
+++ b/test/tint/extensions/pixel_local/entry_point_use/additional_params/builtin_multiple_entry_points.wgsl.expected.glsl
@@ -1,11 +1,16 @@
-SKIP: FAILED
+SKIP: INVALID
-..\..\src\tint\lang\glsl\writer\printer\printer.cc:955 internal compiler error: TINT_UNREACHABLE PixelLocal not supported
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+//
+// f
+//
+error: pixel_local address space is not supported by the
+//
+// f2
+//
+error: pixel_local address space is not supported by the
+//
+// f3
+//
+error: pixel_local address space is not supported by the
-tint executable returned error: exit status 0xc000001d
+tint executable returned error: exit status 1
diff --git a/test/tint/extensions/pixel_local/entry_point_use/additional_params/invariant_builtin.wgsl.expected.glsl b/test/tint/extensions/pixel_local/entry_point_use/additional_params/invariant_builtin.wgsl.expected.glsl
index c2f739d..c834d7a 100644
--- a/test/tint/extensions/pixel_local/entry_point_use/additional_params/invariant_builtin.wgsl.expected.glsl
+++ b/test/tint/extensions/pixel_local/entry_point_use/additional_params/invariant_builtin.wgsl.expected.glsl
@@ -1,11 +1,5 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:849 internal compiler error: TINT_UNREACHABLE PixelLocal not supported
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+error: pixel_local address space is not supported by the
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/extensions/pixel_local/entry_point_use/additional_params/invariant_builtin_in_struct.wgsl.expected.glsl b/test/tint/extensions/pixel_local/entry_point_use/additional_params/invariant_builtin_in_struct.wgsl.expected.glsl
index c2f739d..c834d7a 100644
--- a/test/tint/extensions/pixel_local/entry_point_use/additional_params/invariant_builtin_in_struct.wgsl.expected.glsl
+++ b/test/tint/extensions/pixel_local/entry_point_use/additional_params/invariant_builtin_in_struct.wgsl.expected.glsl
@@ -1,11 +1,5 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:849 internal compiler error: TINT_UNREACHABLE PixelLocal not supported
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+error: pixel_local address space is not supported by the
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/extensions/pixel_local/entry_point_use/additional_params/location.wgsl.expected.glsl b/test/tint/extensions/pixel_local/entry_point_use/additional_params/location.wgsl.expected.glsl
index c2f739d..c834d7a 100644
--- a/test/tint/extensions/pixel_local/entry_point_use/additional_params/location.wgsl.expected.glsl
+++ b/test/tint/extensions/pixel_local/entry_point_use/additional_params/location.wgsl.expected.glsl
@@ -1,11 +1,5 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:849 internal compiler error: TINT_UNREACHABLE PixelLocal not supported
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+error: pixel_local address space is not supported by the
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/extensions/pixel_local/entry_point_use/additional_params/location_in_struct.wgsl.expected.glsl b/test/tint/extensions/pixel_local/entry_point_use/additional_params/location_in_struct.wgsl.expected.glsl
index c2f739d..c834d7a 100644
--- a/test/tint/extensions/pixel_local/entry_point_use/additional_params/location_in_struct.wgsl.expected.glsl
+++ b/test/tint/extensions/pixel_local/entry_point_use/additional_params/location_in_struct.wgsl.expected.glsl
@@ -1,11 +1,5 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:849 internal compiler error: TINT_UNREACHABLE PixelLocal not supported
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+error: pixel_local address space is not supported by the
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/extensions/pixel_local/entry_point_use/multiple_outputs/multiple_attachments.wgsl.expected.glsl b/test/tint/extensions/pixel_local/entry_point_use/multiple_outputs/multiple_attachments.wgsl.expected.glsl
index c2f739d..c834d7a 100644
--- a/test/tint/extensions/pixel_local/entry_point_use/multiple_outputs/multiple_attachments.wgsl.expected.glsl
+++ b/test/tint/extensions/pixel_local/entry_point_use/multiple_outputs/multiple_attachments.wgsl.expected.glsl
@@ -1,11 +1,5 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:849 internal compiler error: TINT_UNREACHABLE PixelLocal not supported
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+error: pixel_local address space is not supported by the
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/extensions/pixel_local/entry_point_use/multiple_outputs/single_attachment.wgsl.expected.glsl b/test/tint/extensions/pixel_local/entry_point_use/multiple_outputs/single_attachment.wgsl.expected.glsl
index c2f739d..c834d7a 100644
--- a/test/tint/extensions/pixel_local/entry_point_use/multiple_outputs/single_attachment.wgsl.expected.glsl
+++ b/test/tint/extensions/pixel_local/entry_point_use/multiple_outputs/single_attachment.wgsl.expected.glsl
@@ -1,11 +1,5 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:849 internal compiler error: TINT_UNREACHABLE PixelLocal not supported
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+error: pixel_local address space is not supported by the
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/extensions/pixel_local/entry_point_use/one_output/multiple_attachments.wgsl.expected.glsl b/test/tint/extensions/pixel_local/entry_point_use/one_output/multiple_attachments.wgsl.expected.glsl
index c2f739d..c834d7a 100644
--- a/test/tint/extensions/pixel_local/entry_point_use/one_output/multiple_attachments.wgsl.expected.glsl
+++ b/test/tint/extensions/pixel_local/entry_point_use/one_output/multiple_attachments.wgsl.expected.glsl
@@ -1,11 +1,5 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:849 internal compiler error: TINT_UNREACHABLE PixelLocal not supported
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+error: pixel_local address space is not supported by the
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/extensions/pixel_local/entry_point_use/one_output/single_attachment.wgsl.expected.glsl b/test/tint/extensions/pixel_local/entry_point_use/one_output/single_attachment.wgsl.expected.glsl
index c2f739d..c834d7a 100644
--- a/test/tint/extensions/pixel_local/entry_point_use/one_output/single_attachment.wgsl.expected.glsl
+++ b/test/tint/extensions/pixel_local/entry_point_use/one_output/single_attachment.wgsl.expected.glsl
@@ -1,11 +1,5 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:849 internal compiler error: TINT_UNREACHABLE PixelLocal not supported
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+error: pixel_local address space is not supported by the
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/extensions/pixel_local/entry_point_use/zero_outputs/multiple_attachments.wgsl.expected.glsl b/test/tint/extensions/pixel_local/entry_point_use/zero_outputs/multiple_attachments.wgsl.expected.glsl
index c2f739d..c834d7a 100644
--- a/test/tint/extensions/pixel_local/entry_point_use/zero_outputs/multiple_attachments.wgsl.expected.glsl
+++ b/test/tint/extensions/pixel_local/entry_point_use/zero_outputs/multiple_attachments.wgsl.expected.glsl
@@ -1,11 +1,5 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:849 internal compiler error: TINT_UNREACHABLE PixelLocal not supported
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+error: pixel_local address space is not supported by the
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/extensions/pixel_local/entry_point_use/zero_outputs/single_attachment.wgsl.expected.glsl b/test/tint/extensions/pixel_local/entry_point_use/zero_outputs/single_attachment.wgsl.expected.glsl
index c2f739d..c834d7a 100644
--- a/test/tint/extensions/pixel_local/entry_point_use/zero_outputs/single_attachment.wgsl.expected.glsl
+++ b/test/tint/extensions/pixel_local/entry_point_use/zero_outputs/single_attachment.wgsl.expected.glsl
@@ -1,11 +1,5 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:849 internal compiler error: TINT_UNREACHABLE PixelLocal not supported
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+error: pixel_local address space is not supported by the
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/extensions/pixel_local/indirect_use/multiple_outputs/multiple_attachments.wgsl.expected.glsl b/test/tint/extensions/pixel_local/indirect_use/multiple_outputs/multiple_attachments.wgsl.expected.glsl
index c2f739d..c834d7a 100644
--- a/test/tint/extensions/pixel_local/indirect_use/multiple_outputs/multiple_attachments.wgsl.expected.glsl
+++ b/test/tint/extensions/pixel_local/indirect_use/multiple_outputs/multiple_attachments.wgsl.expected.glsl
@@ -1,11 +1,5 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:849 internal compiler error: TINT_UNREACHABLE PixelLocal not supported
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+error: pixel_local address space is not supported by the
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/extensions/pixel_local/indirect_use/multiple_outputs/single_attachment.wgsl.expected.glsl b/test/tint/extensions/pixel_local/indirect_use/multiple_outputs/single_attachment.wgsl.expected.glsl
index c2f739d..c834d7a 100644
--- a/test/tint/extensions/pixel_local/indirect_use/multiple_outputs/single_attachment.wgsl.expected.glsl
+++ b/test/tint/extensions/pixel_local/indirect_use/multiple_outputs/single_attachment.wgsl.expected.glsl
@@ -1,11 +1,5 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:849 internal compiler error: TINT_UNREACHABLE PixelLocal not supported
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+error: pixel_local address space is not supported by the
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/extensions/pixel_local/indirect_use/one_output/multiple_attachments.wgsl.expected.glsl b/test/tint/extensions/pixel_local/indirect_use/one_output/multiple_attachments.wgsl.expected.glsl
index c2f739d..c834d7a 100644
--- a/test/tint/extensions/pixel_local/indirect_use/one_output/multiple_attachments.wgsl.expected.glsl
+++ b/test/tint/extensions/pixel_local/indirect_use/one_output/multiple_attachments.wgsl.expected.glsl
@@ -1,11 +1,5 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:849 internal compiler error: TINT_UNREACHABLE PixelLocal not supported
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+error: pixel_local address space is not supported by the
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/extensions/pixel_local/indirect_use/one_output/single_attachment.wgsl.expected.glsl b/test/tint/extensions/pixel_local/indirect_use/one_output/single_attachment.wgsl.expected.glsl
index c2f739d..c834d7a 100644
--- a/test/tint/extensions/pixel_local/indirect_use/one_output/single_attachment.wgsl.expected.glsl
+++ b/test/tint/extensions/pixel_local/indirect_use/one_output/single_attachment.wgsl.expected.glsl
@@ -1,11 +1,5 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:849 internal compiler error: TINT_UNREACHABLE PixelLocal not supported
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+error: pixel_local address space is not supported by the
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/extensions/pixel_local/indirect_use/zero_outputs/multiple_attachments.wgsl.expected.glsl b/test/tint/extensions/pixel_local/indirect_use/zero_outputs/multiple_attachments.wgsl.expected.glsl
index c2f739d..c834d7a 100644
--- a/test/tint/extensions/pixel_local/indirect_use/zero_outputs/multiple_attachments.wgsl.expected.glsl
+++ b/test/tint/extensions/pixel_local/indirect_use/zero_outputs/multiple_attachments.wgsl.expected.glsl
@@ -1,11 +1,5 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:849 internal compiler error: TINT_UNREACHABLE PixelLocal not supported
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+error: pixel_local address space is not supported by the
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/extensions/pixel_local/indirect_use/zero_outputs/single_attachment.wgsl.expected.glsl b/test/tint/extensions/pixel_local/indirect_use/zero_outputs/single_attachment.wgsl.expected.glsl
index c2f739d..c834d7a 100644
--- a/test/tint/extensions/pixel_local/indirect_use/zero_outputs/single_attachment.wgsl.expected.glsl
+++ b/test/tint/extensions/pixel_local/indirect_use/zero_outputs/single_attachment.wgsl.expected.glsl
@@ -1,11 +1,5 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:849 internal compiler error: TINT_UNREACHABLE PixelLocal not supported
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+error: pixel_local address space is not supported by the
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/extensions/pixel_local/ptr/local.wgsl.expected.glsl b/test/tint/extensions/pixel_local/ptr/local.wgsl.expected.glsl
index c2f739d..c834d7a 100644
--- a/test/tint/extensions/pixel_local/ptr/local.wgsl.expected.glsl
+++ b/test/tint/extensions/pixel_local/ptr/local.wgsl.expected.glsl
@@ -1,11 +1,5 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/printer/printer.cc:849 internal compiler error: TINT_UNREACHABLE PixelLocal not supported
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+error: pixel_local address space is not supported by the
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/extensions/texel_fetch/additional_params/d.wgsl.expected.glsl b/test/tint/extensions/texel_fetch/additional_params/d.wgsl.expected.glsl
index 8da20b5..3f65a4e 100644
--- a/test/tint/extensions/texel_fetch/additional_params/d.wgsl.expected.glsl
+++ b/test/tint/extensions/texel_fetch/additional_params/d.wgsl.expected.glsl
@@ -10,17 +10,17 @@
};
in ivec4 f_Input;
-layout(location = 0) in vec4 f_loc0_Input;
+layout(location = 0) in vec4 tint_interstage_location0;
in uvec4 f_Input_1;
void g(int a, float b, float c, uint d) {
}
-void f_inner(ivec4 fbf_2, In tint_symbol, vec4 uv, uvec4 fbf_0) {
- g(fbf_2[2u], tint_symbol.pos[0u], uv[0u], fbf_0[1u]);
+void f_inner(ivec4 fbf_2, In v, vec4 uv, uvec4 fbf_0) {
+ g(fbf_2.z, v.pos.x, uv.x, fbf_0.y);
}
void main() {
- ivec4 v = f_Input;
- In v_1 = In(gl_FragCoord);
- f_inner(v, v_1, f_loc0_Input, f_Input_1);
+ ivec4 v_1 = f_Input;
+ In v_2 = In(gl_FragCoord);
+ f_inner(v_1, v_2, tint_interstage_location0, f_Input_1);
}
error: Error parsing GLSL shader:
ERROR: 0:10: 'int' : must be qualified as flat in
diff --git a/test/tint/extensions/texel_fetch/additional_params/e.wgsl.expected.glsl b/test/tint/extensions/texel_fetch/additional_params/e.wgsl.expected.glsl
index b74f0ad..69ae80c 100644
--- a/test/tint/extensions/texel_fetch/additional_params/e.wgsl.expected.glsl
+++ b/test/tint/extensions/texel_fetch/additional_params/e.wgsl.expected.glsl
@@ -13,8 +13,8 @@
in ivec4 f_Input;
void g(int a, float b) {
}
-void f_inner(In tint_symbol) {
- g(tint_symbol.fbf[3u], tint_symbol.pos[0u]);
+void f_inner(In v) {
+ g(v.fbf.w, v.pos.x);
}
void main() {
f_inner(In(f_Input, gl_FragCoord));
diff --git a/test/tint/extensions/texel_fetch/additional_params/h.wgsl.expected.glsl b/test/tint/extensions/texel_fetch/additional_params/h.wgsl.expected.glsl
index 1915c0c..67357de 100644
--- a/test/tint/extensions/texel_fetch/additional_params/h.wgsl.expected.glsl
+++ b/test/tint/extensions/texel_fetch/additional_params/h.wgsl.expected.glsl
@@ -15,7 +15,7 @@
void g(float a, float b, int c) {
}
void f_inner(vec4 pos, FBF fbf) {
- g(fbf.c1[0u], pos[1u], fbf.c3[2u]);
+ g(fbf.c1.x, pos.y, fbf.c3.z);
}
void main() {
vec4 v = gl_FragCoord;
diff --git a/test/tint/extensions/texel_fetch/additional_params/i.wgsl.expected.glsl b/test/tint/extensions/texel_fetch/additional_params/i.wgsl.expected.glsl
index 351090a8..db1cd5c 100644
--- a/test/tint/extensions/texel_fetch/additional_params/i.wgsl.expected.glsl
+++ b/test/tint/extensions/texel_fetch/additional_params/i.wgsl.expected.glsl
@@ -11,16 +11,16 @@
ivec4 fbf;
};
-layout(location = 0) in vec4 f_loc0_Input;
-layout(location = 1) flat in vec4 f_loc1_Input;
+layout(location = 0) in vec4 tint_interstage_location0;
+layout(location = 1) flat in vec4 tint_interstage_location1;
in ivec4 f_Input;
void g(float a, float b, int c) {
}
-void f_inner(In tint_symbol) {
- g(tint_symbol.a[0u], tint_symbol.b[1u], tint_symbol.fbf[0u]);
+void f_inner(In v) {
+ g(v.a.x, v.b.y, v.fbf.x);
}
void main() {
- f_inner(In(f_loc0_Input, f_loc1_Input, f_Input));
+ f_inner(In(tint_interstage_location0, tint_interstage_location1, f_Input));
}
error: Error parsing GLSL shader:
ERROR: 0:14: 'int' : must be qualified as flat in
diff --git a/test/tint/types/functions/shader_io/compute_subgroup_builtins.wgsl.expected.glsl b/test/tint/types/functions/shader_io/compute_subgroup_builtins.wgsl.expected.glsl
index f8978b0..fc05dcf 100644
--- a/test/tint/types/functions/shader_io/compute_subgroup_builtins.wgsl.expected.glsl
+++ b/test/tint/types/functions/shader_io/compute_subgroup_builtins.wgsl.expected.glsl
@@ -1,11 +1,5 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/raise/shader_io.cc:109 internal compiler error: TINT_UNREACHABLE
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/types/functions/shader_io/compute_subgroup_builtins_struct.wgsl.expected.glsl b/test/tint/types/functions/shader_io/compute_subgroup_builtins_struct.wgsl.expected.glsl
index f8978b0..fc05dcf 100644
--- a/test/tint/types/functions/shader_io/compute_subgroup_builtins_struct.wgsl.expected.glsl
+++ b/test/tint/types/functions/shader_io/compute_subgroup_builtins_struct.wgsl.expected.glsl
@@ -1,11 +1,5 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/raise/shader_io.cc:109 internal compiler error: TINT_UNREACHABLE
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/types/functions/shader_io/fragment_subgroup_builtins.wgsl.expected.glsl b/test/tint/types/functions/shader_io/fragment_subgroup_builtins.wgsl.expected.glsl
index f8978b0..fc05dcf 100644
--- a/test/tint/types/functions/shader_io/fragment_subgroup_builtins.wgsl.expected.glsl
+++ b/test/tint/types/functions/shader_io/fragment_subgroup_builtins.wgsl.expected.glsl
@@ -1,11 +1,5 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/raise/shader_io.cc:109 internal compiler error: TINT_UNREACHABLE
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1
diff --git a/test/tint/types/functions/shader_io/fragment_subgroup_builtins_struct.wgsl.expected.glsl b/test/tint/types/functions/shader_io/fragment_subgroup_builtins_struct.wgsl.expected.glsl
index f8978b0..fc05dcf 100644
--- a/test/tint/types/functions/shader_io/fragment_subgroup_builtins_struct.wgsl.expected.glsl
+++ b/test/tint/types/functions/shader_io/fragment_subgroup_builtins_struct.wgsl.expected.glsl
@@ -1,11 +1,5 @@
SKIP: INVALID
-<dawn>/src/tint/lang/glsl/writer/raise/shader_io.cc:109 internal compiler error: TINT_UNREACHABLE
-********************************************************************
-* The tint shader compiler has encountered an unexpected error. *
-* *
-* Please help us fix this issue by submitting a bug report at *
-* crbug.com/tint with the source program that triggered the bug. *
-********************************************************************
+error: subgroups are not supported by the GLSL backend
-tint executable returned error: signal: trace/BPT trap
+tint executable returned error: exit status 1