From ec7f7131473a5648703c48422b449c12ed4524aa Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Sun, 7 Aug 2022 16:05:57 -0700 Subject: [PATCH] delete failing RISC-V test this backend needs to get further along before it deserves test coverage. --- .../hello_world_with_updates.0.zig | 21 --------------- .../hello_world_with_updates.1.zig | 27 ------------------- 2 files changed, 48 deletions(-) delete mode 100644 test/cases/riscv64-linux/hello_world_with_updates.0.zig delete mode 100644 test/cases/riscv64-linux/hello_world_with_updates.1.zig diff --git a/test/cases/riscv64-linux/hello_world_with_updates.0.zig b/test/cases/riscv64-linux/hello_world_with_updates.0.zig deleted file mode 100644 index dd119fd1f4..0000000000 --- a/test/cases/riscv64-linux/hello_world_with_updates.0.zig +++ /dev/null @@ -1,21 +0,0 @@ -pub fn main() void { - print(); -} - -fn print() void { - asm volatile ("ecall" - : - : [number] "{a7}" (64), - [arg1] "{a0}" (1), - [arg2] "{a1}" (@ptrToInt("Hello, World!\n")), - [arg3] "{a2}" ("Hello, World!\n".len), - : "rcx", "r11", "memory" - ); - return; -} - -// run -// target=riscv64-linux -// -// Hello, World! -// diff --git a/test/cases/riscv64-linux/hello_world_with_updates.1.zig b/test/cases/riscv64-linux/hello_world_with_updates.1.zig deleted file mode 100644 index 26718738a9..0000000000 --- a/test/cases/riscv64-linux/hello_world_with_updates.1.zig +++ /dev/null @@ -1,27 +0,0 @@ -pub fn main() void { - print(); - print(); - print(); - print(); -} - -fn print() void { - asm volatile ("ecall" - : - : [number] "{a7}" (64), - [arg1] "{a0}" (1), - [arg2] "{a1}" (@ptrToInt("Hello, World!\n")), - [arg3] "{a2}" ("Hello, World!\n".len), - : "rcx", "r11", "memory" - ); - return; -} - -// run -// target=riscv64-linux -// -// Hello, World! -// Hello, World! -// Hello, World! -// Hello, World! -//