File tree Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Expand file tree Collapse file tree 2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -128,4 +128,9 @@ jobs:
128
128
( set +e ; fpm run --example false-assertion ${FPM_FLAGS} --flag "${{ matrix.EXTRA_FLAGS }}" ; test $? = $ERROR_STOP_CODE )
129
129
( set +e ; fpm run --example invoke-via-macro ${FPM_FLAGS} --flag "${{ matrix.EXTRA_FLAGS }}" ; test $? = $ERROR_STOP_CODE )
130
130
131
-
131
+ - name : Test Assertions w/ Parallel Callbacks
132
+ env :
133
+ FPM_FLAGS : ${{ env.FPM_FLAGS }} --flag -DASSERTIONS --flag -DASSERT_MULTI_IMAGE --flag -DASSERT_PARALLEL_CALLBACKS
134
+ run : |
135
+ set -x
136
+ ( set +e ; fpm run --example false-assertion ${FPM_FLAGS} --flag "${{ matrix.EXTRA_FLAGS }}" ; test $? = $ERROR_STOP_CODE )
Original file line number Diff line number Diff line change 1
1
module assert_m
2
2
! ! Public interface
3
+ use assert_subroutine_m ! DO NOT PLACE AN ONLY CLAUSE HERE!
4
+ ! All public members of assert_subroutine_m are exported
3
5
use intrinsic_array_m, only : intrinsic_array_t
4
- use assert_subroutine_m, only : assert, assert_always
5
6
use characterizable_m, only : characterizable_t
6
7
7
8
! The function below is public only to support automated
You can’t perform that action at this time.
0 commit comments