mirror of
https://github.com/prymitive/karma
synced 2026-02-13 20:59:53 +00:00
8 lines
198 B
Bash
Executable File
8 lines
198 B
Bash
Executable File
#!/bin/bash -e
|
|
|
|
for I in ./cmd/karma/tests/testscript/*.txt ; do
|
|
T=`basename "${I}" | cut -d. -f1`
|
|
echo ">>> ${T}"
|
|
go test -count=1 -timeout=30s -v -run=TestScript/${T} ./cmd/karma
|
|
done
|