Megatest

Check-in [ddfaeac922]
Login
Overview
Comment:get nfs, /tmp modes working
Downloads: Tarball | ZIP archive | SQL archive
Timelines: family | ancestors | descendants | both | v1.90-fix-modes
Files: files | file ages | folders
SHA1: ddfaeac9228184afeb0e2910974f3a48783c848b
User & Date: matt on 2024-02-09 19:26:31
Other Links: branch diff | manifest | tags
Context
2024-02-09
20:38
wip check-in: 1d37efe6c5 user: matt tags: v1.90-fix-modes
19:26
get nfs, /tmp modes working check-in: ddfaeac922 user: matt tags: v1.90-fix-modes
2024-02-08
20:39
Move test_records.scm into commonmod.scm. Disabled uses of runsmod.import in megatest.scm. check-in: 62a9a80b8c user: matt tags: v1.90
Changes

Modified dashboard-transport-mode.scm from [2cfd93429c] to [770f5f2018].

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15



16
17
18
19
20



21
22
1
2
3
4
5
6
7
8
9
10
11
12



13
14
15
16
17



18
19
20

21












-
-
-
+
+
+


-
-
-
+
+
+
-

;;======================================================================
;; set up transport, db cache and sync methods
;;
;; sync-method:        'original, 'attach or 'none
;; cache-method:       'tmp or 'none
;; rmt:transport-mode: 'http, 'tcp, 'nfs
;;
;; NOTE: NOT ALL COMBINATIONS WORK
;;
;;======================================================================

;; uncomment this block to test without tcp or cachedb
;; (dbfile:sync-method 'none)
;; (dbfile:cache-method 'none)
;; (rmt:transport-mode 'nfs)
(dbfile:sync-method 'none)
(dbfile:cache-method 'none)
(rmt:transport-mode 'nfs)

;; uncomment this block to test with tcp and cachedb
(dbfile:sync-method 'none) ;; original was causing crash on start. 
(dbfile:cache-method 'none)
(rmt:transport-mode 'tcp)
;; (dbfile:sync-method 'none) ;; original was causing crash on start. 
;; (dbfile:cache-method 'none)
;; (rmt:transport-mode 'tcp)
;; (rmt:transport-mode 'nfs)

Modified megatest.scm from [32535e1bcd] to [e49309db33].

60
61
62
63
64
65
66
67

68
69
70
71
72
73
74
60
61
62
63
64
65
66

67
68
69
70
71
72
73
74







-
+







(declare (uses apimod))
(declare (uses apimod.import))
(declare (uses rmtmod))
(declare (uses rmtmod.import))
(declare (uses tasksmod))
(declare (uses tasksmod.import))
(declare (uses testsmod))
(declare (uses testsmod.import))
;; (declare (uses testsmod.import))
(declare (uses subrunmod))
(declare (uses subrunmod.import))
(declare (uses archivemod))
(declare (uses archivemod.import))
(declare (uses runsmod))
;; (declare (uses runsmod.import))
(declare (uses cpumod))

Modified transport-mode.scm from [9dbf69644d] to [8c66537e82].

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15



16
17
18
19
20



21
22
1
2
3
4
5
6
7
8
9
10
11
12



13
14
15
16
17



18
19
20
21
22












-
-
-
+
+
+


-
-
-
+
+
+


;;======================================================================
;; set up transport, db cache and sync methods
;;
;; sync-method:        'original, 'attach or 'none
;; cache-method:       'tmp 'none
;; rmt:transport-mode: 'http, 'tcp, 'nfs
;;
;; NOTE: NOT ALL COMBINATIONS WORK
;;
;;======================================================================

;; uncomment this block to test without tcp
;; (dbfile:sync-method 'none)
;; (dbfile:cache-method 'none)
;; (rmt:transport-mode 'nfs)
(dbfile:sync-method 'none)
(dbfile:cache-method 'none)
(rmt:transport-mode 'nfs)

;; uncomment this block to test with tcp
(dbfile:sync-method 'attach) ;; attach) ;; original
(dbfile:cache-method 'tmp)
(rmt:transport-mode 'tcp)
;; (dbfile:sync-method 'attach) ;; attach) ;; original
;; (dbfile:cache-method 'tmp)
;; (rmt:transport-mode 'tcp)