Changeset 84 for trunk/test/src/RpLibraryF_test.f
- Timestamp:
- Oct 5, 2005 1:21:24 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/test/src/RpLibraryF_test.f
r83 r84 41 41 END SUBROUTINE test_get_str 42 42 43 SUBROUTINE test_get_dbl(lib,path) 44 integer lib 45 double precision rslt, rp_lib_get_double 46 character*100 path, retText 47 48 print *,"TESTING GET: path = ",path 49 50 rslt = rp_lib_get_double(lib, path) 51 52 print *,"rslt = ",rslt 53 END SUBROUTINE test_get_dbl 54 43 55 program rplib_f_tests 44 56 IMPLICIT NONE … … 65 77 !print *,"strVal = ",strVal 66 78 67 ! TESTING GET 79 ! TESTING GET STRING 68 80 path = "input.number(min).current" 69 81 call test_get_str(driver, path) 82 83 ! TESTING GET DOUBLE 84 path = "input.number(min).current" 85 call test_get_dbl(driver, path) 70 86 71 87
Note: See TracChangeset
for help on using the changeset viewer.