Commit | Line | Data |
---|---|---|
923be969 RGS |
1 | #!./perl |
2 | ||
3 | # Checks if the parser behaves correctly in edge cases | |
4 | # (including weird syntax errors) | |
5 | ||
6 | BEGIN { | |
7 | chdir 't' if -d 't'; | |
8 | @INC = '../lib'; | |
9 | } | |
10 | ||
f15b33d3 RGS |
11 | require "./test.pl"; |
12 | plan( tests => 9 ); | |
13 | ||
14 | eval '%@x=0;'; | |
15 | like( $@, qr/^Can't modify hash dereference in repeat \(x\)/, '%@x=0' ); | |
16 | ||
17 | # Bug 20010422.005 | |
18 | eval q{{s//${}/; //}}; | |
19 | like( $@, qr/syntax error/, 'syntax error, used to dump core' ); | |
20 | ||
21 | # Bug 20010528.007 | |
22 | eval q/"\x{"/; | |
23 | like( $@, qr/^Missing right brace on \\x/, | |
24 | 'syntax error in string, used to dump core' ); | |
25 | ||
26 | eval "a.b.c.d.e.f;sub"; | |
27 | like( $@, qr/^Illegal declaration of anonymous subroutine/, | |
28 | 'found by Markov chain stress testing' ); | |
29 | ||
30 | # Bug 20010831.001 | |
31 | eval '($a, b) = (1, 2);'; | |
32 | like( $@, qr/^Can't modify constant item in list assignment/, | |
33 | 'bareword in list assignment' ); | |
34 | ||
35 | eval 'tie FOO, "Foo";'; | |
36 | like( $@, qr/^Can't modify constant item in tie /, | |
37 | 'tying a bareword causes a segfault in 5.6.1' ); | |
38 | ||
39 | eval 'undef foo'; | |
40 | like( $@, qr/^Can't modify constant item in undef operator /, | |
41 | 'undefing constant causes a segfault in 5.6.1 [ID 20010906.019]' ); | |
42 | ||
43 | eval 'read($bla, FILE, 1);'; | |
44 | like( $@, qr/^Can't modify constant item in read /, | |
45 | 'read($var, FILE, 1) segfaults on 5.6.1 [ID 20011025.054]' ); | |
923be969 RGS |
46 | |
47 | # This used to dump core (bug #17920) | |
48 | eval q{ sub { sub { f1(f2();); my($a,$b,$c) } } }; | |
f15b33d3 | 49 | like( $@, qr/error/, 'lexical block discarded by yacc' ); |