-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Modified FBCache to fix issue #16 (design)
Removed from FBCache all unncessary private fields Issue #16: closed Removed file Makefile-Netbeans Addressed some cppcheck warnings in test files Added method template norm_fro_sq in Matrix.h
- Loading branch information
1 parent
d6af941
commit 59cd77c
Showing
8 changed files
with
122 additions
and
248 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,8 @@ | ||
#!/bin/bash | ||
make clean | ||
rm -rf coverage | ||
rm coverage.info | ||
rm libforbes-coverage.info | ||
#make | ||
#make build-tests | ||
make -j 8 test | ||
lcov --capture --directory ./build/Debug --output-file coverage.info | ||
lcov --directory ./build/Debug --capture --output-file coverage.info | ||
lcov --remove coverage.info '/usr/include/*' 'main.cpp' --output-file libforbes-coverage.info | ||
genhtml libforbes-coverage.info --output-directory coverage | ||
genhtml -s --legend --title 'LibForBES Unit Tests' libforbes-coverage.info --output-directory coverage |
Oops, something went wrong.