Skip to content

Commit

Permalink
Enhance diff.sh to include file difference
Browse files Browse the repository at this point in the history
Signed-off-by: Sophia Guo <[email protected]>
  • Loading branch information
sophia-guo committed Sep 13, 2024
1 parent 8c95479 commit 27f06d2
Showing 1 changed file with 91 additions and 43 deletions.
134 changes: 91 additions & 43 deletions jck/diff/diff.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,18 +8,21 @@ setup()
if [[ $VERSION1 == $VERSION2 ]] ; then
echo "Please provide two different repositories to compare"
exit 1;
fi

fi

if [[ "$VERSION1" > "$VERSION2" ]]; then
temp="$VERSION1"
VERSION1="$VERSION2"
VERSION2="$temp"
temp="$REPO1"
REPO1="$REPO2"
REPO2="$temp"
fi

VERSION_VALUE1="$VERSION1"
VERSION_VALUE2="$VERSION2"
if [[ "$VERSION1" -eq 8 ]] ; then
VERSION_VALUE1="$VERSION1"c
else
VERSION_VALUE1="$VERSION1"
fi

if [[ "$VERSION2" -eq 8 ]] ; then
VERSION_VALUE2="$VERSION2"c
else
VERSION_VALUE2="$VERSION2"
fi

WORKDIR=$(pwd)/workspace
Expand All @@ -34,45 +37,85 @@ setup()
else
rmdir "$WORKDIR/logs"
mkdir -p "$WORKDIR/logs"
fi
fi
}

clone()
{
cd $WORKDIR
cd "$WORKDIR" || exit1
version=$1
repo=$2
if [ -d "$WORKDIR/$version" ] ; then
echo "Using existing test repo at: $WORKDIR/$version"
else
echo "Git cloning test materials from $repo..."
git clone --depth 1 -q $repo $version
git clone --depth 1 -q "$repo" "$version"
if [[ $? != 0 ]]; then
exit 1;
fi
fi
}

compare()
compareGroups()
{
dirName=$1
cd $WORKDIR/$VERSION1/JCK-$dirName-$VERSION_VALUE1/tests
echo "Listing test directories under $dirName at: `pwd`"
find . -maxdepth 2 -mindepth 2 -type d > $WORKDIR/logs/$dirName-$VERSION_VALUE1.txt

cd $WORKDIR/$VERSION2/JCK-$dirName-$VERSION_VALUE2/tests
echo "Listing test directories under $dirName at: `pwd`"
find . -maxdepth 2 -mindepth 2 -type d > $WORKDIR/logs/$dirName-$VERSION_VALUE2.txt

if cmp -s $WORKDIR/logs/$dirName-$VERSION_VALUE1.txt $WORKDIR/logs/$dirName-$VERSION_VALUE2.txt; then
echo "SAME : '$dirName' folder identical in both given versions: $VERSION1 & $VERSION2"
else
diff $WORKDIR/logs/$dirName-$VERSION_VALUE1.txt $WORKDIR/logs/$dirName-$VERSION_VALUE2.txt > $WORKDIR/logs/$dirName-diff.txt
echo "DIFFERENT : '$dirName' folder content are different in two given versions: $VERSION1 & $VERSION2"
jdkVersion1TestDir="${WORKDIR}/${VERSION1}/JCK-${dirName}-${VERSION_VALUE1}/tests"
jdkVersion2TestDir="${WORKDIR}/${VERSION2}/JCK-${dirName}-${VERSION_VALUE2}/tests"

rc=0
find "${jdkVersion1TestDir}" -maxdepth 2 -mindepth 2 -type d | sed "s|${jdkVersion1TestDir}||" | sort > "$WORKDIR/logs/$dirName-groups-${VERSION_VALUE1}.txt"
find "${jdkVersion2TestDir}" -maxdepth 2 -mindepth 2 -type d | sed "s|${jdkVersion2TestDir}||" | sort > "$WORKDIR/logs/$dirName-groups-${VERSION_VALUE2}.txt"

if [[ "${dirName}" == "runtime" ]]; then
find "${jdkVersion1TestDir}/vm/verifier" -maxdepth 1 -mindepth 1 -type d | sed "s|${jdkVersion1TestDir}||" | sort >> "$WORKDIR/logs/$dirName-groups-${VERSION_VALUE1}.txt"
find "${jdkVersion2TestDir}/vm/verifier" -maxdepth 1 -mindepth 1 -type d | sed "s|${jdkVersion2TestDir}||" | sort >> "$WORKDIR/logs/$dirName-groups-${VERSION_VALUE2}.txt"
fi

# Compare if playlist test groups are different
diff "$WORKDIR/logs/$dirName-groups-$VERSION_VALUE1.txt" "$WORKDIR/logs/$dirName-groups-$VERSION_VALUE2.txt" > "$WORKDIR/logs/$dirName-groups-diff.txt" || rc=$?
if [ $rc -eq 0 ]; then
echo "SAME GROUPS : Groups under '$dirName' are identical in given versions: $VERSION1 & $VERSION2"
else
echo "DIFFERENT GROUPS: Groups under '$dirName' are different in two given versions: $VERSION1 & $VERSION2"
echo "Please manually investigate the following differences in the two given repositories:"
cat $WORKDIR/logs/$dirName-diff.txt
return 1
fi
cat "$WORKDIR/logs/$dirName-groups-diff.txt"
fi
return $rc
}

