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

⟦be8fc6892⟧ TextFile

    Length: 443 (0x1bb)
    Types: TextFile
    Names: »testc.run«

Derivation

└─⟦db229ac7e⟧ Bits:30007240 EUUGD20: SSBA 1.2 / AFW Benchmarks
    └─⟦this⟧ »EUUGD20/AFUU-ssba1.21/ssba1.21E/testc/testc.run« 

TextFile

#! /bin/sh
#				SSBA 1.21E
#
# Script : testc.run
#
b=testc
TIME=../config/chrono
jou=$b.jou
log=$b.log
res=$b.res
echo "kill -9 $$" >$b.kill
chmod u+x $b.kill
cat $b.kill >> ../ssba/ssba.kill
d=`date`
echo "TESTC:	BEGIN execution at $d" >$log
	cat $b.doc >$res
	$TIME make testc.o -f testc.mk 1>>$log 2>verif
	if [ -f testc.o ]; then
	cat verif >>$res
	else
	echo "compiler error" >>$res
	fi
d=`date`
echo "TESTC:	END execution at $d" >>$log