Overview
Comment: | Added tests to rm of test dir in tree for speculative bug fix |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
95fdf5ee69d3fd9fdc40e082ea7ce36c |
User & Date: | mrwellan on 2012-02-22 17:13:55 |
Other Links: | manifest | tags |
Context
2012-02-24
| ||
03:21 | No need for the archiving branch, work not happening there anyway so merging to trunk check-in: ad71efd688 user: matt tags: trunk | |
2012-02-22
| ||
17:13 | Added tests to rm of test dir in tree for speculative bug fix check-in: 95fdf5ee69 user: mrwellan tags: trunk | |
2012-01-29
| ||
19:17 | Cleared up issues with the code listings in the documention check-in: 79e43d242f user: matt tags: trunk | |
Changes
Modified launch.scm from [3d741a045b] to [354dcb520b].
︙ | ︙ | |||
394 395 396 397 398 399 400 | (system (conc "mkdir -p " dfullp)) (debug:print 2 " - creating link from " dfullp "/" testname " to " lnkpath) (system (conc "mkdir -p " lnkpath)) ;; I suspect this section was deleting test directories under some ;; wierd sitations? This doesn't make sense - reenabling the rm -f | | > > > | | | 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 | (system (conc "mkdir -p " dfullp)) (debug:print 2 " - creating link from " dfullp "/" testname " to " lnkpath) (system (conc "mkdir -p " lnkpath)) ;; I suspect this section was deleting test directories under some ;; wierd sitations? This doesn't make sense - reenabling the rm -f (let ((testlink (conc lnkpath "/" testname))) (if (and (file-exists? testlink) (or (regular-file? testlink) (symbolic-link? testlink))) (system (conc "rm -f " testlink))) (system (conc "ln -sf " dfullp " " testlink))) (if (directory? dfullp) (begin (let* ((cmd (conc "rsync -av" (if (> *verbosity* 1) "" "q") " " test-path "/ " dfullp "/")) (status (system cmd))) (if (not (eq? status 0)) (debug:print 2 "ERROR: problem with running \"" cmd "\""))) (list dfullp toptest-path)) |
︙ | ︙ |
Modified tests/tests/ezlog_warn/testconfig from [f14cf9fc78] to [bb1f94c96f].
1 2 3 4 | [setup] [ezsteps] lookittmp ls /tmp | | | 1 2 3 4 5 6 7 8 9 10 11 12 | [setup] [ezsteps] lookittmp ls /tmp lookithome ls $HOME [test_meta] author matt owner bob description This test runs two ezsteps the first of which is expected to fail using a simple logpro file. tags first,single |
︙ | ︙ |