qacafe - ip test solutions
Knowledge Base > Test Execution > How do I skip a test module or test case?

How do I skip a test module or test case?

You can skip test modules by using buddy -skip-module option on the command-line. For example, to skip the firewall.tcl, rip.tcl, and upnp.tcl modules:

  # buddy -skip-module firewall.tcl -skip-module rip.tcl -skip-module upnp.tcl

You can also do this for individual tests using the -skip-test option:

  # buddy -skip-test cdrouter_nat_1

You can also place the -skip-module and -skip-test entries in your configuration file, rather than specifying them on the command-line. For example, to skip the firewall.tcl and rip.tcl modules, and the cdrouter_nat_1 test case, add the following commands to the configuration file:

buddy::skip-module firewall.tcl
buddy::skip-module rip.tcl
buddy::skip-test cdrouter_nat_1