0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-09-23 14:10:43 +00:00

adding two bugs...

** TODO defunct R sessions
** TODO test failing forcing vector results with =test-forced-vector-results= ruby code block
This commit is contained in:
Eric Schulte 2009-06-14 09:22:31 -07:00
parent d879ac0a12
commit 4a4046d73d

View file

@ -1718,7 +1718,12 @@ This could probably be added to [[file:lisp/org-babel-script.el][org-babel-scrip
(see [[* file result types][file result types]])
* Bugs [13/16]
* Bugs [13/18]
** TODO defunct R sessions
sometimes an old R session will turn defunct, and newly inserted code
will not be evaluated (leading to a hang)
** TODO test failing forcing vector results with =test-forced-vector-results= ruby code block
** TODO non-orgtbl formatted lists
for example
@ -2017,28 +2022,28 @@ of these tests may fail.
#+TBLNAME: org-babel-tests
| functionality | block | arg | expected | results | pass |
|-------------------------+----------------------------+-----+-------------+-------------+------|
|-------------------------+----------------------------+-----+-------------+-------------+--------------------------------|
| basic evaluation | | | | | pass |
|-------------------------+----------------------------+-----+-------------+-------------+------|
|-------------------------+----------------------------+-----+-------------+-------------+--------------------------------|
| emacs lisp | basic-elisp | | 5 | 5 | pass |
| shell | basic-shell | | 6 | 6 | pass |
| ruby | basic-ruby | | org-babel | org-babel | pass |
| python | basic-python | | hello world | hello world | pass |
| R | basic-R | | 13 | 13 | pass |
|-------------------------+----------------------------+-----+-------------+-------------+------|
|-------------------------+----------------------------+-----+-------------+-------------+--------------------------------|
| tables | | | | | pass |
|-------------------------+----------------------------+-----+-------------+-------------+------|
|-------------------------+----------------------------+-----+-------------+-------------+--------------------------------|
| emacs lisp | table-elisp | | 3 | 3 | pass |
| ruby | table-ruby | | 1-2-3 | 1-2-3 | pass |
| python | table-python | | 5 | 5 | pass |
| R | table-R | | 3.5 | 3.5 | pass |
|-------------------------+----------------------------+-----+-------------+-------------+------|
|-------------------------+----------------------------+-----+-------------+-------------+--------------------------------|
| source block references | | | | | pass |
|-------------------------+----------------------------+-----+-------------+-------------+------|
|-------------------------+----------------------------+-----+-------------+-------------+--------------------------------|
| all languages | chained-ref-last | | Array | Array | pass |
|-------------------------+----------------------------+-----+-------------+-------------+------|
|-------------------------+----------------------------+-----+-------------+-------------+--------------------------------|
| source block functions | | | | | pass |
|-------------------------+----------------------------+-----+-------------+-------------+------|
|-------------------------+----------------------------+-----+-------------+-------------+--------------------------------|
| emacs lisp | defun-fibb | | fibbd | fibbd | pass |
| run over | Fibonacci | 0 | 1 | 1 | pass |
| a | Fibonacci | 1 | 1 | 1 | pass |
@ -2046,16 +2051,16 @@ of these tests may fail.
| of | Fibonacci | 3 | 3 | 3 | pass |
| different | Fibonacci | 4 | 5 | 5 | pass |
| arguments | Fibonacci | 5 | 8 | 8 | pass |
|-------------------------+----------------------------+-----+-------------+-------------+------|
|-------------------------+----------------------------+-----+-------------+-------------+--------------------------------|
| bugs and tasks | | | | | pass |
|-------------------------+----------------------------+-----+-------------+-------------+------|
|-------------------------+----------------------------+-----+-------------+-------------+--------------------------------|
| simple ruby arrays | ruby-array-test | | 3 | 3 | pass |
| R number evaluation | bug-R-number-evaluation | | 2 | 2 | pass |
| multi-line ruby blocks | multi-line-ruby-test | | 2 | 2 | pass |
| forcing vector results | test-forced-vector-results | | Array | Array | pass |
|-------------------------+----------------------------+-----+-------------+-------------+------|
| forcing vector results | test-forced-vector-results | | Array | nil | expected "Array" but was "nil" |
|-------------------------+----------------------------+-----+-------------+-------------+--------------------------------|
| sessions | | | | | pass |
|-------------------------+----------------------------+-----+-------------+-------------+------|
|-------------------------+----------------------------+-----+-------------+-------------+--------------------------------|
| set ruby session | set-ruby-session-var | | :set | :set | pass |
| get from ruby session | get-ruby-session-var | | 3 | 3 | pass |
| set python session | set-python-session-var | | set | set | pass |