summaryrefslogtreecommitdiff
path: root/test/trans.d/case/caseindep_crack.rl
blob: a4c2bf8ac3820395d27819a9aa4a788a0f6d3951 (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
//
// @LANG: crack
// @GENERATED: true
//

import crack.io cout;
import crack.lang Buffer;



%%{
	machine indep;

	main := (
		( '1' 'hello' ) |
		( '2' "hello" ) |
		( '3' /hello/ ) |
		( '4' 'hello'i ) |
		( '5' "hello"i ) |
		( '6' /hello/i )
	) '\n';
}%%



%% write data;

void m( String s )
{
	byteptr data = s.buffer;
	int p = 0;
	int pe = s.size;
	int cs;
	String buffer;

	%% write init;
	%% write exec;

	if ( cs >= indep_first_final ) {
		cout `ACCEPT\n`;
	}
	else {
		cout `FAIL\n`;
	}
}

void main()
{
	m( "1hello\n" );
	m( "1HELLO\n" );
	m( "1HeLLo\n" );
	m( "2hello\n" );
	m( "2HELLO\n" );
	m( "2HeLLo\n" );
	m( "3hello\n" );
	m( "3HELLO\n" );
	m( "3HeLLo\n" );
	m( "4hello\n" );
	m( "4HELLO\n" );
	m( "4HeLLo\n" );
	m( "5hello\n" );
	m( "5HELLO\n" );
	m( "5HeLLo\n" );
	m( "6hello\n" );
	m( "6HELLO\n" );
	m( "6HeLLo\n" );
}

main();