Changes between Version 2 and Version 3 of debugging_tips


Ignore:
Timestamp:
10/15/19 08:55:00 (5 years ago)
Author:
jdquinn
Comment:

Added note about diff'ing queue scripts

Legend:

Unmodified
Added
Removed
Modified
  • debugging_tips

    v2 v3  
    3636}}}
    3737
    38 If we wish to compare the binary files for, say, MATLAB versus Python runs of the same test, we can redirect the output of `BinRead.py` to a text file, then run,
     38If we wish to compare the input files for, say, MATLAB versus Python runs of the same test, we can redirect the output of `BinRead.py` to a text file, then run,
    3939{{{
    40 diff /path/to/BinRead_output_1 /path/to/BinRead_output_2
     40diff path/to/BinRead_output_1 path/to/BinRead_output_2
    4141}}}
     42
     43==== Comparing Queue Scripts ====
     44It is worth noting here that it might also be helpful to compare the queue scripts for MATLAB vs Python runs of the same test, with,
     45{{{
     46diff execution/test-<MATLAB_test>/test<test_num>.queue execution/test-<Python_test>/test<test_num>.queue
     47}}}