fix test failure and stop running manual tests in CI (#1912)

This commit is contained in:
Tyler Wilding
2022-09-24 15:56:53 -04:00
committed by GitHub
parent 903450b878
commit 7dd8053697
3 changed files with 18 additions and 1 deletions
+2
View File
@@ -47561,6 +47561,7 @@
)
)
;; +++nav-graph-h:nav-node-flag-byte
(defenum nav-node-flag-byte
"The same as [[nav-node-flag]] but more compact"
:type uint8
@@ -47570,6 +47571,7 @@
(pedestrian 2)
(selected 3)
(hidden 4))
;; ---nav-graph-h:nav-node-flag-byte
(deftype nav-node (structure)
(
@@ -5,6 +5,21 @@
;; name in dgo: nav-graph-h
;; dgos: CWI
(declare-type nav-node structure)
;; +++nav-node-flag-byte
(defenum nav-node-flag-byte
"The same as [[nav-node-flag]] but more compact"
:type uint8
:bitfield #t
(visited 0)
(blocked 1)
(pedestrian 2)
(selected 3)
(hidden 4))
;; ---nav-node-flag-byte
;; DECOMP BEGINS
(deftype nav-branch (structure)
+1 -1
View File
@@ -51,7 +51,7 @@ if(UNIX AND CMAKE_COMPILER_IS_GNUCXX AND CODE_COVERAGE)
include(CodeCoverage)
append_coverage_compiler_flags()
setup_target_for_coverage_lcov(NAME goalc-test_coverage
EXECUTABLE goalc-test --gtest_color=yes --gtest_brief=1
EXECUTABLE goalc-test --gtest_color=yes --gtest_brief=1 --gtest_filter="-*MANUAL_TEST*"
DEPENDENCIES goalc-test
EXCLUDE "third-party/*" "/usr/include/*")
endif()