-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
exit
テストケースの追加+対応!
#92
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
昨日話したところだけ確認お願いします〜
ft_putstr_fd("minishell: exit: ", STDERR_FILENO); | ||
ft_putstr_fd(argv[1], STDERR_FILENO); | ||
ft_putendl_fd(": numeric argument required", STDERR_FILENO); | ||
exit(EXIT_STATUS_OUT_OF_RANGE); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ここのexit -> return
の修正だけお願いします!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ん?これはexit
しますよ?
takumihara@MacBook-Pro minishell % bash
The default interactive shell is now zsh.
To update your account to use zsh, please run `chsh -s /bin/zsh`.
For more details, please visit https://support.apple.com/kb/HT208050.
%T exit a
exit
bash: exit: a: numeric argument required
takumihara@MacBook-Pro minishell %
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
t_executor
とか諸々をfree()
する必要があるから、一旦return()
するみたいなことじゃなかったでしたっけ?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
したのここでもfreeはする必要あるので、ここから呼べる関数か何かを作って処理する予定です。
exit((unsigned char)num); //todo: free?
他のexitする時の処理とまとめて考えようと思ったので、todoはこちらに入れてます!
#73 (comment)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
りょうかいです!
Purpose
以下のケースに対応!それぞれのコミット追って見てもらうと分かりやすいと思います!
Test