Overview
Comment: | Added missing files |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | dev |
Files: | files | file ages | folders |
SHA1: |
2b32f9312f5122f81505290a805c2a59 |
User & Date: | mrwellan on 2013-07-22 15:33:26 |
Other Links: | branch diff | manifest | tags |
Context
2013-07-22
| ||
16:44 | Added cache for downloads check-in: 5a88f742d7 user: matt tags: dev | |
15:33 | Added missing files check-in: 2b32f9312f user: mrwellan tags: dev | |
14:46 | Adding setup task check-in: cc4475b0c5 user: mrwellan tags: dev | |
Changes
Added tests/installall/tests/tougheggs/install.logpro version [ce3aad56c4].
> > > > > > > > > | 1 2 3 4 5 6 7 8 9 | ;; You should have at least one expect:required. This ensures that your process ran (expect:required in "LogFileBody" > 0 "Last thing done is chmod ..." #/chmod /) ;; You may need ignores to suppress false error or warning hits from the later expects ;; NOTE: Order is important here! (expect:ignore in "LogFileBody" >= 0 "Ignore someword-errors" #/\w+-error/) (expect:ignore in "LogFileBody" < 99 "Ignore the word error in comments" #/^\/\/.*error/) (expect:warning in "LogFileBody" = 0 "Any warning" #/warn/) (expect:error in "LogFileBody" = 0 "Any error" (list #/ERROR/ #/error/i)) ;; but disallow any other errors |
Added tests/installall/tests/tougheggs/install.sh version [7f9ea04779].
> > > > > > > > > | 1 2 3 4 5 6 7 8 9 | #!/usr/bin/env bash # Run your step here source $PREFIX/buildsetup.sh lockfile $PREFIX/eggs.lock $PREFIX/bin/chicken-install $PROX $EGG_NAME rm -f $PREFIX/eggs.lock |
Added tests/installall/tests/tougheggs/testconfig version [e1e673d39f].
> > > > > > > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 | # Add additional steps here. Format is "stepname script" [ezsteps] install install.sh # Test requirements are specified here [requirements] waiton eggs # Iteration for your tests are controlled by the items section [items] EGG_NAME intarweb http-client awful uri-common spiffy-request-vars spiffy apropos spiffy-directory-listing # test_meta is a section for storing additional data on your test [test_meta] author matt owner matt description Download and install eggs with no significant prerequisites tags tagone,tagtwo reviewed never |