File tree 3 files changed +6
-11
lines changed
3 files changed +6
-11
lines changed Original file line number Diff line number Diff line change @@ -10,12 +10,7 @@ add_subdirectory(ascii)
10
10
add_subdirectory (io)
11
11
add_subdirectory (optval)
12
12
13
- add_executable (test_skip test_skip.f90)
14
- target_link_libraries (test_skip fortran_stdlib)
15
- add_test (NAME AlwaysSkip COMMAND $<TARGET_FILE:test_skip>)
16
- set_tests_properties (AlwaysSkip PROPERTIES SKIP_RETURN_CODE 77)
17
-
18
- add_executable (test_fail test_fail.f90)
19
- target_link_libraries (test_fail fortran_stdlib)
20
- add_test (NAME AlwaysFail COMMAND $<TARGET_FILE:test_fail>)
21
- set_tests_properties (AlwaysFail PROPERTIES WILL_FAIL true )
13
+ ADDTEST(always_skip)
14
+ set_tests_properties (always_skip PROPERTIES SKIP_RETURN_CODE 77)
15
+ ADDTEST(always_fail)
16
+ set_tests_properties (always_fail PROPERTIES WILL_FAIL true )
Original file line number Diff line number Diff line change 1
- program AlwaysFail
1
+ program test_always_fail
2
2
3
3
use stdlib_experimental_error, only : assert
4
4
implicit none
Original file line number Diff line number Diff line change 1
- program AlwaysSkip
1
+ program test_always_skip
2
2
3
3
use stdlib_experimental_error, only : assert
4
4
implicit none
You can’t perform that action at this time.
0 commit comments