From ee1505187cf366740a1c1d2d92dd78ee6900c41a Mon Sep 17 00:00:00 2001 From: Ribbon Date: Tue, 30 Sep 2025 05:30:07 -0300 Subject: [PATCH] Move compilation tests to "hello-redox" folder --- config/tests.toml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/config/tests.toml b/config/tests.toml index 94c8e06ff..007dff712 100644 --- a/config/tests.toml +++ b/config/tests.toml @@ -21,7 +21,7 @@ vttest = {} benchmarks = {} [[files]] -path = "/home/user/test.rs" +path = "/home/user/hello-redox/test.rs" data = """ fn main() { println!("Hello, Redox!"); @@ -29,7 +29,7 @@ fn main() { """ [[files]] -path = "/home/user/test.c" +path = "/home/user/hello-redox/test.c" data = """ #include @@ -39,7 +39,7 @@ int main(void) { """ [[files]] -path = "/home/user/test.cpp" +path = "/home/user/hello-redox/test.cpp" data = """ #include @@ -50,25 +50,25 @@ int main() """ [[files]] -path = "/home/user/test.py" +path = "/home/user/hello-redox/test.py" data = """ print("Hello, Redox!") """ [[files]] -path = "/home/user/test.lua" +path = "/home/user/hello-redox/test.lua" data = """ print("Hello, Redox!") """ [[files]] -path = "/home/user/test.js" +path = "/home/user/hello-redox/test.js" data = """ console.log("Hello Redox"); """ [[files]] -path = "/home/user/test.java" +path = "/home/user/hello-redox/test.java" data = """ public class Java { public static void main(String[] args) {