mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-07-03 10:08:45 +08:00
Move compilation tests to "hello-redox" folder
This commit is contained in:
parent
3bbbcf412f
commit
ee1505187c
@ -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) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user