Granular test configurations

This commit is contained in:
Andrey Breslav
2012-01-27 18:33:46 +04:00
parent 0da39c8bd6
commit d74b79d9db
673 changed files with 113 additions and 4 deletions
@@ -0,0 +1 @@
x & 2
@@ -0,0 +1 @@
x and 2
@@ -0,0 +1 @@
true && false
@@ -0,0 +1 @@
true && false
@@ -0,0 +1 @@
true || false
@@ -0,0 +1 @@
true || false
@@ -0,0 +1 @@
1 / 2
@@ -0,0 +1 @@
1 / 2
@@ -0,0 +1 @@
1 > 2
@@ -0,0 +1 @@
1 > 2
@@ -0,0 +1 @@
1 >= 2
@@ -0,0 +1 @@
1 >= 2
@@ -0,0 +1 @@
1 < 2
@@ -0,0 +1 @@
1 < 2
@@ -0,0 +1 @@
1 <= 2
@@ -0,0 +1 @@
1 <= 2
@@ -0,0 +1 @@
1 - 2
@@ -0,0 +1 @@
1 - 2
@@ -0,0 +1 @@
1 * 2
@@ -0,0 +1 @@
1 * 2
@@ -0,0 +1 @@
x | 2
@@ -0,0 +1 @@
x or 2
@@ -0,0 +1 @@
1 + 2
@@ -0,0 +1 @@
1 + 2
@@ -0,0 +1 @@
1 % 2
@@ -0,0 +1 @@
1 % 2
@@ -0,0 +1 @@
x << 2
@@ -0,0 +1 @@
x shl 2
@@ -0,0 +1 @@
x >> 2
@@ -0,0 +1 @@
x shr 2
@@ -0,0 +1 @@
x >>> 2
@@ -0,0 +1 @@
x.ushr(2)
@@ -0,0 +1 @@
x ^ 2
@@ -0,0 +1 @@
x xor 2