diff options
| author | Damien George | 2014-10-19 19:00:51 +0100 |
|---|---|---|
| committer | Damien George | 2014-10-19 19:00:51 +0100 |
| commit | 21ca2d76a2c10935826007daec699aba97679240 (patch) | |
| tree | 94b9012c73593c15151a0f3d1fa50d314c0a53c1 /tests/micropython/viper_binop_multi_comp.py.exp | |
| parent | 9c9db3a7a1c21e575f32c964d7e6260a5a158cdb (diff) | |
py: Partially fix viper multi-comparison; add test for it.
Diffstat (limited to 'tests/micropython/viper_binop_multi_comp.py.exp')
| -rw-r--r-- | tests/micropython/viper_binop_multi_comp.py.exp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/micropython/viper_binop_multi_comp.py.exp b/tests/micropython/viper_binop_multi_comp.py.exp new file mode 100644 index 000000000..e5e97874e --- /dev/null +++ b/tests/micropython/viper_binop_multi_comp.py.exp @@ -0,0 +1,9 @@ +1 == 1 +2 > 1 +2 >= 1 +2 != 1 +1 < 2 +2 > -1 +2 >= -1 +2 != -1 +-2 <= 1 |
