diff options
author | cvs2svn <cvs2svn@FreeBSD.org> | 1999-05-14 11:54:55 +0000 |
---|---|---|
committer | cvs2svn <cvs2svn@FreeBSD.org> | 1999-05-14 11:54:55 +0000 |
commit | b919b8311bc5d38e5731d40525c88c54816f4530 (patch) | |
tree | 35bbb3a9293cb7a160571b1bceb1ca2a52507a18 /benchmarks/unixbench/files | |
parent | Despite what I said before, this is the official INDEX file for (diff) |
This commit was manufactured by cvs2svn to create tag 'RELEASE_3_2_0'.release/3.2.0
Diffstat (limited to 'benchmarks/unixbench/files')
-rw-r--r-- | benchmarks/unixbench/files/patch-aa | 37 | ||||
-rw-r--r-- | benchmarks/unixbench/files/patch-ab | 129 | ||||
-rw-r--r-- | benchmarks/unixbench/files/patch-ac | 15 | ||||
-rw-r--r-- | benchmarks/unixbench/files/patch-ad | 17 | ||||
-rw-r--r-- | benchmarks/unixbench/files/patch-ae | 10 |
5 files changed, 0 insertions, 208 deletions
diff --git a/benchmarks/unixbench/files/patch-aa b/benchmarks/unixbench/files/patch-aa deleted file mode 100644 index 8f09da7d9834..000000000000 --- a/benchmarks/unixbench/files/patch-aa +++ /dev/null @@ -1,37 +0,0 @@ -*** Makefile.orig Wed Feb 5 11:08:43 1992 ---- Makefile Mon Jan 1 23:20:07 1996 -*************** -*** 25,33 **** - ID="@(#)Makefile:3.9 -- 5/15/91 19:30:15"; - SHELL = /bin/sh -! #HZ = ???? #(read from environment) - CFLAGS = -DTIME -! OPTON = -O #optimization on (give it your best shot) -! # -- check your compiler man -! OPTOFF = -Od #optimization off -- check your compiler man - # local directories - PROGDIR = ./pgms ---- 25,34 ---- - ID="@(#)Makefile:3.9 -- 5/15/91 19:30:15"; - SHELL = /bin/sh -! HZ = 128 - CFLAGS = -DTIME -! OPTON = -s -static -O -finline-functions -funroll-loops -fomit-frame-pointer -! #optimization on (give it your best shot) -! # -- check your compiler man -! OPTOFF = -O0 -static #optimization off -- check your compiler man - # local directories - PROGDIR = ./pgms -*************** -*** 36,40 **** - TESTDIR = ./testdir -! RESULTDIR = ./results -! TMPDIR = ./tmp - # other directories - INCLDIR = /usr/include ---- 37,41 ---- - TESTDIR = ./testdir -! # RESULTDIR = ./results -! # TMPDIR = /var/tmp - # other directories - INCLDIR = /usr/include diff --git a/benchmarks/unixbench/files/patch-ab b/benchmarks/unixbench/files/patch-ab deleted file mode 100644 index 062decfb4f86..000000000000 --- a/benchmarks/unixbench/files/patch-ab +++ /dev/null @@ -1,129 +0,0 @@ -*** Run.orig Wed Feb 5 11:08:46 1992 ---- Run Fri Dec 18 22:48:52 1998 -*************** -*** 41,45 **** - # awk cat cc chmod comm cp date dc df echo ed expr - # kill ls make mkdir rm sed test time touch tty umask who -! # AND /bin/time - # to generate result indexes, you will also need ... - # join ---- 41,45 ---- - # awk cat cc chmod comm cp date dc df echo ed expr - # kill ls make mkdir rm sed test time touch tty umask who -! # AND /usr/bin/time - # to generate result indexes, you will also need ... - # join -*************** -*** 51,55 **** - then - # determine flavor of UNIX from number of lines generated by /bin/tim -! Fcount=`/bin/time date 2>&1 | wc -l | sed 's/ //g'` - case "$Fcount" - in ---- 51,55 ---- - then - # determine flavor of UNIX from number of lines generated by /bin/tim -! Fcount=`/usr/bin/time date 2>&1 | wc -l | sed 's/ //g'` - case "$Fcount" - in -*************** -*** 68,75 **** - export FLAVOR - # check that the required files are in the proper places -! if make check -! then : -! else make all -! fi - # - # ---- 68,75 ---- - export FLAVOR - # check that the required files are in the proper places -! #if make check -! # then : -! # else make all -! #fi - # - # -*************** -*** 93,97 **** - cd $PWD - -! TMPDIR=${HOMEDIR}/tmp - cd $TMPDIR - TMPDIR=`pwd` ---- 93,97 ---- - cd $PWD - -! TMPDIR=${TMPDIR-${HOMEDIR}/tmp} - cd $TMPDIR - TMPDIR=`pwd` -*************** -*** 304,312 **** - C) - logmsg="C Compiler Test" -! prog="looper ${looper-60} cc cctest.c" - stdout=/dev/null - repeat="$shortloop" - cleanopt="-m $TMPTIMES" -! rm -f ${TESTDIR}/cctest.o ${TESTDIR}/a.out - ;; - ---- 304,312 ---- - C) - logmsg="C Compiler Test" -! prog="looper ${looper-60} cc cctest.c -o ${TMPDIR}/a.out" - stdout=/dev/null - repeat="$shortloop" - cleanopt="-m $TMPTIMES" -! rm -f ${TESTDIR}/cctest.o ${TMPDIR}/a.out - ;; - -*************** -*** 324,329 **** - dc) - logmsg="Dc: sqrt(2) to 99 decimal places" -! prog="looper ${looper-60} dc" -! stdin=dc.dat - stdout=/dev/null - cleanopt="-m $TMPTIMES" ---- 324,329 ---- - dc) - logmsg="Dc: sqrt(2) to 99 decimal places" -! prog="looper ${looper-60} \"dc < ${TESTDIR}/dc.dat\"" -! stdin= - stdout=/dev/null - cleanopt="-m $TMPTIMES" -*************** -*** 418,426 **** - if test "$stdin" = "" - then # without redirected stdin -! /bin/time $prog $opt $bgstr 2>>$TMPTIMES >>$stdout - else # with redirected stdin -! /bin/time $prog $opt $bgstr <$stdin 2>>$TMPTIMES >>$stdout - fi -- /bin/time $benchcmd - ############################################### - cd $pwd # move back home ---- 418,425 ---- - if test "$stdin" = "" - then # without redirected stdin -! /usr/bin/time $prog $opt $bgstr 2>>$TMPTIMES >>$stdout - else # with redirected stdin -! /usr/bin/time $prog $opt $bgstr <$stdin 2>>$TMPTIMES >>$stdout - fi - ############################################### - cd $pwd # move back home -*************** -*** 451,455 **** - in - C) -! rm -f ${TESTDIR}/cctest.o ${TESTDIR}/a.out - ;; - ---- 451,455 ---- - in - C) -! rm -f ${TESTDIR}/cctest.o ${TMPDIR}/a.out - ;; - diff --git a/benchmarks/unixbench/files/patch-ac b/benchmarks/unixbench/files/patch-ac deleted file mode 100644 index 7cab0456099b..000000000000 --- a/benchmarks/unixbench/files/patch-ac +++ /dev/null @@ -1,15 +0,0 @@ -*** pgms/tst.sh.orig Wed Feb 5 11:08:39 1992 ---- pgms/tst.sh Fri Dec 18 23:10:07 1998 -*************** -*** 15,19 **** - ############################################################################### - ID="@(#)tst.sh:3.4 -- 5/15/91 19:30:24"; -! sort >sort.$$ <sort.src - od sort.$$ | sort -n +1 > od.$$ - grep the sort.$$ | tee grep.$$ | wc > wc.$$ ---- 15,19 ---- - ############################################################################### - ID="@(#)tst.sh:3.4 -- 5/15/91 19:30:24"; -! sort >sort.$$ < ${TESTDIR}/sort.src - od sort.$$ | sort -n +1 > od.$$ - grep the sort.$$ | tee grep.$$ | wc > wc.$$ diff --git a/benchmarks/unixbench/files/patch-ad b/benchmarks/unixbench/files/patch-ad deleted file mode 100644 index 12de4faa1333..000000000000 --- a/benchmarks/unixbench/files/patch-ad +++ /dev/null @@ -1,17 +0,0 @@ -*** pgms/cleanup.sh.orig Wed Feb 5 11:08:37 1992 ---- pgms/cleanup.sh Wed Jan 3 19:27:21 1996 -*************** -*** 87,92 **** - - -r) : reason for failure -! echo $1 -! echo $1 >>$LOGFILE - shift - ;; ---- 87,92 ---- - - -r) : reason for failure -! echo -e $1 -! echo -e $1 >>$LOGFILE - shift - ;; diff --git a/benchmarks/unixbench/files/patch-ae b/benchmarks/unixbench/files/patch-ae deleted file mode 100644 index 40131bbafc83..000000000000 --- a/benchmarks/unixbench/files/patch-ae +++ /dev/null @@ -1,10 +0,0 @@ -*** pgms/multi.sh.orig Thu Jan 4 15:16:20 1996 ---- pgms/multi.sh Thu Jan 4 15:17:26 1996 -*************** -*** 15,18 **** ---- 15,19 ---- - ############################################################################### - ID="@(#)multi.sh:3.4 -- 5/15/91 19:30:24"; -+ cd $TMPDIR - for i - do |