Skip to content

Commit 77ff643

Browse files
committed
updated visual studio solution with the 3 newest unit tests.
1 parent 7bfb276 commit 77ff643

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

visual_studio/jsonfortrantest/jsonfortrantest.f90

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
!>
33
! Entry point for the unified unit test application.
44
!
5-
! Runs through all the tests in the `tests` folder
6-
! Returns 1 if there are any errors.
5+
! Runs all the tests in the `tests` folder
6+
! Returns `1` if there are any errors.
77

88
program jsonfortrantest
99

@@ -39,6 +39,9 @@ program jsonfortrantest
3939
use jf_test_30_mod , only: test_30
4040
use jf_test_31_mod , only: test_31
4141
use jf_test_32_mod , only: test_32
42+
use jf_test_33_mod , only: test_33
43+
use jf_test_34_mod , only: test_34
44+
use jf_test_35_mod , only: test_35
4245

4346
implicit none
4447

@@ -78,6 +81,9 @@ program jsonfortrantest
7881
call test_30(n_errors); if (n_errors /= 0) stop 1
7982
call test_31(n_errors); if (n_errors /= 0) stop 1
8083
call test_32(n_errors); if (n_errors /= 0) stop 1
84+
call test_33(n_errors); if (n_errors /= 0) stop 1
85+
call test_34(n_errors); if (n_errors /= 0) stop 1
86+
call test_35(n_errors); if (n_errors /= 0) stop 1
8187

8288
end program jsonfortrantest
8389
!*****************************************************************************************

visual_studio/jsonfortrantest/jsonfortrantest.vfproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -78,5 +78,8 @@
7878
<File RelativePath="..\..\src\tests\jf_test_30.F90"/>
7979
<File RelativePath="..\..\src\tests\jf_test_31.F90"/>
8080
<File RelativePath="..\..\src\tests\jf_test_32.F90"/>
81+
<File RelativePath="..\..\src\tests\jf_test_33.F90"/>
82+
<File RelativePath="..\..\src\tests\jf_test_34.F90"/>
83+
<File RelativePath="..\..\src\tests\jf_test_35.F90"/>
8184
<File RelativePath=".\jsonfortrantest.f90"/></Filter></Files>
8285
<Globals/></VisualStudioProject>

0 commit comments

Comments
 (0)