Overview
Comment: | Added launch to uses in server.scm, more tweaks to fdktestqa configs |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | v1.60 |
Files: | files | file ages | folders |
SHA1: |
89ac157423b3ce537be96121d0e5e081 |
User & Date: | matt on 2014-07-23 00:54:18 |
Other Links: | branch diff | manifest | tags |
Context
2014-07-23
| ||
00:59 | Missed a conversion from setup-for-run to launch:setup-for-run check-in: 36ce1881c0 user: matt tags: v1.60 | |
00:54 | Added launch to uses in server.scm, more tweaks to fdktestqa configs check-in: 89ac157423 user: matt tags: v1.60 | |
00:33 | Changed some configs for fdktestqa check-in: 68f95981bf user: matt tags: v1.60 | |
Changes
Modified server.scm from [eadf82f272] to [52a8bf55cd].
︙ | ︙ | |||
18 19 20 21 22 23 24 25 26 27 28 29 30 31 | (declare (unit server)) (declare (uses common)) (declare (uses db)) (declare (uses tasks)) ;; tasks are where stuff is maintained about what is running. (declare (uses synchash)) (declare (uses http-transport)) ;; (declare (uses zmq-transport)) (declare (uses daemon)) (include "common_records.scm") (include "db_records.scm") (define (server:make-server-url hostport) | > | 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 | (declare (unit server)) (declare (uses common)) (declare (uses db)) (declare (uses tasks)) ;; tasks are where stuff is maintained about what is running. (declare (uses synchash)) (declare (uses http-transport)) (declare (uses launch)) ;; (declare (uses zmq-transport)) (declare (uses daemon)) (include "common_records.scm") (include "db_records.scm") (define (server:make-server-url hostport) |
︙ | ︙ |
Modified tests/fdktestqa/fdk.config from [a1e1cb0cc3] to [2fcf75c346].
︙ | ︙ | |||
10 11 12 13 14 15 16 | # max_concurrent_jobs 150 max_concurrent_jobs 500 # This is your link path, you can move it but it is generally better to keep it stable linktree #{shell readlink -f #{getenv PWD}/../simplelinks} [include testqa/configs/megatest.abc.config] | > > > > > | 10 11 12 13 14 15 16 17 18 19 20 21 | # max_concurrent_jobs 150 max_concurrent_jobs 500 # This is your link path, you can move it but it is generally better to keep it stable linktree #{shell readlink -f #{getenv PWD}/../simplelinks} [include testqa/configs/megatest.abc.config] [server] timeout 1 |
Modified tests/fdktestqa/testqa/Makefile from [99797f1b40] to [4410aef0a8].
︙ | ︙ | |||
26 27 28 29 30 31 32 | dashboard : $(DASHBOARD) -rows 20 & compile : (cd ../../..;make -j && make install) clean : | | | 26 27 28 29 30 31 32 33 34 | dashboard : $(DASHBOARD) -rows 20 & compile : (cd ../../..;make -j && make install) clean : rm -rf ../simple*/*/* megatest.db db/* ../simple*/.db/* logs/* |