|
Revision 94, 0.8 kB
(checked in by mgalloy, 2 years ago)
|
|
Cleaning up build process.
|
| Line | |
|---|
| 1 | ;+ |
|---|
| 2 | ; Builds the mgunit sav file. A typo on line 78 of parse_url.pro (IDL 6.4, 7.0) |
|---|
| 3 | ; must be fixed for this build process to work. |
|---|
| 4 | ;- |
|---|
| 5 | |
|---|
| 6 | ; clear any other compilations |
|---|
| 7 | .reset |
|---|
| 8 | |
|---|
| 9 | ; compile required code |
|---|
| 10 | .compile assert |
|---|
| 11 | .compile mgutclirunner__define |
|---|
| 12 | .compile mguttestsuite__define |
|---|
| 13 | .compile mguthtmlrunner__define |
|---|
| 14 | .compile mgutxmlrunner__define |
|---|
| 15 | .compile mgutjunitrunner__define |
|---|
| 16 | .compile mguttestcase__define |
|---|
| 17 | .compile mgunit |
|---|
| 18 | .compile mguttestrunner__define |
|---|
| 19 | .compile mgutcompoundrunner__define.pro |
|---|
| 20 | .compile mg_ansicode |
|---|
| 21 | .compile mg_src_root |
|---|
| 22 | .compile mg_options__define |
|---|
| 23 | |
|---|
| 24 | |
|---|
| 25 | ; compile any system routines that are used in the required code |
|---|
| 26 | resolve_all |
|---|
| 27 | |
|---|
| 28 | ; create the sav file |
|---|
| 29 | save, filename='mgunit.sav', /routines, $ |
|---|
| 30 | description='MGunit unit testing framework' |
|---|
| 31 | |
|---|
| 32 | exit |
|---|