Skip to content

Commit 9f3f1a9

Browse files
committedMay 3, 2019
Renamed test to include an underscore
1 parent d368bc8 commit 9f3f1a9

5 files changed

+6
-6
lines changed
 

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ The [measures](src/Measures) folder contains the MATLAB classes for the metrics
121121
- [DataSet.m](src/DataSet.m): Class for data preprocessing.
122122
- [Experiment.m](src/Experiment.m): Class that runs the different experiments.
123123
- [Utilities.m](src/Utilities.m): Class that pre-process the experiment files, run the different algorithms and produces the results.
124-
- [runtestssingle.m](src/runtestssingle.m): Script to run all the methods using the ORCA API. Reference performance is compared with toy dataset in order to check that the installation is correct.
124+
- [runtests_single.m](src/runtests_single.m): Script to run all the methods using the ORCA API. Reference performance is compared with toy dataset in order to check that the installation is correct.
125125
- [runtestscv.m](src/runtestscv.m): This script runs full experiment tests using the ORCA configuration files to describe experiments.
126126

127127
# Datasets

‎build_orca.m

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,5 +30,5 @@
3030

3131
disp('== Run basic tests... == ')
3232

33-
runtestssingle
33+
runtests_single
3434
cd ..

‎doc/orca_install.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,15 @@ In Windows, we recommend compiling `mex` files from Octave/MATLAB console.
3333
Default Octave installation provides `mex` command pre-configured with `MinGW`.
3434

3535
1. Inside Octave's console, run `make` in folder `src\Algorithms`
36-
1. From `src` run `runtestssingle` to check the installation.
36+
1. From `src` run `runtests_single` to check the installation.
3737

3838
### Building `mex` files in Windows for Matlab
3939

4040
1. Install a [supported compiler](https://es.mathworks.com/support/compilers.html). The easier way is to use the "Add-ons" assistant to download
4141
and install [MinGW](http://es.mathworks.com/help/matlab/matlab_external/install-mingw-support-package.html).
4242
1. Test [basic C example](https://es.mathworks.com/matlabcentral/fileexchange/52848-matlab-support-for-mingw-w64-c-c++-compiler) to ensure `mex` is properly working.
4343
1. From the MATLAB's console, run `make` in `src\Algorithms`.
44-
1. Then run `runtestssingle` in `src` to check the instalation.
44+
1. Then run `runtests_single` in `src` to check the instalation.
4545

4646
We provide binaries and *dlls* for 'ORBoost', because building this method in Windows can be very *complex*. Make will unpack all the binary files. If you need to compile your own binaries, these are the steps:
4747

‎doc/orca_quick_install.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ The way to run the tests checking the API (see [single test scripts](../src/test
6565

6666
```MATLAB
6767
>> cd src/
68-
>> runtestssingle
68+
>> runtests_single
6969
...
7070
.........................
7171
Performing test for SVORLin

‎doc/test_notebooks.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
## runtestssingle.m is already tested in install_octave.m and install_matlab.m
2+
## runtests_single.m is already tested in install_octave.m and install_matlab.m
33
## Test notebooks
44

55
FILES=*.ipynb

0 commit comments

Comments
 (0)
Please sign in to comment.