| 32 | Go to `test/NightlyRun`. To run a test without checking whether it worked or not, just type: `testxxx` in MATLAB, where `xxx` is the test number. To check whether the results of that test are still consistent with the archive: |
| 33 | |
| 34 | {{{ |
| 35 | #!m |
| 36 | >> runme('id',XXX) |
| 37 | }}} |
| 38 | |
| 39 | For tests that are >1000, you will need to specify that you want to use all the benchmarks: |
| 40 | |
| 41 | {{{ |
| 42 | #!m |
| 43 | >> runme('id',XXX,'benchmark','all') |
| 44 | }}} |
| 45 | |
| 46 | If you would like to test a specific feature, you can use the function `IdFromString`. For example, if you would like to run all the tests that involve dakota: |
| 47 | |
| 48 | {{{ |
| 49 | #!m |
| 50 | >> runme('id',IdFromString('Dakota')) |
| 51 | }}} |
| 52 | |
| 53 | You should see a list of `SUCCESS`. In very rare cases, you get an `ERROR` that requires to update the tolerance. Check with developers before changing the tolerance though. |
| 54 | |