You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lua-ngcp-kamailio/run_tests.sh

10 lines
151 B

#!/bin/bash
mkdir -p reports
rm -rf reports/*
for f in tests/*.lua; do
NAME=$(basename ${f} .lua)
lua5.1 ${f} > reports/${NAME}.tap
done
#EOF