Mercurial > hg > toybox
view scripts/test.sh @ 1393:3e8ab37a4b60 draft
Find bugfixes.
The check for -print vs -print0 was tested before I optimized out the "-" in the strcmps, and I didn't adjust the offset or retest it. (Ooops.)
Also, I wasn't clearing the ! value when descending into parentheticals, so "find . -name blah -o \! \( -stuff -o -thing \)" acted like it had a spurious second ! before -stuff inside the parentheses.
author | Rob Landley <rob@landley.net> |
---|---|
date | Fri, 18 Jul 2014 18:31:41 -0500 |
parents | 7dd487ddd7dc |
children | 8700cbe1cb29 |
line wrap: on
line source
#!/bin/bash [ -z "$TOPDIR" ] && TOPDIR="$(pwd)" rm -rf testdir mkdir -p testdir/testdir if [ -z "$TEST_HOST" ] then if [ $# -ne 0 ] then PREFIX=testdir/ scripts/single.sh "$@" || exit 1 else make install_flat PREFIX=testdir || exit 1 fi fi cd testdir PATH="$PWD:$PATH" cd testdir . "$TOPDIR"/scripts/test/testing.sh [ -f "$TOPDIR/generated/config.h" ] && export OPTIONFLAGS=:$(echo $(sed -nr 's/^#define CFG_(.*) 1/\1/p' "$TOPDIR/generated/config.h") | sed 's/ /:/g') if [ $# -ne 0 ] then for i in "$@" do . "$TOPDIR"/scripts/test/$i.test done else for i in "$TOPDIR"/scripts/test/*.test do CMDNAME="$(echo "$i" | sed 's@.*/\(.*\)\.test@\1@')" if [ -h ../$CMDNAME ] || [ ! -z "$TEST_HOST" ] then cd .. && rm -rf testdir && mkdir testdir && cd testdir || exit 1 . $i else echo "$CMDNAME disabled" fi done fi