emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
blob 5b5e0b42ee494a036d1e5533bf384d7a6adcb40a 1683 bytes (raw)
name: testing/lisp/test-ob-C.el 	 # note: path name is non-authoritative(*)

 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
 
;;; test-ob-awk.el --- tests for ob-awk.el

;; Copyright (c) 2010-2012 Sergey Litvinov
;; Authors: Sergey Litvinov

;; Released under the GNU General Public License version 3
;; see: http://www.gnu.org/licenses/gpl-3.0.html

;;; Code:
(unless (featurep 'ob-C)
  (signal 'missing-test-dependency "Support for C code blocks"))

(ert-deftest ob-C/assert ()
  (should t))

(ert-deftest ob-C/simple-program ()
  "Hello world program."
  (org-test-at-id "fa6db330-e960-4ea2-ac67-94bb845b8577"
    (org-babel-next-src-block)
    (should (= 42 (org-babel-execute-src-block)))))

(ert-deftest ob-C/integer-var ()
  "Test of an integer variable."
  (org-test-at-id "fa6db330-e960-4ea2-ac67-94bb845b8577"
    (org-babel-next-src-block 2)
    (should (= 12 (org-babel-execute-src-block)))))

(ert-deftest ob-C/two-integer-var ()
  "Test of two input variables"
  (org-test-at-id "fa6db330-e960-4ea2-ac67-94bb845b8577"
    (org-babel-next-src-block 3)
    (should (= 22 (org-babel-execute-src-block)))))

(ert-deftest ob-C/string-var ()
  "Test of a string input variable"
  (org-test-at-id "fa6db330-e960-4ea2-ac67-94bb845b8577"
    (org-babel-next-src-block 4)
    (should (equal "word 4" (org-babel-execute-src-block)))))

(ert-deftest ob-C/preprocessor ()
  "Test of a string variable"
  (org-test-at-id "fa6db330-e960-4ea2-ac67-94bb845b8577"
    (org-babel-next-src-block 5)
    (should (= 42 (org-babel-execute-src-block)))))

(ert-deftest ob-C/table ()
  "Test of a table output"
  :expected-result :failed
  (org-test-at-id "2df1ab83-3fa3-462a-a1f3-3aef6044a874"
    (org-babel-next-src-block)
    (should (equal '((1) (2)) (org-babel-execute-src-block)))))

;;; test-ob-C.el ends here
 

debug log:

solving 5b5e0b4 ...
found 5b5e0b4 in https://git.savannah.gnu.org/cgit/emacs/org-mode.git

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).