Overview
Comment: | Fixed typo in rsync call for populating test directories |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.54 | v1.5418 |
Files: | files | file ages | folders |
SHA1: |
d25cf88e1493f1dbaf5ae65df92a6d77 |
User & Date: | mrwellan on 2013-04-29 10:12:15 |
Other Links: | branch diff | manifest | tags |
Context
2013-04-29
| ||
20:22 | Added safety net to test control panel for when db disappears via deletion check-in: 2b48e9b190 user: matt tags: v1.54 | |
16:53 | merged from v1.54 and development and added loop for processing 100 at a time check-in: b6a0d64bc4 user: mrwellan tags: runcontrol | |
10:12 | Fixed typo in rsync call for populating test directories check-in: d25cf88e14 user: mrwellan tags: v1.54, v1.5418 | |
09:31 | Merged development to v1.54 for release as v1.5418 check-in: 90fd97673d user: mrwellan tags: v1.54 | |
Changes
Modified launch.scm from [d2d20103be] to [55b9f6da82].
︙ | ︙ | |||
540 541 542 543 544 545 546 | ;; substitute the TEST_SRC_PATH and TEST_TARG_PATH (string-substitute "TEST_TARG_PATH" test-path (string-substitute "TEST_SRC_PATH" test-src-path cmd #t) #t) #f))) (cmd (if ovrcmd ovrcmd (conc "rsync -av" (if (debug:debug-mode 1) "" "q") " " test-src-path "/ " test-path "/" | | | 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 | ;; substitute the TEST_SRC_PATH and TEST_TARG_PATH (string-substitute "TEST_TARG_PATH" test-path (string-substitute "TEST_SRC_PATH" test-src-path cmd #t) #t) #f))) (cmd (if ovrcmd ovrcmd (conc "rsync -av" (if (debug:debug-mode 1) "" "q") " " test-src-path "/ " test-path "/" " >> " test-path "/mt_launch.log 2>> " test-path "/mt_launch.log"))) (status (system cmd))) (if (not (eq? status 0)) (debug:print 2 "ERROR: problem with running \"" cmd "\""))) (list lnkpathf lnkpath )) (list #f #f)))) ;; 1. look though disks list for disk with most space |
︙ | ︙ |
Modified tests/fullrun/megatest.config from [d10fbb7cf0] to [79a26d5a60].
︙ | ︙ | |||
16 17 18 19 20 21 22 | # launchwait yes # It is possible (but not recommended) to override the rsync command used # to populate the test directories. For test development the following # example can be useful # | | | 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 | # launchwait yes # It is possible (but not recommended) to override the rsync command used # to populate the test directories. For test development the following # example can be useful # # testcopycmd cp --remove-destination -rsv TEST_SRC_PATH/. TEST_TARG_PATH/. >> TEST_TARG_PATH/mt_launch.log 2>> TEST_TARG_PATH/mt_launch.log # or for hard links # testcopycmd cp --remove-destination -rlv TEST_SRC_PATH/. TEST_TARG_PATH/. # FULL or 2, NORMAL or 1, OFF or 0 synchronous OFF |
︙ | ︙ |