Ignore:
Timestamp:
Oct 5, 2005, 1:21:24 PM (19 years ago)
Author:
dkearney
Message:
  1. added "install" target to make file for copying files over to /opt/rappture
  2. added targets for python to build and install the units module
  3. added fortran stub functions for library and units.

RpLibraryF_test.f compiles, just with warnings, because i'm still working on it.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/test/src/RpLibraryF_test.f

    r83 r84  
    4141      END SUBROUTINE  test_get_str
    4242
     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
    4355      program rplib_f_tests
    4456        IMPLICIT NONE
     
    6577        !print *,"strVal = ",strVal
    6678
    67         ! TESTING GET
     79        ! TESTING GET STRING
    6880        path = "input.number(min).current"
    6981        call test_get_str(driver, path)
     82
     83        ! TESTING GET DOUBLE
     84        path = "input.number(min).current"
     85        call test_get_dbl(driver, path)
    7086
    7187
Note: See TracChangeset for help on using the changeset viewer.