`newt test` accepts an `--exclude` or `-e` switch. The argument to this switch is a comma-separated list of packages to exclude from the test set.
The bug was that these package names must have *not* included their repo name. The tests were only properly excluded if the repo name was missing. E.g., ``` newt test all -e fs/fcb ``` properly excluded the `fs/fcb` test, but ``` newt test all -e @apache-mynewt-core/fs/fcb ``` excluded nothing; the fcb test still run. With this patch both of these examples correctly exclude fcb tests. [ Full content available at: https://github.com/apache/mynewt-newt/pull/208 ] This message was relayed via gitbox.apache.org for [email protected]
