sophiakoulen / minishell

A simplified bash-like shell, with pipes, redirections and variable expansion.
4 stars 1 forks source link

Mysterious rm at the end of unit-tests all rule #94

Closed sophiakoulen closed 1 year ago

sophiakoulen commented 1 year ago

When using make in unit-tests, it seems that binaries are automatically erased when we are finished running all the tests. However, i can't find any rule expliciting this behaviour. The consequence of this is that unit-tests are recompiling when using make all.

rm objs/quote_removal_test.o objs/tokenizer_test.o objs/parsing_test.o objs/param_expansion_test.o

Where is this coming from? Not from the clean rule, which i silenced!

znichola commented 1 year ago

liked with #23

znichola commented 1 year ago

fixed with #155