summaryrefslogtreecommitdiff
path: root/test/ragel.d/condrep1.rl
diff options
context:
space:
mode:
Diffstat (limited to 'test/ragel.d/condrep1.rl')
-rw-r--r--test/ragel.d/condrep1.rl117
1 files changed, 0 insertions, 117 deletions
diff --git a/test/ragel.d/condrep1.rl b/test/ragel.d/condrep1.rl
deleted file mode 100644
index 10ae8949..00000000
--- a/test/ragel.d/condrep1.rl
+++ /dev/null
@@ -1,117 +0,0 @@
-/*
- * @LANG: c++
- */
-
-#include <iostream>
-#include <string.h>
-using std::cout;
-using std::endl;
-
-%%{
- machine foo;
-
- action seen { seen += 1; }
-
- action init { c = 0; }
- action inc { c += 1; }
- action min { ({ c >= min; }) }
- action max { ({ c < max; }) }
-
- main :=
- :condstar( '.' @seen, init, inc, min, max ):
- 0;
-
-}%%
-
-%% write data noerror;
-
-void test( int min, int max, const char *str )
-{
- int cs;
- const char *p = str;
- const char *pe = str + strlen( str ) + 1;
- int c = 0, seen = 0;
-
- cout << "run " << str << " " << min << " " << max << ":";
-
- %% write init;
- %% write exec;
-
- cout << " " << seen;
-
- if ( cs >= foo_first_final )
- cout << " success" << endl;
- else
- cout << " failure" << endl;
-}
-
-int main()
-{
- test( 0, 0, "" );
- test( 0, 1, "" );
- test( 1, 1, "" );
- test( 1, 2, "" );
- test( 2, 2, "" );
- test( 2, 3, "" );
-
- test( 0, 0, "." );
- test( 0, 1, "." );
- test( 1, 1, "." );
- test( 1, 2, "." );
- test( 2, 2, "." );
- test( 2, 3, "." );
-
- test( 0, 0, ".." );
- test( 0, 1, ".." );
- test( 1, 1, ".." );
- test( 1, 2, ".." );
- test( 2, 2, ".." );
- test( 2, 3, ".." );
-
- test( 0, 0, "..." );
- test( 0, 1, "..." );
- test( 1, 1, "..." );
- test( 1, 2, "..." );
- test( 2, 2, "..." );
- test( 2, 3, "..." );
-
- test( 0, 0, "...." );
- test( 0, 1, "...." );
- test( 1, 1, "...." );
- test( 1, 2, "...." );
- test( 2, 2, "...." );
- test( 2, 3, "...." );
- return 0;
-}
-
-##### OUTPUT #####
-run 0 0: 0 success
-run 0 1: 0 success
-run 1 1: 0 failure
-run 1 2: 0 failure
-run 2 2: 0 failure
-run 2 3: 0 failure
-run . 0 0: 0 failure
-run . 0 1: 1 success
-run . 1 1: 1 success
-run . 1 2: 1 success
-run . 2 2: 1 failure
-run . 2 3: 1 failure
-run .. 0 0: 0 failure
-run .. 0 1: 1 failure
-run .. 1 1: 1 failure
-run .. 1 2: 2 success
-run .. 2 2: 2 success
-run .. 2 3: 2 success
-run ... 0 0: 0 failure
-run ... 0 1: 1 failure
-run ... 1 1: 1 failure
-run ... 1 2: 2 failure
-run ... 2 2: 2 failure
-run ... 2 3: 3 success
-run .... 0 0: 0 failure
-run .... 0 1: 1 failure
-run .... 1 1: 1 failure
-run .... 1 2: 2 failure
-run .... 2 2: 2 failure
-run .... 2 3: 3 failure