From owner-p4-projects@FreeBSD.ORG Thu Aug 18 13:40:15 2011 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 84F58106566C; Thu, 18 Aug 2011 13:40:15 +0000 (UTC) Delivered-To: perforce@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 491CF106564A for ; Thu, 18 Aug 2011 13:40:15 +0000 (UTC) (envelope-from cnicutar@freebsd.org) Received: from skunkworks.freebsd.org (skunkworks.freebsd.org [IPv6:2001:4f8:fff6::2d]) by mx1.freebsd.org (Postfix) with ESMTP id 3769A8FC14 for ; Thu, 18 Aug 2011 13:40:15 +0000 (UTC) Received: from skunkworks.freebsd.org (localhost [127.0.0.1]) by skunkworks.freebsd.org (8.14.4/8.14.4) with ESMTP id p7IDeFXk065624 for ; Thu, 18 Aug 2011 13:40:15 GMT (envelope-from cnicutar@freebsd.org) Received: (from perforce@localhost) by skunkworks.freebsd.org (8.14.4/8.14.4/Submit) id p7IDeFMJ065620 for perforce@freebsd.org; Thu, 18 Aug 2011 13:40:15 GMT (envelope-from cnicutar@freebsd.org) Date: Thu, 18 Aug 2011 13:40:15 GMT Message-Id: <201108181340.p7IDeFMJ065620@skunkworks.freebsd.org> X-Authentication-Warning: skunkworks.freebsd.org: perforce set sender to cnicutar@freebsd.org using -f From: Catalin Nicutar To: Perforce Change Reviews Precedence: bulk Cc: Subject: PERFORCE change 197818 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Aug 2011 13:40:15 -0000 http://p4web.freebsd.org/@@197818?ac=10 Change 197818 by cnicutar@cnicutar_cronos on 2011/08/18 13:39:38 Fixed a test case. The comment said "the client requests a large UTO" but in the test it was the other way around. Affected files ... .. //depot/projects/soc2011/cnicutar_tcputo_9/src/tools/regression/netinet/tcputo/long_uto.c#2 edit Differences ... ==== //depot/projects/soc2011/cnicutar_tcputo_9/src/tools/regression/netinet/tcputo/long_uto.c#2 (text+ko) ==== @@ -45,7 +45,7 @@ err(EX_OSERR, "fork"); break; case 0: - server_disconnect(saddr, port, DOWNTIME, UTO, 1); + server_disconnect(saddr, port, DOWNTIME, 0, 1); exit(EX_OK); break; } @@ -59,7 +59,7 @@ err(EX_OSERR, "fork"); break; case 0: - client_generic(caddr, saddr, port, 0, 1); + client_generic(caddr, saddr, port, UTO, 1); exit(EX_OK); break; }