svn commit: r277648 - in head: contrib/netbsd-tests/lib/libc/c063 lib/libc/tests/c063

Garrett Cooper yaneurabeya at gmail.com
Sat Jan 24 19:27:48 UTC 2015


> On Jan 24, 2015, at 07:49, Jilles Tjoelker <jilles at FreeBSD.org> wrote:
> 
> Author: jilles
> Date: Sat Jan 24 15:49:40 2015
> New Revision: 277648
> URL: https://svnweb.freebsd.org/changeset/base/277648
> 
> Log:
>  Enable utimensat tests from NetBSD.
> 
>  As with other tests from c063, a required #include <sys/stat.h> was missing.
> 
> Modified:
>  head/contrib/netbsd-tests/lib/libc/c063/t_utimensat.c
>  head/lib/libc/tests/c063/Makefile
> 
> Modified: head/contrib/netbsd-tests/lib/libc/c063/t_utimensat.c
> ==============================================================================
> --- head/contrib/netbsd-tests/lib/libc/c063/t_utimensat.c    Sat Jan 24 15:40:52 2015    (r277647)
> +++ head/contrib/netbsd-tests/lib/libc/c063/t_utimensat.c    Sat Jan 24 15:49:40 2015    (r277648)
> @@ -40,6 +40,9 @@ __RCSID("$NetBSD: t_utimensat.c,v 1.5 20
> #include <string.h>
> #include <unistd.h>
> #include <sys/param.h>
> +#ifdef __FreeBSD__
> +#include <sys/stat.h>
> +#endif
> #include <sys/time.h>
> 
> #define DIR "dir"

Thanks jilles!


More information about the svn-src-all mailing list