avoid a spurious test failure on non-numa systems

* tests/daemon-conf: Ignore a spurious libnuma warning.
Reported by Daniel Veillard.
This commit is contained in:
Jim Meyering 2008-12-12 16:11:50 +00:00
parent 1b3370b43f
commit 30bc0a10f3
2 changed files with 11 additions and 2 deletions

View File

@ -1,3 +1,9 @@
Fri Dec 12 17:08:08 +0100 2008 Jim Meyering <meyering@redhat.com>
avoid a spurious test failure on non-numa systems
* tests/daemon-conf: Ignore a spurious libnuma warning.
Reported by Daniel Veillard.
Fri Dec 12 14:57:17 CET 2008 Daniel Veillard <veillard@redhat.com>
* Makefile.maint: fix tabs in C source error message based on

View File

@ -56,8 +56,11 @@ while :; do
test $i = $n && break
# Filter out this diagnostic.
sed '/^Cannot set group when not running as root$/d' err > k && mv k err
# Filter out some ignorable diagnostics.
sed \
-e '/^Cannot set group when not running as root$/d' \
-e '/^libnuma: Warning: .sys not mounted or no numa system/d' \
err > k && mv k err
printf '%s\n\n' "remoteReadConfigFile: $f: $param_name: $msg" > expected-err
diff -u expected-err err || fail=1