summaryrefslogtreecommitdiff
path: root/test/ragel.d/cond3.rl
diff options
context:
space:
mode:
Diffstat (limited to 'test/ragel.d/cond3.rl')
-rw-r--r--test/ragel.d/cond3.rl58
1 files changed, 0 insertions, 58 deletions
diff --git a/test/ragel.d/cond3.rl b/test/ragel.d/cond3.rl
deleted file mode 100644
index d08b0d75..00000000
--- a/test/ragel.d/cond3.rl
+++ /dev/null
@@ -1,58 +0,0 @@
-/*
- * @LANG: c++
- */
-
-#include <iostream>
-#include <string.h>
-using std::cout;
-using std::endl;
-
-%%{
- machine foo;
-
- action hit_5 {c == 5}
- action done { cout << " done" << endl; }
- action inc {c++;}
-
- # The any* includes '\n' when hit_5 is true, so use guarded concatenation.
- main := (any @inc)* :> '\n' when hit_5 @done;
-}%%
-
-%% write data noerror;
-
-void test( const char *str )
-{
- int cs = foo_start;
- int c = 0;
- const char *p = str;
- const char *pe = str + strlen( str );
-
- cout << "run:" << endl;
- %% write exec;
- if ( cs >= foo_first_final )
- cout << " success" << endl;
- else
- cout << " failure" << endl;
- cout << endl;
-}
-
-int main()
-{
- test( "12345\n" ); // success
- test( "\n2345\n" ); // success, first newline ignored
- test( "1234\n" ); // failure, didn't get 5 chars before newline.
- return 0;
-}
-
-##### OUTPUT #####
-run:
- done
- success
-
-run:
- done
- success
-
-run:
- failure
-