-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Change thread implementation, improve plotter graph fitting * Remove unnecessary header files * Make requested changes * Logging mode selection, and refactor lammdas * Tweaks to plotter * Unit tests * Update README with screenshot and better description
- Loading branch information
Showing
19 changed files
with
973 additions
and
475 deletions.
There are no files selected for viewing
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 |
---|---|---|
|
@@ -50,3 +50,9 @@ CMakeLists.txt.user* | |
|
||
# Dolphin | ||
.directory | ||
|
||
# Coverage | ||
test | ||
coverage | ||
*.gcda | ||
*.gcno |
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
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 |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#! /bin/sh | ||
echo "Building test..." | ||
qmake -makefile -o test/Makefile src/wserial.pro -config test DEFINES+="LOGGING_MODE=QDEBUG" | ||
cd test | ||
make -j4 | ||
if [[ "$?" != "0" ]] ; then | ||
echo "Build failed!" | ||
exit 1 | ||
fi | ||
lcov -d . -z | ||
echo "Running test..." | ||
./test | ||
if [[ "$?" != "0" ]] ; then | ||
echo "One or more tests failed!" | ||
exit 1 | ||
fi | ||
lcov -d . -c -o lcov.info | ||
lcov -r lcov.info '/usr/*' '*/moc_*' '*/ui_*' '*/qrc_*' '*.h' '*tests/*' -o lcov.info | ||
lcov -l lcov.info | ||
genhtml -o ../coverage -t "Test Coverage" --num-spaces 4 lcov.info |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.