anntp

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

run-tests.sh (151B)


      1 #!/bin/sh
      2 #
      3 # run-tests.sh -- test runner
      4 #
      5 
      6 if ! [ -f "./tests" ]; then
      7 	make
      8 fi
      9 
     10 LOGIN="$1"
     11 PASS="$2"
     12 
     13 NNTP_USER="$LOGIN" NNTP_PASS="$PASS" ./tests
     14