Skip to content

Commit

Permalink
Merge branch 'fix-tests' into stable
Browse files Browse the repository at this point in the history
  • Loading branch information
jralls committed May 28, 2024
2 parents e80249c + 5f18971 commit ad94999
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion common/cmake_modules/GncAddTest.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,11 @@ function(gnc_add_scheme_test _TARGET _SOURCE_FILE)
(format #t \"%load-compiled-path = ~s~%\" %load-compiled-path)
(error \"Loading guile/site file from outside build tree!\" filename))))
(load-from-path \"${_TARGET}\")
(exit (run-test))"
(let ((result (run-test)))
(if (boolean? result)
(exit result)
(exit (test-runner-fail-count result))))
"
)
endif()
get_guile_env()
Expand Down

0 comments on commit ad94999

Please sign in to comment.