Changes between Version 2 and Version 3 of Development/Testing
- Timestamp:
- 07/23/09 06:40:44 (4 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Development/Testing
v2 v3 18 18 Regression tests are entirely text based, non-interactive, and should complete within a few seconds. 19 19 20 Regression tests require the base libraries to be built. So before running them you may need to do a: 21 {{{ 22 $ bin/ddc -O -make library/Prelude.ds 23 }}} 24 20 25 == Demos == 21 26 … … 32 37 $ ./styrene 33 38 }}} 39 40 Note that DDC's {{{-make}}} flag will rebuild any module needed by the program being compiled, including modules in the base libraries. This can be useful when working on the libraries, or DDC's {{{-make}}} support. 41 42 For example, we can clean out all the binaries in the {{{library}}}, {{{test}}} and {{{demo}}} directories with: 43 44 {{{ 45 $ make cleanWar 46 }}} 47 48 We can then rebuild the whole {{{styrene}}} program with: 49 {{{ 50 $ bin/ddc -O -make demo/Graphics/Styrene/Main.ds -o styrene 51 }}} 52
