aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/error.zig
diff options
context:
space:
mode:
authorJacob Young <jacobly0@users.noreply.github.com>2022-10-05 01:29:15 -0400
committerJacob Young <jacobly0@users.noreply.github.com>2022-10-25 05:11:28 -0400
commit6f3654ad694946876e3aac971fd284230424c915 (patch)
treed1a935b258e4cabf9ef47396faa1b381340169f8 /test/behavior/error.zig
parentc8d0e71de6c0e59b8f103526204b990fafe41f54 (diff)
downloadzig-6f3654ad694946876e3aac971fd284230424c915.tar.gz
zig-6f3654ad694946876e3aac971fd284230424c915.zip
c: implement @errorName
Diffstat (limited to 'test/behavior/error.zig')
-rw-r--r--test/behavior/error.zig2
1 files changed, 0 insertions, 2 deletions
diff --git a/test/behavior/error.zig b/test/behavior/error.zig
index 7fb125ab2a..8a78e6eaa0 100644
--- a/test/behavior/error.zig
+++ b/test/behavior/error.zig
@@ -556,7 +556,6 @@ test "error union comptime caching" {
}
test "@errorName" {
- if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest;
@@ -570,7 +569,6 @@ fn gimmeItBroke() anyerror {
}
test "@errorName sentinel length matches slice length" {
- if (builtin.zig_backend == .stage2_c) return error.SkipZigTest; // TODO
if (builtin.zig_backend == .stage2_x86_64) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest;
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest;