... | ... | @@ -10,23 +10,36 @@ You will need to configure your [gitlab ssh key](https://gitlab.bsc.es/profile/k |
|
|
|
|
|
## Basic usage
|
|
|
|
|
|
Testsuite basic usage is composed of three steps: clone the testsuite, configure it, and run it.
|
|
|
Testsuite basic usage is composed of three steps: clone/update the testsuite, configure it, and run it.
|
|
|
|
|
|
### Cloning the testsuite:
|
|
|
### Cloning the testsuite using ssh
|
|
|
|
|
|
You will just need to do this step once:
|
|
|
|
|
|
```sh
|
|
|
git clone git@gitlab-internal.bsc.es:alya/alya-testsuite.git
|
|
|
cd alya-testsuite
|
|
|
```
|
|
|
git clone
|
|
|
|
|
|
If you already have cloned the testsuite at least once, update it before running it:
|
|
|
|
|
|
```sh
|
|
|
git pull
|
|
|
```
|
|
|
|
|
|
2. Configure the testSuite:
|
|
|
### Configuring the testSuite:
|
|
|
|
|
|
./configure
|
|
|
```
|
|
|
./configure
|
|
|
```
|
|
|
|
|
|
Look at the next section to get more details about how to configure the testsuite.
|
|
|
|
|
|
3. Execute the testSuite:
|
|
|
Executing the testSuite:
|
|
|
|
|
|
./testSuite
|
|
|
```sh
|
|
|
./testSuite
|
|
|
```
|
|
|
|
|
|
## Configuration
|
|
|
|
... | ... | @@ -34,11 +47,15 @@ Look at the next section to get more details about how to configure the testsuit |
|
|
|
|
|
The first time you configure the testsuite, you will have to run the command
|
|
|
|
|
|
./configure
|
|
|
```sh
|
|
|
./configure
|
|
|
```
|
|
|
|
|
|
or
|
|
|
|
|
|
./configure --all
|
|
|
```sh
|
|
|
./configure --all
|
|
|
```
|
|
|
|
|
|
Also, if your configuration file is obsolete, you will be asked to run the `./configure --all` again when you launch the testsuite.
|
|
|
|
... | ... | |