Overview
Comment: | Fixed missing [logpro] section in create-megatest-area. |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.62 | v1.6204 |
Files: | files | file ages | folders |
SHA1: |
c74d681e4f0fb08ce7d14d009568d173 |
User & Date: | mrwellan on 2016-10-17 14:36:30 |
Other Links: | branch diff | manifest | tags |
Context
2016-10-18
| ||
23:25 | Replaced apply max with common:max in few places check-in: 8b35992868 user: matt tags: v1.62 | |
15:15 | Create new branch named "db-new" check-in: 049fdd2534 user: ritikaag tags: db-new | |
2016-10-17
| ||
14:36 | Fixed missing [logpro] section in create-megatest-area. check-in: c74d681e4f user: mrwellan tags: v1.62, v1.6204 | |
11:04 | Merged in html and bumped version to v1.6204 check-in: 831e40ab39 user: mrwellan tags: v1.62 | |
Changes
Modified docs/megatest-training.pdf from [84211704af] to [efa6551238].
cannot compute difference between binary files
Modified genexample.scm from [01568c88b1] to [bd1757f906].
︙ | ︙ | |||
300 301 302 303 304 305 306 | (print "# Alternatively you could use a [itemstable] section") (print "# [itemstable]") (print "# ITEMVAR1 a b c") (print "# ITEMVAR2 d e f") (print "#\n# would result in items: a/d b/e c/f\n#\n") (print "# Logpro rules for each step can be captured here in the testconfig") (print "# note: The ;; after the stepname and the leading whitespace are required") | | | 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 | (print "# Alternatively you could use a [itemstable] section") (print "# [itemstable]") (print "# ITEMVAR1 a b c") (print "# ITEMVAR2 d e f") (print "#\n# would result in items: a/d b/e c/f\n#\n") (print "# Logpro rules for each step can be captured here in the testconfig") (print "# note: The ;; after the stepname and the leading whitespace are required") (print "#\n[logpro]\n") (for-each (lambda (step) (let ((stepname (car step)) (scriptname (cadr step))) (print stepname " ;; rules for checking output from running step " step " with command " scriptname) (print genexample:example-logpro "\n"))) steps) (print "# test_meta is a section for storing additional data on your test\n[test_meta]") |
︙ | ︙ |