piston/tests/test_all_lxc

37 lines
844 B
Plaintext
Raw Normal View History

#!/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 go'
../lxc/execute go test.go
echo 'testing java'
../lxc/execute java test.java
echo 'testing asm'
../lxc/execute asm test.nasm
echo 'testing js'
../lxc/execute js test.js
2020-05-02 06:04:48 +02:00
echo 'testing jl'
../lxc/execute jl test.jl
echo 'testing php'
../lxc/execute php test.php
echo 'testing python2'
../lxc/execute python2 test2.py
echo 'testing python3'
../lxc/execute python3 test3.py
echo 'testing ruby'
../lxc/execute ruby test.rb
2019-05-31 20:59:51 +02:00
echo 'testing rust'
../lxc/execute rust test.rs
echo 'testing swift'
../lxc/execute swift test.swift
2019-06-11 06:57:25 +02:00
echo 'testing bash'
../lxc/execute bash test.sh
2019-08-08 18:42:30 +02:00
echo 'testing typescript'
../lxc/execute typescript test.ts