From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from pigeon.gentoo.org ([208.92.234.80] helo=lists.gentoo.org) by finch.gentoo.org with esmtp (Exim 4.60) (envelope-from ) id 1QfH71-00076S-6K for garchives@archives.gentoo.org; Fri, 08 Jul 2011 19:53:19 +0000 Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 1378221C047; Fri, 8 Jul 2011 19:53:11 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id D03AC21C047 for ; Fri, 8 Jul 2011 19:53:10 +0000 (UTC) Received: from pelican.gentoo.org (unknown [66.219.59.40]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1C9B01B4013 for ; Fri, 8 Jul 2011 19:53:10 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by pelican.gentoo.org (Postfix) with ESMTP id 681A68003F for ; Fri, 8 Jul 2011 19:53:09 +0000 (UTC) From: "Mike Frysinger" To: gentoo-commits@lists.gentoo.org Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Frysinger" Message-ID: <98bb61ee169cbbe12067c418472e56f63dff6853.vapier@gentoo> Subject: [gentoo-commits] proj/sandbox:master commit in: tests/ X-VCS-Repository: proj/sandbox X-VCS-Files: tests/tests.h X-VCS-Directories: tests/ X-VCS-Committer: vapier X-VCS-Committer-Name: Mike Frysinger X-VCS-Revision: 98bb61ee169cbbe12067c418472e56f63dff6853 Date: Fri, 8 Jul 2011 19:53:09 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: quoted-printable X-Archives-Salt: X-Archives-Hash: e7204cf04014b2cf2adfce9d2b2acf94 commit: 98bb61ee169cbbe12067c418472e56f63dff6853 Author: Mike Frysinger gentoo org> AuthorDate: Fri Jul 8 19:50:23 2011 +0000 Commit: Mike Frysinger gentoo org> CommitDate: Fri Jul 8 19:51:05 2011 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=3Dproj/sandbox.git;a= =3Dcommit;h=3D98bb61ee tests: disable non-POSIX EBADFD POSIX doesn't specify EBADFD, and EBADF should cover us, and we don't really need it, so disable for now. Signed-off-by: Mike Frysinger gentoo.org> --- tests/tests.h | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/tests/tests.h b/tests/tests.h index 08b8cd9..72c678c 100644 --- a/tests/tests.h +++ b/tests/tests.h @@ -51,7 +51,7 @@ const value_pair tbl_errno[] =3D { PAIR(EACCES) PAIR(EAGAIN) PAIR(EBADF) - PAIR(EBADFD) +/* PAIR(EBADFD) POSIX only has EBADF */ PAIR(EBUSY) PAIR(ECANCELED) PAIR(ECHILD)