Changes between Version 2 and Version 3 of debugging_tips
- Timestamp:
- 10/15/19 08:55:00 (5 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
debugging_tips
v2 v3 36 36 }}} 37 37 38 If we wish to compare the binaryfiles for, say, MATLAB versus Python runs of the same test, we can redirect the output of `BinRead.py` to a text file, then run,38 If 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, 39 39 {{{ 40 diff /path/to/BinRead_output_1 /path/to/BinRead_output_240 diff path/to/BinRead_output_1 path/to/BinRead_output_2 41 41 }}} 42 43 ==== Comparing Queue Scripts ==== 44 It 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 {{{ 46 diff execution/test-<MATLAB_test>/test<test_num>.queue execution/test-<Python_test>/test<test_num>.queue 47 }}}