1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
|
#!/usr/bin/env python
"""
Tests for module with scalar derived types and subprograms.
-----
Permission to use, modify, and distribute this software is given under the
terms of the NumPy License. See http://scipy.org.
NO WARRANTY IS EXPRESSED OR IMPLIED. USE AT YOUR OWN RISK.
Author: Pearu Peterson <pearu@cens.ioc.ee>
Created: Oct 2006
-----
"""
import os
import sys
from numpy.testing import *
set_package_path()
from lib.main import build_extension, compile
restore_path()
fortran_code = '''
module test_module_module_ext2
type rat
integer n,d
end type rat
contains
subroutine foo2()
print*,"In foo2"
end subroutine foo2
end module
module test_module_module_ext
contains
subroutine foo
use test_module_module_ext2
print*,"In foo"
call foo2
end subroutine foo
subroutine bar(a)
use test_module_module_ext2
type(rat) a
print*,"In bar,a=",a
end subroutine bar
end module test_module_module_ext
'''
m,m2 = compile(fortran_code, modulenames=['test_module_module_ext',
'test_module_module_ext2',
])
from numpy import *
class TestM(NumpyTestCase):
def check_foo_simple(self, level=1):
foo = m.foo
foo()
if __name__ == "__main__":
NumpyTest().run()
|