view libtests/run-tests.sh @ 406:c279adeb47f4 api-inversion

Slight rearrangement of insert code. Move most of audiodb_insert() into a helper function to create an adb_datum_t from an adb_insert_t. (Most of the rest of it goes into another helper function for cleaning up). Now audiodb_insert() is small enough that it's plausible to move the O2_FLAG_LARGE_ADB into it from audioDB::insert. The plan is to add support for the LARGE_ADB case in audiodb_insert(), at which point audiodb_batchinsert() will Just Work, and we'll be able to delete audioDB::batchinsert_large_adb (which is good, because it's an almost-but-not-quite-identical copy of audioDB::batchinsert).
author mas01cr
date Fri, 05 Dec 2008 22:56:12 +0000
parents cd63493c32a9
children 4cb6c611f812 342822c2d49a
line wrap: on
line source
#! /bin/bash

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

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

if [ "$1" = "--full" ]; then
  pattern="[0-9][0-9][0-9][0-9]*"
else
  pattern="[0-8][0-9][0-9][0-9]*"
fi

for file in ${pattern}; do
  if [ -d ${file} ]; then
    if [ /bin/true ]; then
      echo -n Running test ${file}
      if [ -f ${file}/short-description ]; then
        awk '{ printf(" (%s)",$0) }' < ${file}/short-description
      fi
      echo -n :
      (cd ${file} && make -f ../libtest.mk >/dev/null 2>&1 && ./test1 > test.out 2> test.err && exit 104)
      EXIT_STATUS=$?
      if [ ${EXIT_STATUS} -eq 14 ]; then
        echo " n/a."
      elif [ ${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