X-Git-Url: http://git.megacz.com/?p=sbp.git;a=blobdiff_plain;f=src%2Fedu%2Fberkeley%2Fsbp%2Fmisc%2FRegressionTests.java;h=a88c8a4c0113beba388d7117032e88b8e171eb8a;hp=5a86bf1c9f6e9f51f76630c90ebbed3adecd7b63;hb=4c5cadfb5604449d04e2cdaaae7b9a61795c9044;hpb=107df9a4aee6ba593b64d3bbe8b2efac84596cad diff --git a/src/edu/berkeley/sbp/misc/RegressionTests.java b/src/edu/berkeley/sbp/misc/RegressionTests.java index 5a86bf1..a88c8a4 100644 --- a/src/edu/berkeley/sbp/misc/RegressionTests.java +++ b/src/edu/berkeley/sbp/misc/RegressionTests.java @@ -8,20 +8,6 @@ import edu.berkeley.sbp.tib.*; public class RegressionTests { public static boolean yes = false; - public static class MyWalker extends ReflectiveWalker { - public String top(Object[] o) { return "top("+join(o)+")"; } - public String str(String[] s) { String ret = ""; for(String st : s) ret += st; return ret; } - public String join(Object[] o) { String ret = ""; for(Object st : o) ret += st; return ret; } - public String whilex(Object s, Object y) { return "while("+s+") " + y; } - public String seq(Object[] statements) { - String ret = ""; - for(Object s : statements) ret += s + ";\n"; - return ret; - } - /* - public String bl(String s) { return "{" + s + "}"; } - */ - }; public static void main(String[] s) throws Exception { try { @@ -123,23 +109,23 @@ public class RegressionTests { } public static class TestCaseBuilder extends MetaGrammar { - public TestCase[] ts(Object o1, TestCase[] ts, Object o2) { return ts; } - public TestCase[] ts(TestCase[] ts) { return ts; } - public TestCase testcase(String input, String[] output, Union grammar) throws IOException { - return new TestCase(input, output, grammar, false); } - public TestCase testcase(String input, Union grammar) throws IOException { - return new TestCase(input, new String[0], grammar, false); } - public TestCase tibcase(String input, String[] output, Union grammar) throws IOException { - return new TestCase(input, output, grammar, true); } - public TestCase tibcase(String input, Union grammar) throws IOException { - return new TestCase(input, new String[0], grammar, true); } - public MetaGrammar grammar(Object[] o) { return this; } - public Object walk(String tag, Object[] args) { - if ("grammar".equals(tag)) { - //System.out.println("\n" + this + "\n"); - return done("s"); + public Object walk(Tree tree) { + try { + if ("grammar".equals(tree.head())) { walkChildren(tree); return done("s"); } + else if ("output".equals(tree.head())) return string(tree.children()); + else if ("input".equals(tree.head())) return string(tree.children()); + else if ("tibcase".equals(tree.head()) || "testcase".equals(tree.head())) { + String input = string(tree.child(0)); + String[] output = tree.numChildren()>2 ? ((String[])walk(tree, 1)) : new String[0]; + boolean tib = "tibcase".equals(tree.head()); + MetaGrammar gram = tib ? new Tib.Grammar() : new MetaGrammar(); + Union grammar = (Union)((MetaGrammar)(gram.walk(tree, tree.numChildren()-1))).done("s"); + return new TestCase(input, output, grammar, tib); + } else if ("ts".equals(tree.head())) return walk(tree, 0); + else return super.walk(tree); + } catch (Exception e) { + throw new Error(e); } - else return super.walk(tag, args); } }