aboutsummaryrefslogtreecommitdiff
path: root/tests/unit/c/cpp.scm
blob: 43ad014426dcd23e1f84dbf48a1da55569e80132 (plain)
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
;;; Commentary:
;; Tests my parser for a subset of the C programming language.
;;; Code:

(define-module (test cpp)
  :use-module (srfi srfi-64)
  :use-module (srfi srfi-88)
  :use-module ((c lex) :select (lex))
  :use-module ((c parse) :select (parse-lexeme-tree)))

(define run (compose parse-lexeme-tree lex))

(test-equal
  '(+ (post-increment (dereference C)) 3)
  (run "(*C)++ + 3"))

(test-equal
  '(+ (post-increment (dereference C)) 3)
  (run "*C++ + 3"))

(test-equal
  '(post-increment (dereference C))
  (run "*C++"))

(test-equal
  '(+ (post-increment C) (post-increment C))
  (run "C++ + C++"))

(test-equal
  '(+ (pre-increment C) (pre-increment C))
  (run "++C + ++C"))

(test-equal '(+ 2 (* 2 2)) (run "2 + 2 * 2"))

(test-equal '(+ (* 2 2) 2) (run "2 * 2 + 2"))

(test-equal '(+ 2 2 2) (run "2+2+2"))


'((c lex)
  (c parse))