buil.plat: enable strict undefined behavior in Jinja2.
authorwhitequark <whitequark@whitequark.org>
Tue, 14 Apr 2020 06:17:16 +0000 (06:17 +0000)
committerwhitequark <whitequark@whitequark.org>
Tue, 14 Apr 2020 06:17:16 +0000 (06:17 +0000)
commit3346f2c505d2ff83af34fafa55a878a15118ae36
treefe1e12c95ba48037f6819f08c52574d6aeba4d06
parentee73d39b8d6817f98b1aa9d29e68d0012e37bcc9
buil.plat: enable strict undefined behavior in Jinja2.

By default, if an operation produces an undefined value (a Jinja2
concept that corresponds to Python's KeyError, AttributeError, etc)
then this value may be printed in a template, which is a nop. This
behavior can hide bugs.

This commit changes the Jinja2 behavior to raise an error instead of
producing an undefined value in all cases. (We produce undefined
values deliberately in a few places. Those are unaffected; it is OK
to use several kinds of undefined values in one Jinja2 environment.)

Fixes #337.
nmigen/build/plat.py
nmigen/vendor/lattice_ice40.py