diff options
Diffstat (limited to 'sandbox')
-rw-r--r-- | sandbox/005-sandbox.mu | 4 | ||||
-rw-r--r-- | sandbox/006-sandbox-edit.mu | 4 | ||||
-rw-r--r-- | sandbox/007-sandbox-delete.mu | 2 | ||||
-rw-r--r-- | sandbox/009-sandbox-trace.mu | 4 | ||||
-rw-r--r-- | sandbox/010-warnings.mu | 6 |
5 files changed, 10 insertions, 10 deletions
diff --git a/sandbox/005-sandbox.mu b/sandbox/005-sandbox.mu index a06f3076..cc21a284 100644 --- a/sandbox/005-sandbox.mu +++ b/sandbox/005-sandbox.mu @@ -21,7 +21,7 @@ container sandbox-data [ ] scenario run-and-show-results [ - $close-trace # trace too long + trace-until 100/app # trace too long assume-screen 50/width, 15/height # sandbox editor contains an instruction without storing outputs 1:address:array:character <- new [divide-with-remainder 11, 3] @@ -388,7 +388,7 @@ recipe render-screen [ ] scenario run-instruction-manages-screen-per-sandbox [ - $close-trace # trace too long + trace-until 100/app # trace too long assume-screen 50/width, 20/height # editor contains an instruction 1:address:array:character <- new [print-integer screen, 4] diff --git a/sandbox/006-sandbox-edit.mu b/sandbox/006-sandbox-edit.mu index 5a628f3a..db12cc57 100644 --- a/sandbox/006-sandbox-edit.mu +++ b/sandbox/006-sandbox-edit.mu @@ -1,7 +1,7 @@ ## editing sandboxes after they've been created scenario clicking-on-a-sandbox-moves-it-to-editor [ - $close-trace # trace too long + trace-until 100/app # trace too long assume-screen 40/width, 10/height # run something 1:address:array:character <- new [add 2, 2] @@ -125,7 +125,7 @@ recipe extract-sandbox [ ] scenario sandbox-with-print-can-be-edited [ - $close-trace # trace too long + trace-until 100/app # trace too long assume-screen 50/width, 20/height # run a print instruction 1:address:array:character <- new [print-integer screen, 4] diff --git a/sandbox/007-sandbox-delete.mu b/sandbox/007-sandbox-delete.mu index a84da4fa..224ac923 100644 --- a/sandbox/007-sandbox-delete.mu +++ b/sandbox/007-sandbox-delete.mu @@ -1,7 +1,7 @@ ## deleting sandboxes scenario deleting-sandboxes [ - $close-trace # trace too long + trace-until 100/app # trace too long assume-screen 50/width, 15/height 1:address:array:character <- new [] 2:address:programming-environment-data <- new-programming-environment screen:address, 1:address:array:character diff --git a/sandbox/009-sandbox-trace.mu b/sandbox/009-sandbox-trace.mu index 8c5b87d8..88b4e877 100644 --- a/sandbox/009-sandbox-trace.mu +++ b/sandbox/009-sandbox-trace.mu @@ -1,7 +1,7 @@ ## clicking on the code typed into a sandbox toggles its trace scenario sandbox-click-on-code-toggles-app-trace [ - $close-trace # trace too long + trace-until 100/app # trace too long assume-screen 40/width, 10/height # run a stash instruction 1:address:array:character <- new [stash [abc]] @@ -69,7 +69,7 @@ scenario sandbox-click-on-code-toggles-app-trace [ ] scenario sandbox-shows-app-trace-and-result [ - $close-trace # trace too long + trace-until 100/app # trace too long assume-screen 40/width, 10/height # run a stash instruction and some code 1:address:array:character <- new [stash [abc] diff --git a/sandbox/010-warnings.mu b/sandbox/010-warnings.mu index e8fed050..ece806c3 100644 --- a/sandbox/010-warnings.mu +++ b/sandbox/010-warnings.mu @@ -64,7 +64,7 @@ after <render-sandbox-trace-done> [ ] scenario run-instruction-and-print-warnings [ - $close-trace # trace too long + trace-until 100/app # trace too long assume-screen 50/width, 15/height 1:address:array:character <- new [get 1:address:point, 1:offset] 2:address:programming-environment-data <- new-programming-environment screen:address, 1:address:array:character @@ -99,7 +99,7 @@ scenario run-instruction-and-print-warnings [ ] scenario run-instruction-and-print-warnings-only-once [ - $close-trace # trace too long + trace-until 100/app # trace too long assume-screen 50/width, 10/height # editor contains an illegal instruction 1:address:array:character <- new [get 1234:number, foo:offset] @@ -128,7 +128,7 @@ scenario run-instruction-and-print-warnings-only-once [ ] scenario sandbox-can-handle-infinite-loop [ - $close-trace # trace too long + trace-until 100/app # trace too long assume-screen 50/width, 20/height # editor contains an infinite loop 1:address:array:character <- new [{ |