Skip to content

Commit 2e3388b

Browse files
committed
updated the visual studio solution file
two of the tests were missing. also added three missing inc files.
1 parent 40e6ccc commit 2e3388b

File tree

2 files changed

+7
-0
lines changed

2 files changed

+7
-0
lines changed

visual_studio/jsonfortranlib/jsonfortranlib.vfproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,9 @@
4242
<Tool Name="VFPostBuildEventTool"/></Configuration></Configurations>
4343
<Files>
4444
<Filter Name="include" Filter="inc">
45+
<File RelativePath="..\..\src\json_get_scalar_by_path.inc"/>
46+
<File RelativePath="..\..\src\json_get_vec_by_path_alloc.inc"/>
47+
<File RelativePath="..\..\src\json_get_vec_by_path.inc"/>
4548
<File RelativePath="..\..\src\json_initialize_arguments.inc"/>
4649
<File RelativePath="..\..\src\json_initialize_dummy_arguments.inc"/>
4750
<File RelativePath="..\..\src\json_macros.inc"/></Filter>

visual_studio/jsonfortrantest/jsonfortrantest.f90

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,8 @@ program jsonfortrantest
5656
use jf_test_47_mod , only: test_47
5757
use jf_test_48_mod , only: test_48
5858
use jf_test_49_mod , only: test_49
59+
use jf_test_50_mod , only: test_50
60+
use jf_test_51_mod , only: test_51
5961

6062
implicit none
6163

@@ -112,6 +114,8 @@ program jsonfortrantest
112114
call test_47(n_errors); if (n_errors /= 0) stop 1
113115
call test_48(n_errors); if (n_errors /= 0) stop 1
114116
call test_49(n_errors); if (n_errors /= 0) stop 1
117+
call test_50(n_errors); if (n_errors /= 0) stop 1
118+
call test_51(n_errors); if (n_errors /= 0) stop 1
115119

116120
end program jsonfortrantest
117121
!*****************************************************************************************

0 commit comments

Comments
 (0)