Fixing tests

This commit is contained in:
retropikzel 2025-10-29 19:15:05 +02:00
parent cd2a221fb8
commit 113f38997d
3 changed files with 3 additions and 1 deletions

1
Jenkinsfile vendored
View File

@ -30,6 +30,7 @@ pipeline {
stage("${SCHEME}") {
catchError(buildResult: 'SUCCESS', stageResult: 'FAILURE') {
sh "timeout 6000 make SCHEME=${SCHEME} clean test-docker"
sh "grep '# of failures' tmp/${LIBRARY}/${SCHEME}/*.log && exit 1"
}
}
}]

View File

@ -1,3 +1,4 @@
.PHONY: ${TMPDIR}
.SILENT: build install test test-docker clean ${TMPDIR}
SCHEME=chibi
LIBRARY=system

View File

@ -19,6 +19,6 @@
(define exit-code2 (system "no-such-command 2> /dev/null"))
(test-assert (> exit-code2 0))
(test-assert (= exit-code2 0))
(test-end "foreign-c-system")