diff options
author | Clifford Wolf <clifford@clifford.at> | 2014-07-20 17:06:57 +0200 |
---|---|---|
committer | Clifford Wolf <clifford@clifford.at> | 2014-07-20 17:06:57 +0200 |
commit | 7a6d578b81581f5217b717dcd601cfba2d4a4d0f (patch) | |
tree | 57ca149049eb73025f5cc4d90432f76276789253 /tests | |
parent | ff28029fdb4fe97dca0e93b175dd2d6411671cb0 (diff) | |
download | yosys-7a6d578b81581f5217b717dcd601cfba2d4a4d0f.tar.gz yosys-7a6d578b81581f5217b717dcd601cfba2d4a4d0f.tar.bz2 yosys-7a6d578b81581f5217b717dcd601cfba2d4a4d0f.zip |
Improved tests/share/generate.py
Diffstat (limited to 'tests')
-rw-r--r-- | tests/share/generate.py | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/tests/share/generate.py b/tests/share/generate.py index 07821b721..fa17080f9 100644 --- a/tests/share/generate.py +++ b/tests/share/generate.py @@ -15,9 +15,15 @@ def redirect_stdout(new_target): finally: sys.stdout = old_target +def maybe_plus_e(expr): + if random.randint(0, 4) == 0: + return "(%s + e)" % expr + else: + return expr + for idx in range(100): with file('temp/uut_%05d.v' % idx, 'w') as f, redirect_stdout(f): - print('module uut_%05d(a, b, c, d, s, y);' % (idx)) + print('module uut_%05d(a, b, c, d, e, s, y);' % (idx)) ac_signed = random.choice(['', ' signed']) bd_signed = random.choice(['', ' signed']) op = random.choice(['+', '-', '*', '/', '%', '<<', '>>', '<<<', '>>>']) @@ -25,9 +31,13 @@ for idx in range(100): print(' input%s [%d:0] b;' % (bd_signed, random.randint(0, 8))) print(' input%s [%d:0] c;' % (ac_signed, random.randint(0, 8))) print(' input%s [%d:0] d;' % (bd_signed, random.randint(0, 8))) + print(' input signed [%d:0] e;' % random.randint(0, 8)) print(' input s;') print(' output [%d:0] y;' % random.randint(0, 8)) - print(' assign y = s ? %s(a %s b) : %s(c %s d);' % (random.choice(['', '$signed', '$unsigned']), op, random.choice(['', '$signed', '$unsigned']), op)) + print(' assign y = (s ? %s(%s %s %s) : %s(%s %s %s))%s;' % + (random.choice(['', '$signed', '$unsigned']), maybe_plus_e('a'), op, maybe_plus_e('b'), + random.choice(['', '$signed', '$unsigned']), maybe_plus_e('c'), op, maybe_plus_e('d'), + ' + e' if random.randint(0, 4) == 0 else '')) print('endmodule') with file('temp/uut_%05d.ys' % idx, 'w') as f, redirect_stdout(f): print('read_verilog temp/uut_%05d.v' % idx) |