blob: d64809bca125405e996055c26b1fdfd72dfb3338 (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
|
# -*- tcl -*-
# pt_parse_peg.test: tests for the pt::parse::peg peg parsing package.
#
# Copyright (c) 2010 by Andreas Kupries <andreas_kupries@users.sourceforge.net>
# All rights reserved.
#
# RCS: @(#) $Id: pt_parse_peg.test,v 1.1 2010/03/26 05:07:24 andreas_kupries Exp $
# -------------------------------------------------------------------------
source [file join \
[file dirname [file dirname [file join [pwd] [info script]]]] \
devtools testutilities.tcl]
testsNeedTcl 8.5
testsNeedTcltest 2
support {
useAccel [useTcllibC] struct/stack.tcl struct::stack ; # User: pt::rde
TestAccelInit struct::stack ; # (tcl)
use snit/snit.tcl snit
use fileutil/fileutil.tcl fileutil ;# tests/common
use textutil/adjust.tcl textutil::adjust
useLocal pt_astree.tcl pt::ast
useLocal pt_pexpression.tcl pt::pe
useLocal pt_pegrammar.tcl pt::peg
useLocal pt_peg_container.tcl pt::peg::container
useAccel [useTcllibC] pt/pt_rdengine.tcl pt::rde ; # User: pt::parse::peg
TestAccelInit pt::rde ; # or: pt:peg::interp
# Get the parser used by the converter, either the grammar
# interpreter, or snit-based and spcialized to PEG.
#useLocal pt_peg_container_peg.tcl pt::peg::container::peg
#useLocal pt_peg_interp.tcl pt::peg::interp
source [localPath tests/common]
}
testing {
useAccel [useTcllibC] pt/pt_parse_peg.tcl pt::parse::peg ; # User: pt::peg::from::peg
TestAccelInit pt::parse::peg
}
set mytestdir tests/data
# -------------------------------------------------------------------------
# Note: When using pt::rde's C implementation struct::stack is not
# used, and its implementation of no relevance.
#
# Similarly, when pt::parse::peg's C implementation is used
# neither pt::rde's, nor struct::stack's implementations are of
# relevance.
TestAccelDo pt::parse::peg parseimpl {
if {$parseimpl eq "critcl"} {
set rdeimpl n/a
set stackimpl n/a
pt::rde::SwitchTo {}
struct::stack::SwitchTo {}
source [localPath tests/pt_parse_peg.tests]
} else {
TestAccelDo pt::rde rdeimpl {
if {$rdeimpl eq "critcl"} {
set stackimpl n/a
struct::stack::SwitchTo {}
source [localPath tests/pt_parse_peg.tests]
} else {
TestAccelDo struct::stack stackimpl {
source [localPath tests/pt_parse_peg.tests]
}
}
}
}
}
# -------------------------------------------------------------------------
TestAccelExit pt::parse::peg
TestAccelExit pt::rde
TestAccelExit struct::stack
testsuiteCleanup
return
|