head 1.2; access; symbols RPM_4_2_1:1.1.1.1 RPM_4_2:1.1.1.1 RPM_4_1_1:1.1.1.1 RPM_4_1:1.1.1.1 RPM_4_0_5:1.1.1.1 RPM_4_0_4:1.1.1.1 RPM:1.1.1; locks; strict; comment @# @; 1.2 date 2008.01.02.10.00.14; author rse; state dead; branches; next 1.1; commitid z4cpSiAhOCXk5PLs; 1.1 date 2002.01.08.13.42.46; author rse; state Exp; branches 1.1.1.1; next ; 1.1.1.1 date 2002.01.08.13.42.46; author rse; state Exp; branches; next ; desc @@ 1.2 log @remove the ancient RPM 4.2.1 source tree copy @ text @#!/bin/sh - # Id: testall,v 1.4 2001/09/13 14:49:37 dda Exp # # Run all the Java regression tests ecode=0 prefixarg="" stdinarg="" while : do case "$1" in --prefix=* ) prefixarg="$1"; shift;; --stdin ) stdinarg="$1"; shift;; * ) break esac done files="`find . -name \*.java -print`" for file in $files; do name=`echo $file | sed -e 's:^\./::' -e 's/\.java$//'` if grep $name ignore > /dev/null; then echo " **** java test $name ignored" else echo " ==== java test $name" if ! sh ./testone $prefixarg $stdinarg $name; then ecode=1 fi fi done exit $ecode @ 1.1 log @Initial revision @ text @@ 1.1.1.1 log @Import: RPM 4.0.4 @ text @@