Changeset 155 for trunk


Ignore:
Timestamp:
Jan 12, 2006 12:46:50 PM (18 years ago)
Author:
dkearney
Message:

1) few minor changes to the matlab bindings,
2) removal of put_*_id tests from matlab and octave bindings test script
i'll be removing the actual functions soon.

Location:
trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/matlab/rpLibChildren.cc

    r154 r155  
    5454
    5555    /* Call the C subroutine. */
    56     if ( (libIndex > 0) && (path) ) {
     56    if ( (libIndex > 0)     &&
     57         (path)             &&
     58         (childIndex >= 0)      ) {
    5759        lib = getObject_Lib(libIndex);
    5860
  • trunk/src/octave/rpLibResult.cc

    r135 r155  
    1919/**
    2020 * Usually the last call of the program, this function signals to the gui
    21  * telling it that processing has completed and the output is ready to be
     21 * that processing has completed and the output is ready to be
    2222 * displayed
    2323 */
     
    2828\n\
    2929Usually the last call of the program, this function signals to the gui\n\
    30 telling it that processing has completed and the output is ready to be\n\
     30that processing has completed and the output is ready to be\n\
    3131displayed\n\
    3232Error Codes: @var{err} = 0 is success, anything else is failure.")
  • trunk/test/src/RpMatlab_test.m

    r154 r155  
    5353err = test_node_type(lib,'input.number(min)');
    5454err = test_put(lib,'output.curve(result).xy(f12)','12 13',' ',1);
    55 % gotta check out why this next one doesnt work, might be in the c++ code
    56 err = test_put(lib,'output.curve(result).xy','22 23','f13',1);
    57 err = test_put_dbl(lib,'output.curve(result).xy(f14)',22,1);
    58 err = test_put_dbl(lib,'output.curve(result).xy(f15)',0,1);
    59 err = test_put_dbl_id(lib,'output.curve(result).xy(f16)',44,' ',1);
    60 % gotta check out why this next one doesnt work, might be in the c++ code
    61 err = test_put_dbl_id(lib,'output.curve(result).xy',55,'f17',1);
    62 err = test_put_str_id(lib,'output.curve(result).xy(f18)','72 83',' ',1);
    63 % gotta check out why this next one doesnt work, might be in the c++ code
    64 err = test_put_str_id(lib,'output.curve(result).xy','92 103','f19',1);
    65 err = test_put_str(lib,'output.curve(result).xy(f20)','110 111',1);
     55err = test_put_dbl(lib,'output.curve(result).xy(f13)',22,1);
     56err = test_put_dbl(lib,'output.curve(result).xy(f14)',0,1);
     57err = test_put_str(lib,'output.curve(result).xy(f15)','110 111',1);
    6658err = test_xml(lib);
    6759err = test_result(lib);
  • trunk/test/src/RpOctave_test.m

    r140 r155  
    4646err = test_node_type(lib,'input.number(min)');
    4747err = test_put(lib,'output.curve(result).xy(f12)','12 13','',1);
    48 % gotta check out why this next one doesnt work, might be in the c++ code
    49 err = test_put(lib,'output.curve(result).xy','22 23','f13',1);
    50 err = test_put_dbl(lib,'output.curve(result).xy(f14)',22,1);
    51 err = test_put_dbl(lib,'output.curve(result).xy(f15)',0,1);
    52 err = test_put_dbl_id(lib,'output.curve(result).xy(f16)',44,'',1);
    53 % gotta check out why this next one doesnt work, might be in the c++ code
    54 err = test_put_dbl_id(lib,'output.curve(result).xy',55,'f17',1);
    55 err = test_put_str_id(lib,'output.curve(result).xy(f18)','72 83','',1);
    56 % gotta check out why this next one doesnt work, might be in the c++ code
    57 err = test_put_str_id(lib,'output.curve(result).xy','92 103','f19',1);
    58 err = test_put_str(lib,'output.curve(result).xy(f20)','110 111',1);
     48err = test_put_dbl(lib,'output.curve(result).xy(f13)',22,1);
     49err = test_put_dbl(lib,'output.curve(result).xy(f14)',0,1);
     50err = test_put_str(lib,'output.curve(result).xy(f15)','110 111',1);
    5951err = test_xml(lib);
    6052err = test_result(lib);
Note: See TracChangeset for help on using the changeset viewer.