anntp

a nntp implementation in pure C99
Log | Files | Refs | README | LICENSE

commit ddea6d9b62933d99e4cb7e2b425ac85bc6594a8b
parent a346839c20ee59260a95cc5664925a28d9618e55
Author: Mario Rosell R. Martinez <mario@mariorosell.es>
Date:   Sat, 28 Mar 2026 22:06:28 +0100

tests: Add test runner

for conveniency

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

diff --git a/run-tests.sh b/run-tests.sh @@ -0,0 +1,14 @@ +#!/bin/sh +# +# run-tests.sh -- test runner +# + +if ! [ -f "./tests" ]; then + make +fi + +LOGIN="$1" +PASS="$2" + +NNTP_USER="$LOGIN" NNTP_PASS="$PASS" ./tests +