OSSTEST_CONFIG can actually be a colon separate list of files, so take this
into account when sanity checking it.
Signed-off-by: Ian Campbell <ian.campbell@citrix.com>
Acked-by: Ian Jackson <ian.jackson@eu.citrix.com>
exit 1
fi
-if [ -z "$config" -o ! -r "$config" ] ; then
- echo "Cannot read config." >&2
+if [ -z "$config" ] ; then
+ echo "No config specified." >&2
exit 1
fi
+IFS_saved=$IFS
+IFS=:
+for c in $config ; do
+ if [ -z "$c" -o ! -r "$c" ] ; then
+ echo "Cannot read config $c." >&2
+ exit 1
+ fi
+done
+IFS=$IFS_saved
need_flight() {
if [ -z "$flight" ] ; then