summaryrefslogtreecommitdiff
path: root/pbx/ael/ael-test/ael-ntest9
diff options
context:
space:
mode:
authorSteve Murphy <murf@digium.com>2006-07-06 22:49:18 +0000
committerSteve Murphy <murf@digium.com>2006-07-06 22:49:18 +0000
commit04ed725e73855cecff2fdc88e02fe661614a1734 (patch)
treeb3e271d6c8977746d980b1f845f04866c1d89d84 /pbx/ael/ael-test/ael-ntest9
parentde03118578932f016d2f02ec87699e512f549f08 (diff)
OK, here is everything I changed to fix 7474:
1. ael/ael.flex -- the "fix" is here. In short, I modified the pattern for the chars that break args, to exclude those chars that would normally break args if they are preceded by a backslash. I did this to 3 patterns where really, this kind of exclusion should be placed. 2. ael_lex.c is an updated output from lex. 3. the ael-test stuff -- instituted a regression test for this condition. as ael_ntest9. The "n" in the name means that instead of just getting the syntax/semantic errors and high-level output from aelparse, we also want the compilation results to be in the comparison file. (remove the -n option). git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@37255 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'pbx/ael/ael-test/ael-ntest9')
-rwxr-xr-xpbx/ael/ael-test/ael-ntest9/extensions.ael12
1 files changed, 12 insertions, 0 deletions
diff --git a/pbx/ael/ael-test/ael-ntest9/extensions.ael b/pbx/ael/ael-test/ael-ntest9/extensions.ael
new file mode 100755
index 000000000..b9762ed54
--- /dev/null
+++ b/pbx/ael/ael-test/ael-ntest9/extensions.ael
@@ -0,0 +1,12 @@
+
+context workext {
+ ignorepat => 8;
+ ignorepat => 9;
+ 793 => {
+ Set(QUERYSTRING=SELECT\ foo\,\ bar\ FROM\ foobar);
+ Verbose(2|${QUERYSTRING});
+ query="SELECT foo\, bar FROM foobar" ;
+ Verbose(2|${query}) ;
+ }
+}
+