diff --git a/lxc/test_all_lxc b/lxc/test_all_lxc index 122ccc4..473e888 100755 --- a/lxc/test_all_lxc +++ b/lxc/test_all_lxc @@ -2,54 +2,54 @@ cd tests echo 'testing awk' -../../cli/execute awk test.awk -echo 'testing c' -../../cli/execute c test.c -echo 'testing cpp' -../../cli/execute cpp test.cpp -echo 'testing cs' -../../cli/execute cs test.cs -echo 'testing deno' -../../cli/execute deno testdeno.ts -echo 'testing elisp' -../../cli/execute elisp test.el -echo 'testing elixir' -../../cli/execute exs test.exs -echo 'testing go' -../../cli/execute go test.go -echo 'testing haskell' -../../cli/execute haskell test.hs -echo 'testing java' -../../cli/execute java test.java -echo 'testing jelly' -../../cli/execute jelly test.jelly -echo 'testing jl' -../../cli/execute jl test.jl -echo 'testing js' -../../cli/execute js test.js -echo 'testing kotlin' -../../cli/execute kotlin test.kt -echo 'testing asm 32 bit' -../../cli/execute asm test.nasm -echo 'testing asm 64 bit' -../../cli/execute asm64 test64.nasm -echo 'testing php' -../../cli/execute php test.php -echo 'testing perl' -../../cli/execute perl test.pl -echo 'testing ruby' -../../cli/execute ruby test.rb -echo 'testing rust' -../../cli/execute rust test.rs +../../cli/execute awk awk.awk echo 'testing bash' -../../cli/execute bash test.sh -echo 'testing swift' -../../cli/execute swift test.swift -echo 'testing typescript' -../../cli/execute typescript test.ts -echo 'testing python2' -../../cli/execute python2 test2.py -echo 'testing python3' -../../cli/execute python3 test3.py +../../cli/execute bash bash.sh +echo 'testing c' +../../cli/execute c c.c +echo 'testing cpp' +../../cli/execute cpp cpp.cpp +echo 'testing csharp' +../../cli/execute csharp csharp.cs +echo 'testing deno' +../../cli/execute deno deno.ts +echo 'testing elixir' +../../cli/execute elixir elixir.exs +echo 'testing emacs' +../../cli/execute emacs emacs.el +echo 'testing go' +../../cli/execute go go.go +echo 'testing haskell' +../../cli/execute haskell haskell.hs +echo 'testing java' +../../cli/execute java java.java +echo 'testing jelly' +../../cli/execute jelly jelly.jelly good +echo 'testing julia' +../../cli/execute julia julia.jl +echo 'testing kotlin' +../../cli/execute kotlin kotlin.kt +echo 'testing nasm 32 bit' +../../cli/execute nasm nasm.nasm +echo 'testing nasm 64 bit' +../../cli/execute nasm64 nasm64.nasm +echo 'testing node' +../../cli/execute node node.js echo 'testing paradoc' -../../cli/execute bash test_paradoc.sh +../../cli/execute bash paradoc.sh +echo 'testing perl' +../../cli/execute perl perl.pl +echo 'testing php' +../../cli/execute php php.php +echo 'testing python2' +../../cli/execute python2 python2.py +echo 'testing python3' +../../cli/execute python3 python3.py +echo 'testing ruby' +../../cli/execute ruby ruby.rb +echo 'testing rust' +../../cli/execute rust rust.rs +echo 'testing swift' +../../cli/execute swift swift.swift +echo 'testing typescript' +../../cli/execute typescript typescript.ts diff --git a/lxc/tests/test.awk b/lxc/tests/awk.awk similarity index 100% rename from lxc/tests/test.awk rename to lxc/tests/awk.awk diff --git a/lxc/tests/test.sh b/lxc/tests/bash.sh similarity index 100% rename from lxc/tests/test.sh rename to lxc/tests/bash.sh diff --git a/lxc/tests/test.c b/lxc/tests/c.c similarity index 100% rename from lxc/tests/test.c rename to lxc/tests/c.c diff --git a/lxc/tests/test.cpp b/lxc/tests/cpp.cpp similarity index 100% rename from lxc/tests/test.cpp rename to lxc/tests/cpp.cpp diff --git a/lxc/tests/test.cs b/lxc/tests/csharp.cs similarity index 100% rename from lxc/tests/test.cs rename to lxc/tests/csharp.cs diff --git a/lxc/tests/testdeno.ts b/lxc/tests/deno.ts similarity index 100% rename from lxc/tests/testdeno.ts rename to lxc/tests/deno.ts diff --git a/lxc/tests/test.exs b/lxc/tests/elixir.exs similarity index 100% rename from lxc/tests/test.exs rename to lxc/tests/elixir.exs diff --git a/lxc/tests/test.el b/lxc/tests/emacs.el similarity index 100% rename from lxc/tests/test.el rename to lxc/tests/emacs.el diff --git a/lxc/tests/test.go b/lxc/tests/go.go similarity index 100% rename from lxc/tests/test.go rename to lxc/tests/go.go diff --git a/lxc/tests/test.hs b/lxc/tests/haskell.hs similarity index 100% rename from lxc/tests/test.hs rename to lxc/tests/haskell.hs diff --git a/lxc/tests/test.java b/lxc/tests/java.java similarity index 100% rename from lxc/tests/test.java rename to lxc/tests/java.java diff --git a/lxc/tests/jelly.jelly b/lxc/tests/jelly.jelly new file mode 100644 index 0000000..77a1774 --- /dev/null +++ b/lxc/tests/jelly.jelly @@ -0,0 +1 @@ +³ diff --git a/lxc/tests/test.jl b/lxc/tests/julia.jl similarity index 100% rename from lxc/tests/test.jl rename to lxc/tests/julia.jl diff --git a/lxc/tests/test.kt b/lxc/tests/kotlin.kt similarity index 100% rename from lxc/tests/test.kt rename to lxc/tests/kotlin.kt diff --git a/lxc/tests/test.nasm b/lxc/tests/nasm.nasm similarity index 100% rename from lxc/tests/test.nasm rename to lxc/tests/nasm.nasm diff --git a/lxc/tests/test64.nasm b/lxc/tests/nasm64.nasm similarity index 100% rename from lxc/tests/test64.nasm rename to lxc/tests/nasm64.nasm diff --git a/lxc/tests/test.nim b/lxc/tests/nim.nim similarity index 100% rename from lxc/tests/test.nim rename to lxc/tests/nim.nim diff --git a/lxc/tests/test.js b/lxc/tests/node.js similarity index 100% rename from lxc/tests/test.js rename to lxc/tests/node.js diff --git a/lxc/tests/test_paradoc.sh b/lxc/tests/paradoc.sh similarity index 100% rename from lxc/tests/test_paradoc.sh rename to lxc/tests/paradoc.sh diff --git a/lxc/tests/test.pl b/lxc/tests/perl.pl similarity index 100% rename from lxc/tests/test.pl rename to lxc/tests/perl.pl diff --git a/lxc/tests/test.php b/lxc/tests/php.php similarity index 100% rename from lxc/tests/test.php rename to lxc/tests/php.php diff --git a/lxc/tests/test2.py b/lxc/tests/python2.py similarity index 100% rename from lxc/tests/test2.py rename to lxc/tests/python2.py diff --git a/lxc/tests/test3.py b/lxc/tests/python3.py similarity index 100% rename from lxc/tests/test3.py rename to lxc/tests/python3.py diff --git a/lxc/tests/test.rb b/lxc/tests/ruby.rb similarity index 100% rename from lxc/tests/test.rb rename to lxc/tests/ruby.rb diff --git a/lxc/tests/test.rs b/lxc/tests/rust.rs similarity index 100% rename from lxc/tests/test.rs rename to lxc/tests/rust.rs diff --git a/lxc/tests/test.swift b/lxc/tests/swift.swift similarity index 100% rename from lxc/tests/test.swift rename to lxc/tests/swift.swift diff --git a/lxc/tests/test.jelly b/lxc/tests/test.jelly deleted file mode 100644 index e688ff7..0000000 --- a/lxc/tests/test.jelly +++ /dev/null @@ -1 +0,0 @@ -“3ḅaė;œ» diff --git a/lxc/tests/test.ts b/lxc/tests/typescript.ts similarity index 100% rename from lxc/tests/test.ts rename to lxc/tests/typescript.ts