diff options
author | Thomas Rast <trast@student.ethz.ch> | 2010-12-18 17:17:54 +0100 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-01-18 08:51:58 -0800 |
commit | 8d96e7288f2be9de6d09352dc445f18f89564500 (patch) | |
tree | 664c85e92832fbb8f10b8af2c4efddea224b75af /t/t4034/csharp/pre | |
parent | Git 1.7.4-rc2 (diff) | |
download | tgif-8d96e7288f2be9de6d09352dc445f18f89564500.tar.xz |
t4034: bulk verify builtin word regex sanity
The builtin word regexes should be tested with some simple examples
against simple issues. Do this in bulk.
Mainly due to a lack of language knowledge and inspiration, most of
the test cases (cpp, csharp, java, objc, pascal, php, python, ruby)
are directly based off a C operator precedence table to verify that
all operators are split correctly. This means that they are probably
incomplete or inaccurate except for 'cpp' itself.
Still, they are good enough to already have uncovered a typo in the
python and ruby patterns.
'fortran' is based on my anecdotal knowledge of the DO10I parsing
rules, and thus probably useless. The rest (bibtex, html, tex) are an
ad-hoc test of what I consider important splits in those languages.
Signed-off-by: Thomas Rast <trast@student.ethz.ch>
Signed-off-by: Jonathan Nieder <jrnieder@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 't/t4034/csharp/pre')
-rw-r--r-- | t/t4034/csharp/pre | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/t/t4034/csharp/pre b/t/t4034/csharp/pre new file mode 100644 index 0000000000..9106d63e87 --- /dev/null +++ b/t/t4034/csharp/pre @@ -0,0 +1,18 @@ +Foo():x(0&&1){} +cout<<"Hello World!\n"<<endl; +1 -1e10 0xabcdef 'x' +[a] a->b a.b +!a ~a a++ a-- a*b a&b +a*b a/b a%b +a+b a-b +a<<b a>>b +a<b a<=b a>b a>=b +a==b a!=b +a&b +a^b +a|b +a&&b +a||b +a?b:z +a=b a+=b a-=b a*=b a/=b a%=b a<<=b a>>=b a&=b a^=b a|=b +a,y |