head 1.8; access; symbols MM_1_1_3:1.6 MM_1_1_2:1.6 MM_1_1_1:1.6 MM_1_1_0:1.6 MM_1_0_12:1.5 MM_1_0_11:1.5 MM_1_0_10:1.4 MM_1_0_9:1.3 MM_1_0_8:1.3 MM_1_0_7:1.3 MM_1_0_6:1.3 MM_1_0_5:1.3 MM_1_0_4:1.2 MM_1_0_3:1.2 MM_1_0_1:1.2 MM_1_0_0:1.2 MM_1_0b6:1.2 MM_1_0b5:1.2 MM_1_0b4:1.2 MM_1_0b3:1.2 MM_1_0b2plus:1.1.1.1 RSE:1.1.1; locks; strict; comment @# @; 1.8 date 2002.07.26.13.04.40; author rse; state dead; branches; next 1.7; 1.7 date 2001.01.29.20.27.22; author rse; state Exp; branches; next 1.6; 1.6 date 2000.01.09.20.19.40; author rse; state Exp; branches; next 1.5; 1.5 date 99.09.06.12.10.34; author rse; state Exp; branches; next 1.4; 1.4 date 99.07.23.05.58.46; author rse; state Exp; branches; next 1.3; 1.3 date 99.05.28.06.56.22; author rse; state Exp; branches; next 1.2; 1.2 date 99.03.15.12.58.49; author rse; state Exp; branches; next 1.1; 1.1 date 99.03.15.11.12.50; author rse; state Exp; branches 1.1.1.1; next ; 1.1.1.1 date 99.03.15.11.12.50; author rse; state Exp; branches; next ; desc @@ 1.8 log @major source tree overhauling @ text @#!/bin/sh ## ## fbtool -- MM library feedback tool ## Copyright (c) 1999-2001 Ralf S. Engelschall, All Rights Reserved. ## if [ ! -f .fbtool ]; then echo "fbtool:Error: still no results known"; exit 1 fi result=`cat .fbtool` VERSION=`./shtool version -l c -d long mm_vers.c` PLATFORM=`/bin/sh ./config.guess` PLATFORM=`/bin/sh ./config.sub $PLATFORM` VMPS=`grep MM_VMPS_ mm_conf.h | grep define | sed -e 's;.*MM_;MM_;' -e 's; .*;;'`; \ SHMT=`grep MM_SHMT_ mm_conf.h | grep define | sed -e 's;.*MM_;MM_;' -e 's; .*;;'`; \ SEMT=`grep MM_SEMT_ mm_conf.h | grep define | sed -e 's;.*MM_;MM_;' -e 's; .*;;'`; \ SEGS=`grep MM_SHM_MAXSEGSIZE mm_conf.h | grep define | sed -e 's;.*SIZE *;;' -e 's; .*;;'`; \ TMP=".fbsummary" rm -f $TMP >/dev/null 2>&1 touch $TMP echo "+-MM-Library-Test-Suite-Summary---------------------------" >>$TMP echo "| Library Version : MM $VERSION" >>$TMP echo "| Platform : $PLATFORM" >>$TMP echo "| Memory Page Size Type : $VMPS" >>$TMP echo "| Shared Memory Type : $SHMT" >>$TMP echo "| Semaphore Type : $SEMT" >>$TMP echo "| Maximum Segment Size : $SEGS" >>$TMP echo "| Test Suite : $result" >>$TMP echo "+---------------------------------------------------------" >>$TMP case $1 in -d ) cat $TMP ;; -s ) ;; esac rm -f $TMP >/dev/null 2>&1 @ 1.7 log @*** empty log message *** @ text @@ 1.6 log @*** empty log message *** @ text @d4 1 a4 1 ## Copyright (c) 1999-2000 Ralf S. Engelschall, All Rights Reserved. @ 1.5 log @*** empty log message *** @ text @d4 1 a4 1 ## Copyright (c) 1999 Ralf S. Engelschall, All Rights Reserved. @ 1.4 log @*** empty log message *** @ text @d15 2 a16 2 PLATFORM=`./config.guess` PLATFORM=`./config.sub $PLATFORM` @ 1.3 log @*** empty log message *** @ text @d13 2 d27 1 @ 1.2 log @*** empty log message *** @ text @d3 1 a3 1 ## feedback -- MM library feedback script @ 1.1 log @Initial revision @ text @d19 1 d29 1 @ 1.1.1.1 log @Import into CVS @ text @@