diff options
| author | Ajax <commial@gmail.com> | 2018-02-13 14:39:53 +0100 |
|---|---|---|
| committer | Ajax <commial@gmail.com> | 2018-02-14 12:14:07 +0100 |
| commit | 0056026fa2f07b49d54236148ad5c528b18b381f (patch) | |
| tree | b6a9376912ab64772197e9a35bab94d30516245a /test/expression/simplifications.py | |
| parent | 775ad64ad56f390e3c2b063794cdbfa1da58febc (diff) | |
| download | focaccia-miasm-0056026fa2f07b49d54236148ad5c528b18b381f.tar.gz focaccia-miasm-0056026fa2f07b49d54236148ad5c528b18b381f.zip | |
Use 3 arguments to highlight the recent #677 patch
Diffstat (limited to 'test/expression/simplifications.py')
| -rw-r--r-- | test/expression/simplifications.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/expression/simplifications.py b/test/expression/simplifications.py index 77c7b78e..8799191b 100644 --- a/test/expression/simplifications.py +++ b/test/expression/simplifications.py @@ -196,9 +196,9 @@ to_test = [(ExprInt(1, 32) - ExprInt(1, 32), ExprInt(0, 32)), (ExprOp('*', a, b, c, ExprInt(0x12, 32))[0:17], ExprOp( '*', a[0:17], b[0:17], c[0:17], ExprInt(0x12, 17))), - (ExprOp('*', a, ExprInt(0x0, 32)), + (ExprOp('*', a, b, ExprInt(0x0, 32)), ExprInt(0x0, 32)), - (ExprOp('&', a, ExprInt(0x0, 32)), + (ExprOp('&', a, b, ExprInt(0x0, 32)), ExprInt(0x0, 32)), (ExprOp('*', a, ExprInt(0xffffffff, 32)), -a), |