Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
#24 にまとめる
説明用に残しておくが、そのうち閉じる
変更点
makefileの修正のついでにバグを見つけたので修正&ついでにテストも追加
Makefile修正
objs/
以下のディレクトリが作成されず、.o
の作成をミスっている点を修正conf pathの受け取り部分を修正
argc == 1
はエラーに変更(confがないとweb serverとして機能しない)get_valid_config_file_path()
の引数など)testを追加
make unit
で実行するようmake ruleを変更(cmake
でビルドしたテスト用の実行ファイルを実行している)現状は-> 選択的に実行したい場合はfileter optionを使えばOKproject_root/CMakeLists.txt
に記述したテストファイルから実行ファイルunit_test
を生成し、全テストを一度に実行しているが、あるテスト単独でのみ実行したい場合は個別の生成ルールを記述しなければならないかも?