mirror of
https://github.com/open-goal/jak-project
synced 2026-08-21 14:54:53 -04:00
fix test failure and stop running manual tests in CI (#1912)
This commit is contained in:
@@ -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
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user