2021-10-27 09:52:43

This commit is contained in:
Guy Baconniere
2021-10-27 09:52:43 +02:00
parent 7eef456ae4
commit 9103df5454
3 changed files with 15 additions and 6 deletions

10
.gitmodules vendored
View File

@@ -6,9 +6,13 @@
path = libft/libft-unit-test path = libft/libft-unit-test
url = https://github.com/alelievr/libft-unit-test.git url = https://github.com/alelievr/libft-unit-test.git
ignore = dirty ignore = dirty
[submodule "libft/libftTester"] [submodule "libft/libfttester"]
path = libft/libftTester path = libft/libfttester
url = https://github.com/Tripouille/libftTester.git url = https://github.com/tripouille/libfttester.git
ignore = dirty
[submodule "Ysoroko/FT_SPLIT_TESTER"]
path = libft/FT_SPLIT_TESTER
url = https://github.com/Ysoroko/FT_SPLIT_TESTER.git
ignore = dirty ignore = dirty
[submodule "libft/munit"] [submodule "libft/munit"]
path = libft/munit path = libft/munit

View File

@@ -55,14 +55,18 @@ make c
# nemequ/µnit w/ my own Unit Testing (beta software not complete) # nemequ/µnit w/ my own Unit Testing (beta software not complete)
make a make a
# works on MacOS X (and Linux if libbsd-dev installed and so: in libft/Makefile) # works on MacOS X (and Linux if libbsd-dev installed and so: in your libft/Makefile)
# alelievr/libft-unit-test (mind the protect == NULL) # alelievr/libft-unit-test (mind the protect == NULL)
make d make d
make e
# ysoroko/ft_split_tester
make f
# test bonuses # test bonuses
make bonus make bonus
# launch a b c d e (All you can eat) # launch a b c d e f (All you can eat)
make test make test
``` ```
@@ -73,6 +77,7 @@ make test
- c: [jtoty/Libftest](https://github.com/jtoty/Libftest) - c: [jtoty/Libftest](https://github.com/jtoty/Libftest)
- d: [alelievr/libft-unit-test (tests)](https://github.com/alelievr/libft-unit-test) - d: [alelievr/libft-unit-test (tests)](https://github.com/alelievr/libft-unit-test)
- e: [alelievr/libft-unit-test (bench)](https://github.com/alelievr/libft-unit-test) - e: [alelievr/libft-unit-test (bench)](https://github.com/alelievr/libft-unit-test)
- f: [ysoroko/ft_split_tester](https://github.com/Ysoroko/FT_SPLIT_TESTER)
Create subprojects Create subprojects
``` ```
@@ -80,5 +85,6 @@ git submodule add https://github.com/jtoty/Libftest.git
git submodule add https://github.com/alelievr/libft-unit-test.git git submodule add https://github.com/alelievr/libft-unit-test.git
git submodule add https://github.com/Tripouille/libftTester.git git submodule add https://github.com/Tripouille/libftTester.git
git submodule add https://github.com/nemequ/munit.git git submodule add https://github.com/nemequ/munit.git
git submodule add https://github.com/Ysoroko/FT_SPLIT_TESTER.git
``` ```