diff options
author | Eddie Hung <eddie@fpgeh.com> | 2020-04-09 09:45:20 -0700 |
---|---|---|
committer | Eddie Hung <eddie@fpgeh.com> | 2020-04-09 09:45:20 -0700 |
commit | f11dd6e20838bce1b1fa8e085570d2126484d10f (patch) | |
tree | d09422f93752b15014d53ce79835816d24b2e505 /tests/various/plugin.cc | |
parent | 60ffc21e648693ca13000f83a72dff351de4c998 (diff) | |
download | yosys-f11dd6e20838bce1b1fa8e085570d2126484d10f.tar.gz yosys-f11dd6e20838bce1b1fa8e085570d2126484d10f.tar.bz2 yosys-f11dd6e20838bce1b1fa8e085570d2126484d10f.zip |
tests: add a quick plugin test
Diffstat (limited to 'tests/various/plugin.cc')
-rw-r--r-- | tests/various/plugin.cc | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/various/plugin.cc b/tests/various/plugin.cc new file mode 100644 index 000000000..be305fbda --- /dev/null +++ b/tests/various/plugin.cc @@ -0,0 +1,15 @@ +#include "kernel/rtlil.h" + +YOSYS_NAMESPACE_BEGIN + +struct TestPass : public Pass { + TestPass() : Pass("test", "test") { } + void execute(std::vector<std::string> args, RTLIL::Design *design) YS_OVERRIDE + { + size_t argidx = 1; + extra_args(args, argidx, design); + log("Plugin test passed!\n"); + } +} TestPass; + +YOSYS_NAMESPACE_END |