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