diff --git a/lxc/test_all_lxc b/lxc/test_all_lxc new file mode 100755 index 0000000..dc018a9 --- /dev/null +++ b/lxc/test_all_lxc @@ -0,0 +1,43 @@ +#!/usr/bin/env bash +cd tests + +echo 'testing awk' +../execute awk test.awk +echo 'testing c' +../execute c test.c +echo 'testing cpp' +../execute cpp test.cpp +echo 'testing cs' +../execute cs test.cs +#echo 'testing elixir' +#../execute exs test.exs +echo 'testing go' +../execute go test.go +echo 'testing java' +../execute java test.java +echo 'testing kotlin' +../execute kotlin test.kt +echo 'testing asm' +../execute asm test.nasm +echo 'testing js' +../execute js test.js +echo 'testing jl' +../execute jl test.jl +echo 'testing php' +../execute php test.php +echo 'testing perl' +../execute perl test.pl +echo 'testing python2' +../execute python2 test2.py +echo 'testing python3' +../execute python3 test3.py +echo 'testing ruby' +../execute ruby test.rb +echo 'testing rust' +../execute rust test.rs +echo 'testing swift' +../execute swift test.swift +echo 'testing bash' +../execute bash test.sh +echo 'testing typescript' +../execute typescript test.ts diff --git a/tests/test.awk b/lxc/tests/test.awk similarity index 100% rename from tests/test.awk rename to lxc/tests/test.awk diff --git a/tests/test.c b/lxc/tests/test.c similarity index 100% rename from tests/test.c rename to lxc/tests/test.c diff --git a/tests/test.cpp b/lxc/tests/test.cpp similarity index 100% rename from tests/test.cpp rename to lxc/tests/test.cpp diff --git a/tests/test.cs b/lxc/tests/test.cs similarity index 100% rename from tests/test.cs rename to lxc/tests/test.cs diff --git a/tests/test.el b/lxc/tests/test.el similarity index 100% rename from tests/test.el rename to lxc/tests/test.el diff --git a/lxc/test.exs b/lxc/tests/test.exs similarity index 100% rename from lxc/test.exs rename to lxc/tests/test.exs diff --git a/tests/test.go b/lxc/tests/test.go similarity index 100% rename from tests/test.go rename to lxc/tests/test.go diff --git a/tests/test.java b/lxc/tests/test.java similarity index 100% rename from tests/test.java rename to lxc/tests/test.java diff --git a/tests/test.jl b/lxc/tests/test.jl similarity index 100% rename from tests/test.jl rename to lxc/tests/test.jl diff --git a/tests/test.js b/lxc/tests/test.js similarity index 100% rename from tests/test.js rename to lxc/tests/test.js diff --git a/tests/test.kt b/lxc/tests/test.kt similarity index 100% rename from tests/test.kt rename to lxc/tests/test.kt diff --git a/tests/test.nasm b/lxc/tests/test.nasm similarity index 100% rename from tests/test.nasm rename to lxc/tests/test.nasm diff --git a/tests/test.php b/lxc/tests/test.php similarity index 100% rename from tests/test.php rename to lxc/tests/test.php diff --git a/tests/test.pl b/lxc/tests/test.pl similarity index 100% rename from tests/test.pl rename to lxc/tests/test.pl diff --git a/tests/test.rb b/lxc/tests/test.rb similarity index 100% rename from tests/test.rb rename to lxc/tests/test.rb diff --git a/tests/test.rs b/lxc/tests/test.rs similarity index 100% rename from tests/test.rs rename to lxc/tests/test.rs diff --git a/tests/test.sh b/lxc/tests/test.sh similarity index 100% rename from tests/test.sh rename to lxc/tests/test.sh diff --git a/tests/test.swift b/lxc/tests/test.swift similarity index 100% rename from tests/test.swift rename to lxc/tests/test.swift diff --git a/tests/test.ts b/lxc/tests/test.ts similarity index 100% rename from tests/test.ts rename to lxc/tests/test.ts diff --git a/tests/test2.py b/lxc/tests/test2.py similarity index 100% rename from tests/test2.py rename to lxc/tests/test2.py diff --git a/tests/test3.py b/lxc/tests/test3.py similarity index 100% rename from tests/test3.py rename to lxc/tests/test3.py diff --git a/tests/test.exs b/tests/test.exs deleted file mode 100644 index 4c8d8b0..0000000 --- a/tests/test.exs +++ /dev/null @@ -1 +0,0 @@ -IO.puts("good") diff --git a/tests/test_all_lxc b/tests/test_all_lxc deleted file mode 100755 index ea8f3e4..0000000 --- a/tests/test_all_lxc +++ /dev/null @@ -1,42 +0,0 @@ -#!/usr/bin/env bash - -echo 'testing awk' -../lxc/execute awk test.awk -echo 'testing c' -../lxc/execute c test.c -echo 'testing cpp' -../lxc/execute cpp test.cpp -echo 'testing cs' -../lxc/execute cs test.cs -#echo 'testing elixir' -#../lxc/execute exs test.exs -echo 'testing go' -../lxc/execute go test.go -echo 'testing java' -../lxc/execute java test.java -echo 'testing kotlin' -../lxc/execute kotlin test.kt -echo 'testing asm' -../lxc/execute asm test.nasm -echo 'testing js' -../lxc/execute js test.js -echo 'testing jl' -../lxc/execute jl test.jl -echo 'testing php' -../lxc/execute php test.php -echo 'testing perl' -../lxc/execute perl test.pl -echo 'testing python2' -../lxc/execute python2 test2.py -echo 'testing python3' -../lxc/execute python3 test3.py -echo 'testing ruby' -../lxc/execute ruby test.rb -echo 'testing rust' -../lxc/execute rust test.rs -echo 'testing swift' -../lxc/execute swift test.swift -echo 'testing bash' -../lxc/execute bash test.sh -echo 'testing typescript' -../lxc/execute typescript test.ts