summaryrefslogtreecommitdiff
path: root/scripts/stability-test.sh
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/stability-test.sh')
-rwxr-xr-xscripts/stability-test.sh29
1 files changed, 29 insertions, 0 deletions
diff --git a/scripts/stability-test.sh b/scripts/stability-test.sh
new file mode 100755
index 0000000000..f017ac0842
--- /dev/null
+++ b/scripts/stability-test.sh
@@ -0,0 +1,29 @@
+#!/usr/bin/env bash
+#
+
+declare failed
+
+echo "Comparing build/quick/classes and build/strap/classes"
+for dir in library reflect compiler; do
+ # feel free to replace by a more elegant approach -- don't know how
+ if diff -rw -x '*.css' \
+ -x '*.custom' \
+ -x '*.gif' \
+ -x '*.js' \
+ -x '*.layout' \
+ -x '*.png' \
+ -x '*.properties' \
+ -x '*.tmpl' \
+ -x '*.tooltip' \
+ -x '*.txt' \
+ -x '*.xml' \
+ build/{quick,strap}/classes/$dir
+ then
+ classes=$(find build/quick/classes/$dir -name '*.class' | wc -l)
+ printf "%8s: %5d classfiles verified identical\n" $dir $classes
+ else
+ failed=true
+ fi
+done
+
+[[ -z $failed ]] || exit 127