Skip to content

Commit 0cebc33

Browse files
committed
added unit test 40 to the VS project.
1 parent cb9231e commit 0cebc33

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

visual_studio/jsonfortranlib/jsonfortranlib.vfproj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@
4141
<Tool Name="VFPreBuildEventTool"/>
4242
<Tool Name="VFPostBuildEventTool"/></Configuration></Configurations>
4343
<Files>
44-
<Filter Name="include">
44+
<Filter Name="include" Filter="inc">
4545
<File RelativePath="..\..\src\json_macros.inc"/>
4646
<File RelativePath="..\..\src\json_initialize_arguments.inc"/></Filter>
47-
<Filter Name="src" Filter="F90;f90;for;f;fpp;ftn;def;odl;idl">
47+
<Filter Name="src" Filter="F90;f90">
4848
<File RelativePath="..\..\src\json_file_module.F90"/>
4949
<File RelativePath="..\..\src\json_kinds.F90"/>
5050
<File RelativePath="..\..\src\json_module.F90"/>

visual_studio/jsonfortrantest/jsonfortrantest.f90

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ program jsonfortrantest
4646
use jf_test_37_mod , only: test_37
4747
use jf_test_38_mod , only: test_38
4848
use jf_test_39_mod , only: test_39
49+
use jf_test_40_mod , only: test_40
4950

5051
implicit none
5152

@@ -92,6 +93,7 @@ program jsonfortrantest
9293
call test_37(n_errors); if (n_errors /= 0) stop 1
9394
call test_38(n_errors); if (n_errors /= 0) stop 1
9495
call test_39(n_errors); if (n_errors /= 0) stop 1
96+
call test_40(n_errors); if (n_errors /= 0) stop 1
9597

9698
end program jsonfortrantest
9799
!*****************************************************************************************

visual_studio/jsonfortrantest/jsonfortrantest.vfproj

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,5 +85,6 @@
8585
<File RelativePath="..\..\src\tests\jf_test_37.F90"/>
8686
<File RelativePath="..\..\src\tests\jf_test_38.F90"/>
8787
<File RelativePath="..\..\src\tests\jf_test_39.F90"/>
88+
<File RelativePath="..\..\src\tests\jf_test_40.F90"/>
8889
<File RelativePath=".\jsonfortrantest.f90"/></Filter></Files>
8990
<Globals/></VisualStudioProject>

0 commit comments

Comments
 (0)