Skip to content

Commit

Permalink
move scripts used during testing to github folder
Browse files Browse the repository at this point in the history
(cherry picked from commit 735976d)
  • Loading branch information
wahln committed Mar 23, 2023
1 parent c3a673f commit 4b9a2fa
Show file tree
Hide file tree
Showing 7 changed files with 2 additions and 1 deletion.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
3 changes: 2 additions & 1 deletion .travis/runtests.sh → .github/runtests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
## Make sure some failures are detected by the CI runners
function exitIfError {
# pass "$?" as argument: i.e. the exit status of the last call
if [ "$1" -ne 0 ]; then
# currently octave 6 can finish with a segfault when the program is closed due to some bug, for now we try to ignore it
if [ "$1" -ne 0 ] && [ "$1" -ne 139 ]; then
exit $1;
fi
}
Expand Down

0 comments on commit 4b9a2fa

Please sign in to comment.