Index: openacs-4/packages/acs-automated-testing/tcl/aa-test-procs.tcl =================================================================== RCS file: /usr/local/cvsroot/openacs-4/packages/acs-automated-testing/tcl/aa-test-procs.tcl,v diff -u -r1.79.2.10 -r1.79.2.11 --- openacs-4/packages/acs-automated-testing/tcl/aa-test-procs.tcl 17 Apr 2019 11:04:12 -0000 1.79.2.10 +++ openacs-4/packages/acs-automated-testing/tcl/aa-test-procs.tcl 24 Apr 2019 09:29:36 -0000 1.79.2.11 @@ -572,14 +572,14 @@ {-security_risk 0} -quiet:boolean {-testcase_id ""} - {by_package_key ""} + {by_package_keys ""} {by_category ""} } { Runs a series of testcases. - Runs all cases if both package_key and - category are blank, otherwise it uses the package and/or category to - select which testcases to run. + Runs all cases if both by_package_keys and by_category are blank, + otherwise it uses the package and/or category to select which + testcases to run. @author Peter Harper @creation-date 24 July 2001 @@ -613,8 +613,8 @@ # try to disqualify the test case - # if category is specified, - if { $by_package_key ne "" && $by_package_key ne $package_key } { + # check if package key belongs to the ones we are testing + if { $by_package_keys ne "" && $package_key ni $by_package_keys } { continue }