Changes between Version 13 and Version 14 of DevelopmentProcedure
- Timestamp:
- 09/28/11 10:28:39 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DevelopmentProcedure
v13 v14 4 4 == Test Your Changes == 5 5 First, you'll want the newest revision of AstroBEAR. You could either make a new repository via {{{hg clone}}} or pull the newest changeset into your current repository: 6 {{{ 7 hg clone ssh://<username>@clover.pas.rochester.edu//data/repositories/scrambler_devel astrobear 8 }}} 9 OR 6 10 {{{ 7 11 hg pull ssh://<username>@clover.pas.rochester.edu//data/repositories/scrambler_devel … … 15 19 16 20 == Run the Test Suite == 17 This part needs to be run in {{{bluehive}}}. 21 This part needs to be run in {{{bluehive}}}. First, you will want to clone or pull your local changeset into bluehive. Next, you run the buildtests script: 22 {{{ 23 ./buildtests.s 24 }}} 25 Make sure the tests completed successfully by looking in the out directory: {{{scratch/afrank_group}}} 26 If the tests were successful, you can push your changeset into the development repository: 27 {{{ 28 hg push 29 }}} 30 If the tests were not successful, you will have to begin a debugging procedure. 18 31 19 32 == Summary ==