|
|
|
|
|
by hemansan
2755 days ago
|
|
Remember: GDB is your greatest friend in this endeavor. 1. Compile the code and try to run it for known use cases.
2. Traverse through high-level functions using GDB.
3. Note down the files and functions while you are at it.
4. Read all the comments from the files you have traversed so far.
5. Check if you have covered most of the files which constitue to the majority of SOC.
6. If you don't understand a function, add a breakpoint to it and see the stacktrace. Repeat these steps until you have not covered the whole set of files. |
|