Module Name: src Committed By: pooka Date: Mon Nov 8 23:28:41 UTC 2010
Modified Files: src/tests/lib/libc/stdlib: t_environment.c Log Message: Increase timeout from 30 to 300 since this test runs for a long time. XXX1: should 2x10240 loops really be *that* slow? XXX2: is 10240 a sensible number to begin with? To generate a diff of this commit: cvs rdiff -u -r1.5 -r1.6 src/tests/lib/libc/stdlib/t_environment.c Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.
Modified files: Index: src/tests/lib/libc/stdlib/t_environment.c diff -u src/tests/lib/libc/stdlib/t_environment.c:1.5 src/tests/lib/libc/stdlib/t_environment.c:1.6 --- src/tests/lib/libc/stdlib/t_environment.c:1.5 Wed Nov 3 16:09:43 2010 +++ src/tests/lib/libc/stdlib/t_environment.c Mon Nov 8 23:28:41 2010 @@ -1,4 +1,4 @@ -/* $NetBSD: t_environment.c,v 1.5 2010/11/03 16:09:43 christos Exp $ */ +/* $NetBSD: t_environment.c,v 1.6 2010/11/08 23:28:41 pooka Exp $ */ /*- * Copyright (c) 2010 The NetBSD Foundation, Inc. * All rights reserved. @@ -32,7 +32,7 @@ */ #include <sys/cdefs.h> -__RCSID("$NetBSD: t_environment.c,v 1.5 2010/11/03 16:09:43 christos Exp $"); +__RCSID("$NetBSD: t_environment.c,v 1.6 2010/11/08 23:28:41 pooka Exp $"); #include <atf-c.h> #include <errno.h> @@ -54,6 +54,7 @@ { atf_tc_set_md_var(tc, "descr", "Test putenv(3), getenv(3), unsetenv(3)"); + atf_tc_set_md_var(tc, "timeout", "300"); } ATF_TC_HEAD(t_clearenv, tc)