Changeset 3280


Ignore:
Timestamp:
08/06/13 14:54:58 (11 years ago)
Author:
sanmai
Message:
  • Fix test script.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • monitoring/plugins/mpi/integration_test.R

    r3278 r3280  
    2525    base:::message(base:::paste("Running test", test_index));
    2626
    27     command_line_arguments <-
     27    command_line <-
    2828        base:::paste(test_info[test_index,]$command, "-h", test_info[test_index,]$`-h`);
    2929   
    3030    if (test_info[test_index,]$`-u` != "") {
    31         command_line_arguments <-
    32             base:::c(command_line_arguments,
    33             test_info[test_index,]$`-u`);
     31        command_line <-
     32            base:::c(command_line 
     33                     '-u', test_info[test_index,]$`-u`);
    3434    }
    3535   
     
    3838    test_output <-
    3939        system2(command = "python2",
    40                 args    = command_line_arguments,
     40                args    = command_line,
    4141                stdout  = TRUE,
    4242                stderr  = TRUE);
     
    6161test_results_df <-
    6262    base:::data.frame(description             = test_info$service,
    63                       command_line_arguments  = command_line_arguments,
     63                      command_line            = command_line,
    6464                      test_results            = test_results,
    6565                      test_stdout             = test_stdout,
Note: See TracChangeset for help on using the changeset viewer.