Skip to content

Commit a53cc79

Browse files
committed
Fix bug
1 parent d87d58b commit a53cc79

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/formats/datafile.rkt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
(ninf . ,inf-)
4343
(pinf . ,inf+)
4444
(end-est . ,end-est)
45-
(vars . ,(if vars (map ~a vars) #f))
45+
(vars . ,(if vars (map symbol->string vars) #f))
4646
(samplers . ,(if samplers (map ~a samplers) #f))
4747
(input . ,(~a input))
4848
(output . ,(~a output))

src/sandbox.rkt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -136,11 +136,11 @@
136136
(define link (path-element->string (last (explode-path rdir))))
137137
(define test (test-failure-test result))
138138
(table-row (test-name test) "crash"
139-
#f #f #f #f #f #f (program-variables (test-input test)) (test-sampling-expr test) (test-input test) #f
139+
#f #f #f #f #f #f (test-vars test) (test-sampling-expr test) (test-input test) #f
140140
(test-failure-time result) (test-failure-bits result) link)]
141141
[(test-timeout? result)
142142
(define link (path-element->string (last (explode-path rdir))))
143143
(define test (test-timeout-test result))
144144
(table-row (test-name (test-timeout-test result)) "timeout"
145-
#f #f #f #f #f #f (program-variables (test-input test)) (test-sampling-expr test) (test-input test) #f
145+
#f #f #f #f #f #f (test-vars test) (test-sampling-expr test) (test-input test) #f
146146
(test-timeout-time result) (test-timeout-bits result) link)]))

0 commit comments

Comments
 (0)