diff options
| author | Pierre Lalet <pierre@droids-corp.org> | 2019-04-15 09:14:22 +0200 |
|---|---|---|
| committer | William Bruneau <william.bruneau@epfedu.fr> | 2019-04-16 12:34:09 +0200 |
| commit | 1b6ef950e78fcb90dc4af1c70b84dff8655790de (patch) | |
| tree | f6090f558e2c0b092bce32102371cf1509993c44 /test | |
| parent | fdedf65cbc27db90aded1b70b7b9569f3cbe473e (diff) | |
| download | focaccia-miasm-1b6ef950e78fcb90dc4af1c70b84dff8655790de.tar.gz focaccia-miasm-1b6ef950e78fcb90dc4af1c70b84dff8655790de.zip | |
Update test/jitter/jitcore.py
Co-Authored-By: WilliamBruneau <william.bruneau@epfedu.fr>
Diffstat (limited to 'test')
| -rw-r--r-- | test/jitter/jitcore.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/jitter/jitcore.py b/test/jitter/jitcore.py index c45fa13c..f75a8b98 100644 --- a/test/jitter/jitcore.py +++ b/test/jitter/jitcore.py @@ -41,7 +41,7 @@ assert jitter.cpu.EAX == 1 try: jitter.cpu.EAX = -0x1ffffffff -except TypeError as te: +except TypeError: pass else: raise Exception("Should see that -0x1ffffffff is too big for EAX") |