compareNewTestsInSubGroups() {
subGroups=("vm.verifier.instructions" "lang.CLSS" "lang.EXPR" "lang.CONV" "lang.INTF" "lang.LMBD" "lang.DASG" "lang.NAME" "lang.TYPE" "lang.ANNOT" "lang.STMT")
cat > "$WORKDIR/logs/NewTestsInSubGroups.txt"
for group in "${subGroups[@]}"; do
grep "${group}" "${WORKDIR}/${VERSION2}/JCK-compiler-${VERSION_VALUE2}/NewTests.txt" | sort | uniq >> "$WORKDIR/logs/NewTestsInSubGroups.txt"
done
rc=0
if [ ! -s "$WORKDIR/logs/NewTestsInSubGroups.txt" ]; then
echo " No Subdir Group changes."
else
cat > "$WORKDIR/logs/DiffsInSubGroups.txt"
while IFS= read -r line; do
subdir=$(echo "$line" | tr '.' '/' | sed 's/[[:blank:]]//g')
component="compiler"
if [[ "$subdir" == *"verifier"* ]]; then
component="runtime"
fi
diff "${WORKDIR}/${VERSION1}/JCK-${component}-${VERSION_VALUE1}/tests/${subdir}" "${WORKDIR}/${VERSION2}/JCK-${component}-${VERSION_VALUE2}/tests/${subdir}" >> "$WORKDIR/logs/DiffsInSubGroups.txt"
done < "$WORKDIR/logs/NewTestsInSubGroups.txt"
sed -n '/Only in /p' "$WORKDIR/logs/DiffsInSubGroups.txt" | sort > "$WORKDIR/logs/tmp.txt" && mv "$WORKDIR/logs/tmp.txt" "$WORKDIR/logs/DiffsInSubGroups.txt"
echo "NOTE: ACTION TO DO - Delete tests Only in ${WORKDIR}/${VERSION1}/ from jck/subdirs/jck${VERSION_VALUE2}.mk"
echo "NOTE: ACTION TO DO - Add tests Only in ${WORKDIR}/${VERSION2}/ to jck/subdirs/jck${VERSION_VALUE2}.mk"
cat "$WORKDIR/logs/DiffsInSubGroups.txt"
rc=1
fi
return $rc
}

jobTime() {
end_time="$(date -u +%s)"
date
elapsed="$((end_time-begin_time))"
echo "Total analysis took ~ $elapsed seconds."
}

date
Expand All @@ -85,20 +128,25 @@ diffFound=0

setup

clone $VERSION1 $REPO1
clone $VERSION2 $REPO2

compare runtime
diffFound=$?
compare compiler
clone "$VERSION1" "$REPO1"
clone "$VERSION2" "$REPO2"

echo "Compare per playlist TestCases =================================================="
echo ""
for comp in "runtime" "compiler"; do
compareGroups "${comp}"
diffFound=$(( diffFound + $? ))
done
echo "Compare per playlist TestCases Done =============================================="
echo ""
echo "Compare New Tests with Sub Groups in jckversion.mk ==============================="
# Check if new tests are part of subdir make targets to ensure tests groups are updated
compareNewTestsInSubGroups
diffFound=$(( diffFound + $? ))

end_time="$(date -u +%s)"
echo "Done!"
date
elapsed="$(($end_time-$begin_time))"
echo "Total analysis took ~ $elapsed seconds."
echo "Compare New Tests with Sub Groups in jckversion.mk Done ==============================="
echo ""
jobTime

if [[ $diffFound != 0 ]]; then
exit 1;
exit 1
fi

0 comments on commit 27f06d2

Please sign in to comment.