diff options
| author | Pierre Lalet <pierre@droids-corp.org> | 2019-04-15 09:14:14 +0200 |
|---|---|---|
| committer | William Bruneau <william.bruneau@epfedu.fr> | 2019-04-16 12:34:09 +0200 |
| commit | fdedf65cbc27db90aded1b70b7b9569f3cbe473e (patch) | |
| tree | 1778207005aec7ad28f07b2285f5c4fc9e2d09d5 | |
| parent | cff804399287b7d86b9b8a4cbc41ebbb4a94d24f (diff) | |
| download | focaccia-miasm-fdedf65cbc27db90aded1b70b7b9569f3cbe473e.tar.gz focaccia-miasm-fdedf65cbc27db90aded1b70b7b9569f3cbe473e.zip | |
Update test/jitter/jitcore.py
Co-Authored-By: WilliamBruneau <william.bruneau@epfedu.fr>
| -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 5618d172..c45fa13c 100644 --- a/test/jitter/jitcore.py +++ b/test/jitter/jitcore.py @@ -21,7 +21,7 @@ assert jitter.cpu.RAX == 1 try: jitter.cpu.RAX = 0x1ffffffffffffffff -except TypeError as te: +except TypeError: pass else: raise Exception("Should see that 0x1ffffffffffffffff is too big for RAX") |