bkochuna / ners570f23-SpMV

1 stars 0 forks source link

Add memory testing with valgrind #8

Open bkochuna opened 11 months ago

bkochuna commented 11 months ago

Background

Valgrind is an extremely useful tool for finding and catching bugs related to memory management such as branching off of unitialized values, other uses of uninitialized values (reads and writes), memory leaks, and bad array accesses.

By regularly testing your code with valgrind, you can ensure that any changes that might have introduced an issue are quickly identified and fixed.

This is a relatively simple task, so we give it 5pts of extra-credit.

Tasks

Definition of Done

Evidence of the library tests being run under valgrind is posted somewhere under this github repo.

bkochuna commented 11 months ago

This task is blocked by #6.