Overview
Comment: | Added skip script capability in testconfig. Skips if script returns status 0 |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.65 |
Files: | files | file ages | folders |
SHA1: |
8ec43965a7e5f43a9090442d36674c16 |
User & Date: | mmgraham on 2019-11-13 17:16:12 |
Other Links: | branch diff | manifest | tags |
Context
2019-11-13
| ||
17:37 | added info to the manual for skip filenotexists and skip script check-in: 64fa416b34 user: mmgraham tags: v1.65 | |
17:16 | Added skip script capability in testconfig. Skips if script returns status 0 check-in: 8ec43965a7 user: mmgraham tags: v1.65 | |
11:59 | In run:test, added skip filenotexists. check-in: 78105f5bdb user: mmgraham tags: v1.65 | |
Changes
Modified runs.scm from [0863abc3aa] to [81684437ca].
︙ | |||
1888 1889 1890 1891 1892 1893 1894 | 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 | + - + + + + + + | (if (common:file-exists? (configf:lookup test-conf "skip" "fileexists")) (set! skip-test (conc "Skipping due to existance of file " (configf:lookup test-conf "skip" "fileexists"))))) ((and skip-check (configf:lookup test-conf "skip" "filenotexists")) (if (not (common:file-exists? (configf:lookup test-conf "skip" "filenotexists"))) (set! skip-test (conc "Skipping due to non existance of file " (configf:lookup test-conf "skip" "filenotexists"))))) |
︙ |