diff options
author | Adrian Thurston <thurston@colm.net> | 2020-03-08 23:29:57 +0200 |
---|---|---|
committer | Adrian Thurston <thurston@colm.net> | 2020-03-08 23:53:25 +0200 |
commit | 78e7949ca590b273c2c152a0abe0d51e590a52fd (patch) | |
tree | c253c852aec77af8a04c24d921d8657ff29c4101 /test/ragel.d/scan4.rl | |
parent | 5718c319424a21b64e1b50dbb6aae644715b9e85 (diff) | |
download | colm-78e7949ca590b273c2c152a0abe0d51e590a52fd.tar.gz |
remove the ragel tests, export runtests for use by ragel
Diffstat (limited to 'test/ragel.d/scan4.rl')
-rw-r--r-- | test/ragel.d/scan4.rl | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/test/ragel.d/scan4.rl b/test/ragel.d/scan4.rl deleted file mode 100644 index 44f24b16..00000000 --- a/test/ragel.d/scan4.rl +++ /dev/null @@ -1,34 +0,0 @@ -/* - * @LANG: indep - * @NEEDS_EOF: yes - */ - -ptr ts; -ptr te; -int act; -int token; - -%%{ - machine scanner; - - # Warning: changing the patterns or the input string will affect the - # coverage of the scanner action types. - main := |* - 'a' => { - print_str "pat1\n"; - }; - - [ab]+ . 'c' => { - print_str "pat2\n"; - }; - - any; - *|; -}%% - -##### INPUT ##### -"ba a" -##### OUTPUT ##### -pat1 -pat1 -ACCEPT |