aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorCharles <sircharlesaze@gmail.com>2020-02-06 19:57:57 +0100
committerCharles <sircharlesaze@gmail.com>2020-02-06 20:00:49 +0100
commit1a3a361287bb3ed932ec0849bf4316a2aaec495d (patch)
tree8326bb43030f88c127b45edc6eeae1ac34ecda40 /README.md
parent65e8a36e62d7b27ec708d736b96104f2a976092d (diff)
downloadft_printf_test-1a3a361287bb3ed932ec0849bf4316a2aaec495d.tar.gz
ft_printf_test-1a3a361287bb3ed932ec0849bf4316a2aaec495d.tar.bz2
ft_printf_test-1a3a361287bb3ed932ec0849bf4316a2aaec495d.zip
no bonus version
Diffstat (limited to 'README.md')
-rw-r--r--README.md9
1 files changed, 9 insertions, 0 deletions
diff --git a/README.md b/README.md
index 9c944e2..0daa08a 100644
--- a/README.md
+++ b/README.md
@@ -23,6 +23,10 @@ or modify the `FT_PRINTF_PATH` variable in the Makefile
- `> python3 prettier -h`: show prettier options
- `> make generate`: generate 100 random test
+### Bonus
+
+All the previous `make` command suffixed with `bonus` (i.e `make runbonus`). You may need
+to `make fclean` in order to clean the previous .o files.
## Random Test Generator
@@ -31,6 +35,10 @@ It will generate random test according to the `-Wformat` flag of gcc.
- `> python3 generate.py -n [number of tests]`: generate n test
- `> python3 generate.py -h`: show all available options
+### Bonus
+
+Add the `--bonus` flag i.e: `> python3 generate.py -n [number of tests] --bonus`.
+
## Memory leaks check
You have to install [valgrind](http://valgrind.org/) with [brew](https://brew.sh/),
@@ -52,3 +60,4 @@ this test will too.
- [pft](https://github.com/gavinfielder/pft) by gavinfielder
- [printf\_tester](https://github.com/AntoineBourin/printf-tester) by AntoineBourin
- [printf\_tests](https://github.com/BartMassey/printf-tests) by BartMassey
+- @MrHade for the no bonus test.