Currently run_testsuite has 3 optional args. (Quick, can you tell me
what they are without looking? I can't either.)
I'd like to change the interface to use 3 keyword args:
include_known_bugs, verbose, and tests. These correspond to the 3
optional args, respectively. The defaults for all of these will be
the same as before.
The usage will be something like
run_testsuite(include_known_bug = true, verbose = true, tests = ["rtest14"]);
run_testsuite(verbose = true, tests = ["rtest14"]);
etc.
Ray