initial commit

This commit is contained in:
2022-03-05 00:30:50 -06:00
commit 8560c362a0
627 changed files with 178605 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
#!/bin/bash
find ../ -name *.gcda
echo "Copying files to the correct locations for correct gcov analysis"
cp -R ../src/* ./src/
cp -R ../src/details/* ./src/details/
cp -R ../src/httpserver/* ./src/httpserver/
cp -R ../test/* ./test/
cp -R ../test/integ/* ./test/integ/
cp -R ../test/unit/* ./test/unit/
echo "Sending json report"
for filename in `find . | egrep '\.cpp'`;
do
gcov -n -o . $filename > /dev/null;
done
codecov