-
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.
Merge pull request #2 from DanieleDeSensi/multi
[ADD] Blackbox support [ADD] C interface for instrumenter [ADD] USLP Predictor [MOD] Major refactoring [ADD] Unit testing [ADD] Cppcheck
- Loading branch information
Showing
668 changed files
with
96,264 additions
and
3,161 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 |
---|---|---|
@@ -0,0 +1,13 @@ | ||
*.o | ||
*.a | ||
*.gcov | ||
*.gcda | ||
*.gcno | ||
proc.out | ||
/src/external/mammut/* | ||
/src/external/knarr/* | ||
/test/googletest/* | ||
microbench/check | ||
microbench/ticksPerNs | ||
microbench/voltageTable | ||
microbench/voltageTable.cpp |
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,6 +1,6 @@ | ||
[submodule "src/external/Mammut"] | ||
path = src/external/Mammut | ||
url = https://github.com/DanieleDeSensi/Mammut.git | ||
[submodule "src/external/orlog"] | ||
path = src/external/orlog | ||
url = https://github.com/DanieleDeSensi/orlog.git | ||
[submodule "src/external/mammut"] | ||
path = src/external/mammut | ||
url = https://github.com/DanieleDeSensi/mammut.git | ||
[submodule "src/external/knarr"] | ||
path = src/external/knarr | ||
url = https://github.com/DanieleDeSensi/knarr.git |
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,26 @@ | ||
language: cpp | ||
compiler: | ||
- gcc | ||
# - clang | ||
sudo: required | ||
dist: trusty | ||
|
||
install: | ||
# CppCheck | ||
- sudo apt-get install -qq cppcheck | ||
|
||
script: | ||
# Runs compilation, cppcheck, tests and coverage collection | ||
- make develcheck | ||
|
||
after_success: | ||
# codecov.io | ||
- bash <(curl -s https://codecov.io/bash) -X gcov -f 'test/gcov/*.gcov' | ||
|
||
notifications: | ||
email: | ||
recipients: | ||
- [email protected] | ||
on_success: never # default: change | ||
on_failure: always # default: always | ||
|
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
Oops, something went wrong.