adding quickfix

This commit is contained in:
Ramiro Paz
2026-03-09 15:35:32 -03:00
parent 0e8fe168ef
commit fe588e92f1
1222 changed files with 1408232 additions and 1 deletions

15
quickfix/_test/runat.sh Executable file
View File

@ -0,0 +1,15 @@
#!/bin/sh
CFG=$1
PORT=$2
STORETYPE=$3
TESTS=$4
./echo_server $CFG $STORETYPE &
pid=$!
ruby -I. Runner.rb 127.0.0.1 $PORT $TESTS
result=$?
kill -kill $pid
exit $result