Overview
Comment: | Some logpro file fixes for installall |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | dev |
Files: | files | file ages | folders |
SHA1: |
7ba8688f37f77c9b931f06fc15666639 |
User & Date: | matt on 2013-07-22 00:12:50 |
Other Links: | branch diff | manifest | tags |
Context
2013-07-22
| ||
00:22 | Some logpro file fixes for installall check-in: e1ff315042 user: matt tags: dev | |
00:12 | Some logpro file fixes for installall check-in: 7ba8688f37 user: matt tags: dev | |
2013-07-21
| ||
23:54 | Basic installall flow check-in: 8666173eaf user: matt tags: dev | |
Changes
Modified tests/installall/tests/eggs/install.logpro from [3c929554be] to [0fb1cabb32].
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 setup-error-handling" #/setup-error-handling/) (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/)) ;; but disallow any other errors | > | 1 2 3 4 5 6 7 8 9 10 | ;; 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 setup-error-handling" #/setup-error-handling/) (expect:ignore in "LogFileBody" >= 0 "Ignore check-errors" #/check-errors/) (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/)) ;; but disallow any other errors |
Modified tests/installall/tests/iup/testconfig from [3d2a250f7a] to [9b089102fc].
1 2 3 4 5 6 | # Add additional steps here. Format is "stepname script" [ezsteps] install install.sh # Test requirements are specified here [requirements] | | | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | # Add additional steps here. Format is "stepname script" [ezsteps] install install.sh # Test requirements are specified here [requirements] waiton iuplib chicken # Iteration for your tests are controlled by the items section [items] # test_meta is a section for storing additional data on your test [test_meta] author matt |
︙ | ︙ |
Modified tests/installall/tests/sqlite3/compile.logpro from [d6c930d55e] to [e91efdc3b7].
1 | ;; You should have at least one expect:required. This ensures that your process ran | | | 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 "Leaving directory" #/(Leaving directory|Nothing to be done for|creating sqlite3)/) ;; 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 strerror_r" #/strerror_r/i) (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/)) ;; but disallow any other errors |