-
Notifications
You must be signed in to change notification settings - Fork 13
Wildcard Search
Gavin Fielder edited this page May 7, 2019
·
2 revisions
Wildcard search is enabled for the test runner as well as the enable-test and disable-test scripts.
-
./test "x*prec"runs all x tests that have 'prec' in the name. -
./test "*af"runs any tests which has 'af' in its name. -
./enable-test "nocrash*null"enables all nocrash tests which have 'null' in the name. -
./disable-test "f*stress"disables the%fstress tests.
For almost all shell terminals, the * needs to be escaped--usually, putting a string in double quotes is sufficient. If it is not, you can also use any character that is not valid for a C function name:
-
./test x@precruns all x tests that have 'prec' in the name. -
./test "$af"runs any tests which has 'af' in its name. -
./enable-test nocrash@nullenables all nocrash tests which have 'null' in the name. -
./disable-test "f&stress"disables the%fstress tests.
- Home
- Installation
- Usage
- What's NOT Covered
- Workflow with PFT
- Options and Configuration
- Additional Features
- Troubleshooting
- Compatibility With Other Systems
- Contributing to this repo (and possible future features)