view tests/run-tests.sh @ 120:fce73e4afa15

Make a start on refactoring: work the DB header initialization into its own function, used from both initTables and batchinsert. This actually removes a mmap()/munmap() pair from inside the batchinsert loop over files. Not really sure why that was there in the first place; maybe to sync the header to disk more forcefully? In any case, no change in behaviour should happen as a result of this code change.
author mas01cr
date Tue, 16 Oct 2007 11:47:51 +0000
parents 1fc7f47b422b
children 218106b4db14
line wrap: on
line source
#! /bin/sh

AUDIODB=../../${EXECUTABLE:-audioDB}
export AUDIODB

if [ -x ${AUDIODB:3} ]; then 
  :
else 
  echo Cannot execute audioDB: ${AUDIODB:3}
  exit 1
fi

for file in [0-9][0-9][0-9][0-9]*; do
  if [ -d ${file} ]; then
    if [ -f ${file}/run-test.sh ]; then
      echo -n Running test ${file}
      if [ -f ${file}/short-description ]; then
        awk '{ printf(" (%s)",$0) }' < ${file}/short-description
      fi
      echo -n :
      (cd ${file} && sh ./run-test.sh > test.out 2> test.err)
      EXIT_STATUS=$?
      if [ ${EXIT_STATUS} -ne 104 ]; then
        echo " failed (exit status ${EXIT_STATUS})".
        FAILED=true
      else
        echo " success."
      fi
    else
      echo Skipping test ${file}
    fi
  fi
done

if [ -z "${FAILED}" ]; then
  exit 0
else
  exit 1
fi