From 4862dd244d348fbd2e1060d0debe2dca3e1b6c0b Mon Sep 17 00:00:00 2001 From: Dan Hirsch <thequux@upstandinghackers.com> Date: Sat, 9 Mar 2013 21:59:58 -0800 Subject: [PATCH] Updated roadmap, added sample input to RVM testcase assembler. --- docs/milestone2.dot | 6 +++++- docs/rvm_sample_input.rvm | 17 +++++++++++++++++ 2 files changed, 22 insertions(+), 1 deletion(-) create mode 100644 docs/rvm_sample_input.rvm diff --git a/docs/milestone2.dot b/docs/milestone2.dot index 9ae28b05..0074d8df 100644 --- a/docs/milestone2.dot +++ b/docs/milestone2.dot @@ -2,8 +2,9 @@ digraph { graph [rankdir=LR]; subgraph complete { node [color="gray",fontcolor="gray"]; - regex_gen; glue; + regex_svm; + regex_rvm; } /* The end result of the milestone, along with the subtasks listed */ milestone2 [color="green",style="filled"]; @@ -18,6 +19,9 @@ tests -> milestone2; regex_gen -> regex; regex_driver -> regex; +regex_svm -> regex_driver; +regex_rvm -> regex_driver; +regex_svm_actions -> regex_driver; llk_driver -> llk; llk_gen -> llk; diff --git a/docs/rvm_sample_input.rvm b/docs/rvm_sample_input.rvm new file mode 100644 index 00000000..07fdf60f --- /dev/null +++ b/docs/rvm_sample_input.rvm @@ -0,0 +1,17 @@ ++C +int foo() { + return 42; +} + ++SVM /svm/simple +@input "" +@output "()" +0 ACCEPT + ++SVM /svm/string +@input "quux" +@outut "(<5555>)" +1 MARK +2 CAPTURE +2 ACCEPT + -- GitLab