Added trivial script to selectively execute unit tests.

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/math/trunk@348507 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Phil Steitz 2005-11-23 18:04:41 +00:00
parent 0dc42d33f9
commit 045928c2f3
1 changed files with 38 additions and 0 deletions

38
testOnly.sh Executable file
View File

@ -0,0 +1,38 @@
#!/bin/sh
#------------------------------------------------------------------------------
# Copyright 2005 The Apache Software Foundation
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#------------------------------------------------------------------------------
# $Id$
#
# Runs only the unit tests in the package(s) specified by the argument.
#
# Usage:
# testOnly.sh <package-spec>
#
# Examples:
# testOnly.sh complex - runs all tests in the complex package
# testOnly.sh stat/descriptive - runs tests in stat/descriptive package
# testOnly.sh stat/** - runs tests in all subpackages of stat
#
# Requires:
# version 1.7 or later of the maven test plugin
#
# Assumes:
# * Test class names end in "Test.java"
# * A test class is abstract iff its name embeds the string "Abstract"
#------------------------------------------------------------------------------
maven -Dtestmatchpattern="**/$1/*Test.java" \
-Dtestnotmatchpattern="**/*Abstract*" test:match