aboutsummaryrefslogtreecommitdiffstats
path: root/3rdparty/python-console/test_console.cpp
diff options
context:
space:
mode:
authorSean Cross <sean@xobs.io>2019-08-15 16:32:38 +0800
committerSean Cross <sean@xobs.io>2019-08-15 16:32:38 +0800
commitace5ad09f860b3e9beb1fe085acf6ea357c53512 (patch)
tree152bf56cbbef2e78e044401d3f5cee76006b597e /3rdparty/python-console/test_console.cpp
parent8b63de9e552ff2b991e047723ea715b4b7d99575 (diff)
parentac0d0fc241336486e66a353e7f76f18d55e2865e (diff)
downloadnextpnr-ace5ad09f860b3e9beb1fe085acf6ea357c53512.tar.gz
nextpnr-ace5ad09f860b3e9beb1fe085acf6ea357c53512.tar.bz2
nextpnr-ace5ad09f860b3e9beb1fe085acf6ea357c53512.zip
Merge branch 'fix-windows-static' of github.com:xobs/nextpnr into fix-windows-static
Signed-off-by: Sean Cross <sean@xobs.io>
Diffstat (limited to '3rdparty/python-console/test_console.cpp')
0 files changed, 0 insertions, 0 deletions
ght: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */
#! /bin/sh

. ../../testenv.sh

for t in repro repro2 repro2_1 repro3 repro4; do
    synth $t.vhdl -e $t > syn_$t.vhdl
    analyze syn_$t.vhdl
    clean
done

for t in repro3_1; do
    analyze $t.vhdl tb_$t.vhdl
    elab_simulate tb_$t
    clean

    synth $t.vhdl -e $t > syn_$t.vhdl
    analyze syn_$t.vhdl tb_$t.vhdl
    elab_simulate tb_$t --ieee-asserts=disable-at-0
    clean
done

echo "Test successful"