config/testsuite/config-sub.sh
Ben Elliston b585beda76 * Makefile (check): New target.
* testsuite/config-sub.sh: New test.
	* testsuite/config-sub.data: New file.
2004-06-25 12:13:44 +00:00

29 lines
709 B
Bash

#!/bin/sh
#
# Copyright 2004 Free Software Foundation, Inc.
# Contributed by Ben Elliston <bje@gnu.org>.
#
# This test reads pairs from config-sub.data: an alias and its canonical triplet.
# The config.sub scripts is invoked and the test checks that the alias expands to the
# expected canonical triplet.
verbose=false
rc=0
while read alias canonical ; do
output=`sh ../config.sub $alias`
if test $output != $canonical ; then
echo "FAIL: $alias -> $output, but expected $canonical"
rc=1
else
$verbose && echo "PASS: $alias"
fi
done < config-sub.data
if test $rc -eq 0 ; then
$verbose || echo "PASS: config.sub checks"
else
test $rc -eq 1 && echo "Unexpected failures."
fi
exit $rc