blob: d305b9f94c761af5852e30ca22022fb3abe8d64f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# ft_printf test
Unit test for the ft_printf project of 42 school.
## Usage
Clone this repo such that:
```
`
|- ft_printf_test/
|- ft_printf/
```
or modify the `FT_PRINTF_PATH` variable in the Makefile
- `> make run`: run the tests in a pretty format
- `> make run_verbose`: to show a more verbose output
- `> make run_quiet`: to show a more quiet output
- `> make run_raw`: run the tests in a ugly but parsable format
- `> python3 prettier -h`: show prettier options
|