Skip to content

Commit c28dbc4

Browse files
committed
Update: submodule tree shaking test package
To reproduce issue with H5fortran. Need to recurse all the way down the submodule hierarchy.
1 parent cb75386 commit c28dbc4

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

ci/run_tests.sh

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,8 +76,6 @@ test ! -e ./build/gfortran_*/submodule_tree_shake/src_parent_unused.f90.o
7676
test ! -e ./build/gfortran_*/submodule_tree_shake/src_parent_unused.f90.o.log
7777
test ! -e ./build/gfortran_*/submodule_tree_shake/src_child_unused.f90.o
7878
test ! -e ./build/gfortran_*/submodule_tree_shake/src_child_unused.f90.o.log
79-
test ! -e ./build/gfortran_*/submodule_tree_shake/src_grandchild.f90.o
80-
test ! -e ./build/gfortran_*/submodule_tree_shake/src_grandchild.f90.o.log
8179
popd
8280

8381
pushd version_file

example_packages/submodule_tree_shake/src/child1.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ end function my_fun
1010
contains
1111

1212
module procedure my_sub1
13-
a = 1
13+
a = my_fun()
1414
end procedure my_sub1
1515

1616
end submodule child1

0 commit comments

Comments
 (0)