irctk

libircclient binding for scripts
git clone https://a3nm.net/git/irctk/
Log | Files | Refs | README

commit 6adb3d52af94a08623ad4c2943124a7801277bfc
parent 81ed50c176574db56ec52a456a5c27df282936ee
Author: Antoine Amarilli <a3nm@a3nm.net>
Date:   Tue,  7 Aug 2012 22:08:36 +0200

add script to run tests

Diffstat:
tests.sh | 12++++++++++++
1 file changed, 12 insertions(+), 0 deletions(-)

diff --git a/tests.sh b/tests.sh @@ -0,0 +1,12 @@ +#!/bin/bash + +cd test +# create fifos, ignore error if they already exist +mkfifo fifo fifo1 fifo2 fifo3 2> /dev/null +for t in *.sh +do + echo -n "$t... " + ./$t || { echo "FAILED!"; exit 1; } + echo "passed." +done +