DataMuseum.dk

Presents historical artifacts from the history of:

DKUUG/EUUG Conference tapes

This is an automatic "excavation" of a thematic subset of
artifacts from Datamuseum.dk's BitArchive.

See our Wiki for more about DKUUG/EUUG Conference tapes

Excavated with: AutoArchaeologist - Free & Open Source Software.


top - metrics - download

⟦2b2aee960⟧ TextFile

    Length: 455 (0x1c7)
    Types: TextFile
    Names: »regress.sh«

Derivation

└─⟦a05ed705a⟧ Bits:30007078 DKUUG GNU 2/12/89
    └─⟦8185d185c⟧ »./grep-1.5.tar.Z« 
        └─⟦7013115ca⟧ 
            └─⟦this⟧ »grep-1.5/tests/regress.sh« 
└─⟦a05ed705a⟧ Bits:30007078 DKUUG GNU 2/12/89
    └─⟦f7bc72012⟧ »./grep-1.4.tar.Z« 
        └─⟦a84cb5e66⟧ 
            └─⟦this⟧ »grep-1.4/tests/regress.sh« 
└─⟦9ae75bfbd⟧ Bits:30007242 EUUGD3: Starter Kit
    └─⟦6969b3952⟧ »EurOpenD3/gnu/grep-1.3.tar.Z« 
        └─⟦f9ec7831d⟧ 
            └─⟦this⟧ »grep-1.3/tests/regress.sh« 

TextFile

#! /bin/sh -

failures=0

# The Khadafy test is brought to you by Scott Anderson . . .
../egrep -f khadafy.regexp khadafy.lines > khadafy.out
if cmp khadafy.lines khadafy.out
then
	rm khadafy.out
else
	echo Khadafy test failed -- output left on khadafy.out
	failures=1
fi

# . . . and the following by Henry Spencer.

awk -F: -f scriptgen.awk spencer.tests > tmp.script

if sh tmp.script
then
	rm tmp.script
	exit $failures
else
	rm tmp.script
	exit 1
fi