ecf06dbadb
Add a simple test to ensure package install files remain sorted alphabetically (follow-on from the sorting of the files done in I01e42defbf778626afd8dd457f93f0b02dd1a19d) Change-Id: I75568871e92afcd81dac2c3ce18b84aa34cdd289
33 lines
688 B
Bash
Executable File
33 lines
688 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# basic test to ensure that package-install files remain sorted
|
|
# alphabetically.
|
|
|
|
TOP=$(cd $(dirname "$0")/.. && pwd)
|
|
|
|
source $TOP/tests/unittest.sh
|
|
|
|
PKG_FILES=$(find $TOP/files/debs $TOP/files/rpms $TOP/files/rpms-suse -type f)
|
|
|
|
TMPDIR=$(mktemp -d)
|
|
|
|
SORTED=${TMPDIR}/sorted
|
|
UNSORTED=${TMPDIR}/unsorted
|
|
|
|
for p in $PKG_FILES; do
|
|
grep -v '^#' $p > ${UNSORTED}
|
|
sort ${UNSORTED} > ${SORTED}
|
|
|
|
if [ -n "$(diff -c ${UNSORTED} ${SORTED})" ]; then
|
|
failed "$p is unsorted"
|
|
# output this, it's helpful to see what exactly is unsorted
|
|
diff -c ${UNSORTED} ${SORTED}
|
|
else
|
|
passed "$p is sorted"
|
|
fi
|
|
done
|
|
|
|
rm -rf ${TMPDIR}
|
|
|
|
report_results
|