Skip to content

Commit

Permalink
update ignore files
Browse files Browse the repository at this point in the history
Signed-off-by: Ian Chen <[email protected]>
  • Loading branch information
iche033 committed Aug 16, 2024
1 parent b852307 commit 7ddc32a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 3 deletions.
4 changes: 4 additions & 0 deletions codecov.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
ignore:
- "graphics/src/tiny_obj_loader.h"
- "graphics/src/CDT"
- "graphics/src/VHACD"
- "profiler/src/Remotery/lib"
- "profiler/src/Remotery/vis"
- "src/win_dirent.h"
5 changes: 3 additions & 2 deletions coverage.ignore.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
profiler/src/Remotery/*
graphics/src/tiny_obj_loader.h
graphics/src/CDT/*
graphics/src/VHACD/*
profiler/src/Remotery/*
src/win_dirent.h
graphics/src/tinyxml2/*
2 changes: 1 addition & 1 deletion graphics/src/DelaunayTriangulation_TEST.cc
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ TEST_F(DelaunayTriangulation, DelaunayTriangulation)
EXPECT_EQ(subMesh.IndexCount() / 3u, 8u);

// verify that triangles have clockwise winding
for (int t = 0; t < subMesh.IndexCount() / 3u; ++t)
for (unsigned int t = 0; t < subMesh.IndexCount() / 3u; ++t)
{
int vertexIndex1 = subMesh.Index(t*3 + 0);
int vertexIndex2 = subMesh.Index(t*3 + 1);
Expand Down

0 comments on commit 7ddc32a

Please sign in to comment.