From owner-freebsd-testing@freebsd.org Sat Oct 17 22:03:47 2015 Return-Path: Delivered-To: freebsd-testing@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 52FA5A17FF0 for ; Sat, 17 Oct 2015 22:03:47 +0000 (UTC) (envelope-from yaneurabeya@gmail.com) Received: from mail-pa0-x231.google.com (mail-pa0-x231.google.com [IPv6:2607:f8b0:400e:c03::231]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (Client CN "smtp.gmail.com", Issuer "Google Internet Authority G2" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 1EF0035E for ; Sat, 17 Oct 2015 22:03:47 +0000 (UTC) (envelope-from yaneurabeya@gmail.com) Received: by pacfv9 with SMTP id fv9so55400131pac.3 for ; Sat, 17 Oct 2015 15:03:46 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=from:content-type:content-transfer-encoding:subject:message-id:date :to:mime-version; bh=XDJlk701AIjtcNkb4LfJtTnRWghdeFEjYYcX/tCJMh8=; b=keels+w0HtST6XlgUEkIJ3Gpmq6xGhHCOF7pD8asHsIElW7MIRu4DjxwtnBq/ysYMd 6QcYQWxFFA1g7vQ7qBAR2h2tqhYDjxJXQbMrAM8baIUMUgVdSZFjjjVrz3lRwUmXwTY0 0580euTti70RRRHBTzFoKpxNYSrBHPYqtTpSziMtBo4RmB6wiJOLFslGb6f6iWZ4DVAl gBJiejX3ERG2xfTa0ofxOxupUOkH9CTbUZ5Ug41uXjEAb2O7ywVPepGwJ/kOpKNjin81 UgeVbQjjS4r5e0BzV5M5sblH4aPb7/ywQniDE7FpRlGaNMlVtK8Y7VOnYEH7IRJVZVsf AOuw== X-Received: by 10.68.93.227 with SMTP id cx3mr24860350pbb.155.1445119426693; Sat, 17 Oct 2015 15:03:46 -0700 (PDT) Received: from ?IPv6:2601:601:800:126d:50a2:a8c0:9eec:851c? ([2601:601:800:126d:50a2:a8c0:9eec:851c]) by smtp.gmail.com with ESMTPSA id fb1sm28522208pab.9.2015.10.17.15.03.45 for (version=TLSv1/SSLv3 cipher=OTHER); Sat, 17 Oct 2015 15:03:46 -0700 (PDT) From: NGie Cooper Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Subject: [RFC] Rename `make test` in suite.test.mk with `make regress` Message-Id: Date: Sat, 17 Oct 2015 15:03:45 -0700 To: "freebsd-testing@freebsd.org" Mime-Version: 1.0 (Mac OS X Mail 8.2 \(2104\)) X-Mailer: Apple Mail (2.2104) X-BeenThere: freebsd-testing@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: Testing on FreeBSD List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 17 Oct 2015 22:03:47 -0000 Hi all, There=E2=80=99s a lesser known target in suite.test.mk that runs = `kyua test` in a similar manner to how Jenkins and other groups have = integrated kyua into their test infrastructures. The legacy target on FreeBSD was `regress`, but the target = created with the bsd.test.mk creation back a few years ago was `test`. = Why change from `test` to `regress`? There are places in the tree = (bin/test for example) that have targets named test, so in order to = avoid clashing with a common target (name), it=E2=80=99s best to use the = legacy target name. Would anyone have any serious heartburn over the change? Thanks! -NGie=