Changes between Version 12 and Version 13 of DevelopmentProcedure


Ignore:
Timestamp:
09/28/11 10:22:21 (13 years ago)
Author:
ehansen
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • DevelopmentProcedure

    v12 v13  
    77hg pull ssh://<username>@clover.pas.rochester.edu//data/repositories/scrambler_devel
    88}}}
    9 Then compile your problem, and run it.  If it still works, then you will want to commit these changes to your local repository.  If you added new files that you want to be included you will need to do {{{hg add}}} before {{{hg ci}}}.  Now, it is time to test the code with the test suite.
     9Then make any desired or necessary changes, and compile your problem. Now run it, and check the output.  If it still works, then you will want to commit these changes to your local repository.  If you added new files that you want to be included you will need to do {{{hg add}}} before {{{hg ci}}}:
     10{{{
     11hg add <filename(s)>
     12hg ci
     13}}}
     14If it did not work, you will have to go back and check everything you have changed, fix it, recompile, rerun, and recheck. If everything works and you have committed your changes, it is time to test the rest of the code with the test suite.
    1015
    1116== Run the Test Suite ==