about summary refs log tree commit diff stats
BranchCommit messageAuthorAge
hlthalt until exception when waiting for keyboardKartik K. Agaram12 months
mainfix other mandelbrot variantsKartik K. Agaram5 weeks
 
; 2015-04-12 23:29:59 -0700 committer Kartik K. Agaram <vc@akkartik.com> 2015-04-12 23:33:49 -0700 1058 - scenarios can now check trace' href='/akkartik/mu/commit/cpp/035scenario_trace_test.mu?h=hlt&id=43d2d20e55c052c5844a38d0d87526f68c7e2217'>43d2d20e ^
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


























                                                     
# tests for trace-checking scenario in previous layer
scenario first_scenario_checking_trace [
  run [
    1:integer <- add 2:literal, 2:literal
  ]
  trace should contain [
    mem: storing 4 in location 1
  ]
]

scenario first_scenario_checking_trace_negative [
  run [
    1:integer <- add 2:literal, 2:literal
  ]
  trace should not contain [
    mem: storing 5 in location 1
  ]
]

scenario trace_in_mu [
  run [
    trace [foo], [aaa]
  ]
  trace should contain [
    foo: aaa
  ]
]