aboutsummaryrefslogtreecommitdiff
path: root/test/behavior/basic.zig
diff options
context:
space:
mode:
authorJakub Konka <kubkon@jakubkonka.com>2022-09-10 09:13:08 +0200
committerGitHub <noreply@github.com>2022-09-10 09:13:08 +0200
commit5778077f9f747c98cf1136e536abdb99051f7b41 (patch)
treea5aef7f0adfc82080226558ed631388ff4da20da /test/behavior/basic.zig
parent69da56b36c1bd23214b9c72587cdd424637d2ced (diff)
parent94499898e5cd31209ddfdae3f0c9b418b7f67e60 (diff)
downloadzig-5778077f9f747c98cf1136e536abdb99051f7b41.tar.gz
zig-5778077f9f747c98cf1136e536abdb99051f7b41.zip
Merge pull request #12799 from joachimschmidt557/stage2-arm
stage2 ARM: introduce allocRegs mechanism and other improvements
Diffstat (limited to 'test/behavior/basic.zig')
-rw-r--r--test/behavior/basic.zig4
1 files changed, 0 insertions, 4 deletions
diff --git a/test/behavior/basic.zig b/test/behavior/basic.zig
index 4d8b176fbf..d073bd9316 100644
--- a/test/behavior/basic.zig
+++ b/test/behavior/basic.zig
@@ -465,7 +465,6 @@ fn nine() u8 {
test "struct inside function" {
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest;
- if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest;
try testStructInFn();
comptime try testStructInFn();
@@ -514,7 +513,6 @@ var global_foo: *i32 = undefined;
test "peer result location with typed parent, runtime condition, comptime prongs" {
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest;
- if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest;
const S = struct {
fn doTheTest(arg: i32) i32 {
@@ -643,7 +641,6 @@ test "global constant is loaded with a runtime-known index" {
test "multiline string literal is null terminated" {
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest;
- if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest;
const s1 =
\\one
@@ -1060,7 +1057,6 @@ comptime {
test "switch inside @as gets correct type" {
if (builtin.zig_backend == .stage2_aarch64) return error.SkipZigTest; // TODO
- if (builtin.zig_backend == .stage2_arm) return error.SkipZigTest; // TODO
var a: u32 = 0;
var b: [2]u32 = undefined;