GNOME Bugzilla – Bug 604798
tests/fail.sh and tests/tools.sh.in use bashisms
Last modified: 2009-12-21 04:13:18 UTC
On OpenSolaris, fail.sh and tools.sh do not pass because the Solaris sh does not implement the $((expression)) arithmetic syntax; this is a bash-specific tool. See http://build.gnome.org/builders/gtk-doc-opensol-gcc/builds/155/steps/gtk-doc%20check/logs/stdio This can be corrected with -#!/bin/sh +#!/bin/bash on tests/fail.sh and tests/tools.sh.in
Thanks! commit 1b4b053f9cfe9f146d6d57ddc9f59376fd3dde33 Author: Stefan Kost <ensonic@users.sf.net> Date: Thu Dec 17 22:20:18 2009 +0200 tests: use bash instead of sh as this uses $((expression). Fixes #604798 sh does not support that feature.
Confirmed fixed: http://build.gnome.org/builders/gtk-doc-opensol-gcc/builds/160/steps/gtk-doc%20check/logs/summary