blob: 43ca107c8eede88b3cfaa223603345b1fdf3b9bf (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
# philosophers test
Test for the philosophers project of school 42.
## Usage
Clone this repository next to your project directory. (or change the default path in the config)
```
.
|- philosophers/
|- philosophers_test/
```
```
$ ./run --help
usage: run [-h] -p {1,2,3} [-b] [-g]
Philosophers test
optional arguments:
-h, --help show this help message and exit
-p {1,2,3}, --philo {1,2,3}
Id of the philosophers to test
-b, --build Build and exit
-g, --pager Open result.log in a pager after the test
```
|