blob: 279e7188ecc60b1f8edc0fe579d000ecb72221e4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
(load "mu.arc")
(reset)
(new-trace "new-screen")
(add-fns:readfile "edit.mu")
(add-fns
'((test-new-screen
((2001 screen-address) <- new-screen (5 literal) (5 literal))
)))
;? (each stmt function*!new-screen
;? (prn stmt))
(let before Memory-in-use-until
;? (= dump-trace* (obj blacklist '("sz" "m" "setm" "addr" "cvt0" "cvt1")))
(run 'test-new-screen)
;? (prn memory*)
;? (prn memory*!2001)
(when (~is (memory* memory*!2001) 5) ; number of rows
(prn "F - newly-allocated screen doesn't have the right number of rows: @(memory* memory*!2001)"))
(let row-pointers (let base (+ 1 memory*!2001)
(range base (+ base 4)))
;? (prn row-pointers)
(when (some nil (map memory* row-pointers))
(prn "F - newly-allocated screen didn't initialize all of its row pointers"))
(when (~all 5 (map memory* (map memory* row-pointers)))
(prn "F - newly-allocated screen didn't initialize all of its row lengths"))))
(reset)
|