19d007a6fc
openib BTL changes coming soon. This commit was SVN r23385.
75 строки
1.6 KiB
Bash
Исполняемый файл
75 строки
1.6 KiB
Bash
Исполняемый файл
#!/bin/sh
|
|
#
|
|
# Copyright (c) 2010 Oracle and/or its affiliates. All rights reserved.
|
|
#
|
|
# $COPYRIGHT$
|
|
#
|
|
# Additional copyrights may follow
|
|
#
|
|
# $HEADER$
|
|
#
|
|
|
|
# This scripts runs a diff between the ob1 and bfo files. This
|
|
# allows us to quickly see the differences between the two and
|
|
# how well the bfo files are tracking ob1 as it changes. You
|
|
# can also modify this, and run it from the csum directory.
|
|
|
|
CP=/bin/cp
|
|
MKDIR=/bin/mkdir
|
|
RM=/bin/rm
|
|
TOUCH=/bin/touch
|
|
pml=bfo
|
|
PML=BFO
|
|
ob1=ob1
|
|
OB1=OB1
|
|
DIFF=$ob1-$pml.diff
|
|
DIFFDIR=diff-dir
|
|
|
|
$MKDIR $DIFFDIR
|
|
|
|
# Only diff a subset of files that are known to be different.
|
|
FILES="Makefile.am \
|
|
pml_NAME.c \
|
|
pml_NAME.h \
|
|
pml_NAME_component.c \
|
|
pml_NAME_component.h \
|
|
pml_NAME_hdr.h \
|
|
pml_NAME_rdmafrag.h \
|
|
pml_NAME_recvfrag.c \
|
|
pml_NAME_recvreq.c \
|
|
pml_NAME_recvreq.h \
|
|
pml_NAME_sendreq.c \
|
|
pml_NAME_sendreq.h"
|
|
|
|
# Copy over the files from the bfo directory.
|
|
for name in $FILES
|
|
do
|
|
$CP `echo $name | sed s/NAME/$pml/` $DIFFDIR
|
|
done
|
|
|
|
cd $DIFFDIR
|
|
# Convert the pml/PML strings back into ob1/OB1 strings
|
|
# to avoid spurious differences between the files.
|
|
../../../../../contrib/search_replace.pl $pml $ob1
|
|
../../../../../contrib/search_replace.pl $PML $OB1
|
|
|
|
# Copy over the files from the ob1 directory.
|
|
for name in $FILES
|
|
do
|
|
$CP ../../ob1/`echo $name | sed s/NAME/$ob1/` .
|
|
done
|
|
|
|
$RM -f $DIFF
|
|
$TOUCH $DIFF
|
|
|
|
# Now run the diff.
|
|
for name in $FILES
|
|
do
|
|
diff -c `echo $name | sed s/NAME/$ob1/` `echo $name | sed s/NAME/$pml/` >> $DIFF
|
|
done
|
|
|
|
# Cleanup
|
|
mv $DIFF ..
|
|
cd ..
|
|
$RM -rf $DIFFDIR
|