forked from AuroraMiddleware/gtk
82eee65334
Add a test script that runs gtk4-builder-tool simplify --3to4. No actual tests yet.
32 lines
682 B
Bash
Executable File
32 lines
682 B
Bash
Executable File
#! /bin/bash
|
|
|
|
GTK_BUILDER_TOOL=${GTK_BUILDER_TOOL:-gtk-builder-tool}
|
|
TEST_DATA_DIR=${TEST_DATA_DIR:-./simplify-data-3to4}
|
|
TEST_RESULT_DIR=${TEST_RESULT_DIR:-/tmp}
|
|
|
|
shopt -s nullglob
|
|
TESTS=( "$TEST_DATA_DIR"/*.ui )
|
|
|
|
echo "1..${#TESTS[*]}"
|
|
|
|
I=1
|
|
for t in ${TESTS[*]}; do
|
|
name=$(basename $t .ui)
|
|
expected="$TEST_DATA_DIR/$name.expected"
|
|
result="$TEST_RESULT_DIR/$name.out"
|
|
diff="$TEST_RESULT_DIR/$name.diff"
|
|
ref="$TEST_RESULT_DIR/$name.ref"
|
|
|
|
$GTK_BUILDER_TOOL simplify --3to4 $t 2>/dev/null >$result
|
|
|
|
if diff -u "$expected" "$result" > "$diff"; then
|
|
echo "ok $I $name"
|
|
rm "$diff"
|
|
else
|
|
echo "not ok $I $name"
|
|
cp "$expected" "$ref"
|
|
fi
|
|
|
|
I=$((I+1))
|
|
done
|