Move compilation tests to "hello-redox" folder

This commit is contained in:
Ribbon 2025-09-30 05:30:07 -03:00
parent 3bbbcf412f
commit ee1505187c

View File

@ -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 <stdio.h>
@ -39,7 +39,7 @@ int main(void) {
"""
[[files]]
path = "/home/user/test.cpp"
path = "/home/user/hello-redox/test.cpp"
data = """
#include <iostream>
@ -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) {