From owner-p4-projects@FreeBSD.ORG Wed Mar 19 22:45:11 2008 Return-Path: Delivered-To: p4-projects@freebsd.org Received: by hub.freebsd.org (Postfix, from userid 32767) id 998491065672; Wed, 19 Mar 2008 22:45:11 +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 58B72106566C for ; Wed, 19 Mar 2008 22:45:11 +0000 (UTC) (envelope-from jb@freebsd.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 3E85C8FC18 for ; Wed, 19 Mar 2008 22:45:11 +0000 (UTC) (envelope-from jb@freebsd.org) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.1/8.14.1) with ESMTP id m2JMjBWk064617 for ; Wed, 19 Mar 2008 22:45:11 GMT (envelope-from jb@freebsd.org) Received: (from perforce@localhost) by repoman.freebsd.org (8.14.1/8.14.1/Submit) id m2JMj9KP064615 for perforce@freebsd.org; Wed, 19 Mar 2008 22:45:09 GMT (envelope-from jb@freebsd.org) Date: Wed, 19 Mar 2008 22:45:09 GMT Message-Id: <200803192245.m2JMj9KP064615@repoman.freebsd.org> X-Authentication-Warning: repoman.freebsd.org: perforce set sender to jb@freebsd.org using -f From: John Birrell To: Perforce Change Reviews Cc: Subject: PERFORCE change 138135 for review X-BeenThere: p4-projects@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: p4 projects tree changes List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 19 Mar 2008 22:45:11 -0000 http://perforce.freebsd.org/chv.cgi?CH=138135 Change 138135 by jb@jb_freebsd8 on 2008/03/19 22:44:49 The latest IFopensolaris changes the way the perl test program args work. Now the '-n' arg has to be specified to stop the script from wanting to run the tests using jdtrace, the Java API version of DTrace. I doubt we will ever want to run the Java tests from this makefile since Java is not part of this source tree. There are a few new tests appearing here; a couple need to be commented out; and yet more which don't work yet. There are a few regressions too. (sulk) Affected files ... .. //depot/projects/dtrace/src/tools/test/dtrace/Makefile#25 edit Differences ... ==== //depot/projects/dtrace/src/tools/test/dtrace/Makefile#25 (text+ko) ==== @@ -1,7 +1,7 @@ # $FreeBSD$ TESTSRCDIR= ${.CURDIR}/../../../contrib/opensolaris/cmd/dtrace/test -DTEST= ${TESTSRCDIR}/cmd/scripts/dtest.pl +DTEST= ${TESTSRCDIR}/cmd/scripts/dtest.pl -n IGNORE= \ ${TESTSRCDIR}/tst/common/stop/tst.stop1.d \ @@ -51,6 +51,8 @@ ${TESTSRCDIR}/tst/common/misc/tst.schrock.ksh \ ${TESTSRCDIR}/tst/common/nfs/tst.call.c \ ${TESTSRCDIR}/tst/common/nfs/tst.call.d \ + ${TESTSRCDIR}/tst/common/nfs/tst.call3.c \ + ${TESTSRCDIR}/tst/common/nfs/tst.call3.d \ ${TESTSRCDIR}/tst/common/offsetof/err.D_OFFSETOF_BITFIELD.bitfield.d \ ${TESTSRCDIR}/tst/common/pid/err.D_PDESC_ZERO.badlib.d \ ${TESTSRCDIR}/tst/common/pid/err.D_PDESC_ZERO.badproc1.d \ @@ -208,6 +210,7 @@ ${TESTSRCDIR}/tst/common/safety/tst.shortstr.d \ ${TESTSRCDIR}/tst/common/safety/tst.stack.d \ ${TESTSRCDIR}/tst/common/safety/tst.stackdepth.d \ + ${TESTSRCDIR}/tst/common/safety/tst.stddev.d \ ${TESTSRCDIR}/tst/common/safety/tst.strchr.d \ ${TESTSRCDIR}/tst/common/safety/tst.strjoin.d \ ${TESTSRCDIR}/tst/common/safety/tst.strstr.d \