2020-06-09 03:54:21 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
cd tests
|
|
|
|
|
|
|
|
echo 'testing awk'
|
2021-01-16 13:14:17 +01:00
|
|
|
../../cli/execute awk test.awk
|
2020-06-09 03:54:21 +02:00
|
|
|
echo 'testing c'
|
2021-01-16 13:14:17 +01:00
|
|
|
../../cli/execute c test.c
|
2020-06-09 03:54:21 +02:00
|
|
|
echo 'testing cpp'
|
2021-01-16 13:14:17 +01:00
|
|
|
../../cli/execute cpp test.cpp
|
2020-06-09 03:54:21 +02:00
|
|
|
echo 'testing cs'
|
2021-01-16 13:14:17 +01:00
|
|
|
../../cli/execute cs test.cs
|
2021-01-14 06:45:48 +01:00
|
|
|
echo 'testing deno'
|
2021-01-16 13:14:17 +01:00
|
|
|
../../cli/execute deno testdeno.ts
|
2020-06-09 04:43:23 +02:00
|
|
|
echo 'testing elisp'
|
2021-01-16 13:14:17 +01:00
|
|
|
../../cli/execute elisp test.el
|
2020-06-09 05:33:25 +02:00
|
|
|
echo 'testing elixir'
|
2021-01-16 13:14:17 +01:00
|
|
|
../../cli/execute exs test.exs
|
2020-06-09 03:54:21 +02:00
|
|
|
echo 'testing go'
|
2021-01-16 13:14:17 +01:00
|
|
|
../../cli/execute go test.go
|
2020-10-17 19:06:23 +02:00
|
|
|
echo 'testing haskell'
|
2021-01-16 13:14:17 +01:00
|
|
|
../../cli/execute haskell test.hs
|
2020-06-09 03:54:21 +02:00
|
|
|
echo 'testing java'
|
2021-01-16 13:14:17 +01:00
|
|
|
../../cli/execute java test.java
|
2021-01-14 06:45:48 +01:00
|
|
|
echo 'testing jelly'
|
2021-01-16 13:14:17 +01:00
|
|
|
../../cli/execute jelly test.jelly
|
2020-06-09 05:33:25 +02:00
|
|
|
echo 'testing jl'
|
2021-01-16 13:14:17 +01:00
|
|
|
../../cli/execute jl test.jl
|
2020-06-09 05:33:25 +02:00
|
|
|
echo 'testing js'
|
2021-01-16 13:14:17 +01:00
|
|
|
../../cli/execute js test.js
|
2020-06-09 03:54:21 +02:00
|
|
|
echo 'testing kotlin'
|
2021-01-16 13:14:17 +01:00
|
|
|
../../cli/execute kotlin test.kt
|
2020-10-03 07:47:13 +02:00
|
|
|
echo 'testing asm 32 bit'
|
2021-01-16 13:14:17 +01:00
|
|
|
../../cli/execute asm test.nasm
|
2020-10-03 07:47:13 +02:00
|
|
|
echo 'testing asm 64 bit'
|
2021-01-16 13:14:17 +01:00
|
|
|
../../cli/execute asm64 test64.nasm
|
2020-06-09 03:54:21 +02:00
|
|
|
echo 'testing php'
|
2021-01-16 13:14:17 +01:00
|
|
|
../../cli/execute php test.php
|
2020-06-09 03:54:21 +02:00
|
|
|
echo 'testing perl'
|
2021-01-16 13:14:17 +01:00
|
|
|
../../cli/execute perl test.pl
|
2020-06-09 03:54:21 +02:00
|
|
|
echo 'testing ruby'
|
2021-01-16 13:14:17 +01:00
|
|
|
../../cli/execute ruby test.rb
|
2020-06-09 03:54:21 +02:00
|
|
|
echo 'testing rust'
|
2021-01-16 13:14:17 +01:00
|
|
|
../../cli/execute rust test.rs
|
2020-06-09 03:54:21 +02:00
|
|
|
echo 'testing bash'
|
2021-01-16 13:14:17 +01:00
|
|
|
../../cli/execute bash test.sh
|
2020-06-09 05:33:25 +02:00
|
|
|
echo 'testing swift'
|
2021-01-16 13:14:17 +01:00
|
|
|
../../cli/execute swift test.swift
|
2020-06-09 03:54:21 +02:00
|
|
|
echo 'testing typescript'
|
2021-01-16 13:14:17 +01:00
|
|
|
../../cli/execute typescript test.ts
|
2020-06-09 05:33:25 +02:00
|
|
|
echo 'testing python2'
|
2021-01-16 13:14:17 +01:00
|
|
|
../../cli/execute python2 test2.py
|
2020-06-09 05:33:25 +02:00
|
|
|
echo 'testing python3'
|
2021-01-16 13:14:17 +01:00
|
|
|
../../cli/execute python3 test3.py
|
2020-10-23 00:25:57 +02:00
|
|
|
echo 'testing paradoc'
|
2021-01-16 13:14:17 +01:00
|
|
|
../../cli/execute python3 test_paradoc.py
|