1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271
|
//
// File: InheritTest.java
// Copyright: (c) 2001 The Regents of the University of California
// Revision: @(#) $Revision: 4434 $
// Date: $Date: 2005-03-17 09:05:29 -0800 (Thu, 17 Mar 2005) $
// Description: inherit regression test case for Java calling other languages
//
/**
* The following class runs the inherit regression test cases for Java.
*/
public class InheritTest {
private final static String[] s_results = {
"FAIL",
"XFAIL",
"synch.ResultType.PASS",
"Xsynch.ResultType.PASS",
"UNSUPPORTED"
};
private static int s_part = 0;
private static int s_result = synch.ResultType.PASS;
private static boolean scomp(String a, String b) {
if(a.compareTo(b) == 0)
return true;
else
return false;
}
private static synch.RegOut tracker;
/**
* Check the results of the test case.
*/
//Comments should really be passed in here.
private static void startTest(String test) {
tracker.startPart(++s_part);
if(test != null)
tracker.writeComment(test);
}
private static void check(int expected, boolean pass, String test ) {
if (test != null)
tracker.writeComment(test);
if(expected == synch.ResultType.PASS)
if(pass)
tracker.endPart(s_part, synch.ResultType.PASS);
else
tracker.endPart(s_part, synch.ResultType.FAIL);
else if (expected == synch.ResultType.XFAIL)
if(pass)
tracker.endPart(s_part, synch.ResultType.XPASS);
else
tracker.endPart(s_part, synch.ResultType.XFAIL);
else
tracker.endPart(s_part, synch.ResultType.FAIL);
}
/**
* The main test driver takes no command-line arguments and runs the
* regression tests.
*/
public static void main(String args[]) {
try {
/*
* Begin the test
*/
tracker = new synch.RegOut();
tracker.setExpectations(-1);
s_part = 0;
s_result = synch.ResultType.PASS;
/*
* Test Class C
*/
if (true) {
Inherit.C c = new Inherit.C();
startTest(null);
check(synch.ResultType.PASS, scomp(c.c(),"C.c"), "C.c");
}
/*
* Test Class D
*/
if (true) {
Inherit.D d = new Inherit.D();
startTest(null);
check(synch.ResultType.PASS,scomp(d.a(),"D.a"), "D.a");
startTest(null);
check(synch.ResultType.PASS,scomp(d.d(),"D.d"), "D.d");
Inherit.A a = d;
startTest(null);
check(synch.ResultType.PASS,scomp(a.a(),"D.a"), "D.a");
}
/*
* Test Class E
*/
if (true) {
Inherit.E e = new Inherit.E();
startTest(null);
check(synch.ResultType.PASS,scomp(e.c(),"C.c"), "C.c");
startTest(null);
check(synch.ResultType.PASS,scomp(e.e(),"E.e"), "E.e");
Inherit.C c = e;
startTest(null);
check(synch.ResultType.PASS,scomp(c.c(),"C.c"), "C.c");
}
/*
* Test Class E2
*/
if (true) {
Inherit.E2 e2 = new Inherit.E2();
startTest(null);
check(synch.ResultType.PASS,scomp(e2.c(),"E2.c"), "E2.c");
startTest(null);
check(synch.ResultType.PASS,scomp(e2.e(),"E2.e"), "E2.e");
Inherit.C c = e2;
startTest(null);
check(synch.ResultType.PASS,scomp(c.c(),"E2.c"), "E2.c");
}
/*
* Test Class F
*/
if (true) {
Inherit.F f = new Inherit.F();
startTest(null);
check(synch.ResultType.PASS,scomp(f.a(),"F.a"), "F.a");
startTest(null);
check(synch.ResultType.PASS,scomp(f.b(),"F.b"), "F.b");
startTest(null);
check(synch.ResultType.PASS,scomp(f.c(),"C.c"), "C.c");
startTest(null);
check(synch.ResultType.PASS,scomp(f.f(),"F.f"), "F.f");
Inherit.A a = f;
startTest(null);
check(synch.ResultType.PASS,scomp(a.a(),"F.a"), "F.a");
Inherit.B b = f;
startTest(null);
check(synch.ResultType.PASS,scomp(b.b(),"F.b"), "F.b");
Inherit.C c = f;
startTest(null);
check(synch.ResultType.PASS,scomp(c.c(),"C.c"), "C.c");
}
/*
* Test Class F2
*/
if (true) {
Inherit.F2 f2 = new Inherit.F2();
startTest(null);
check(synch.ResultType.PASS,scomp(f2.a(),"F2.a"), "F2.a");
startTest(null);
check(synch.ResultType.PASS,scomp(f2.b(),"F2.b"), "F2.b");
startTest(null);
check(synch.ResultType.PASS,scomp(f2.c(),"F2.c"), "F2.c");
startTest(null);
check(synch.ResultType.PASS,scomp(f2.f(),"F2.f"), "F2.f");
Inherit.A a = f2;
startTest(null);
check(synch.ResultType.PASS,scomp(a.a(),"F2.a"), "F2.a");
Inherit.B b = f2;
startTest(null);
check(synch.ResultType.PASS,scomp(b.b(),"F2.b"), "F2.b");
Inherit.C c = f2;
startTest(null);
check(synch.ResultType.PASS,scomp(c.c(),"F2.c"), "F2.c");
}
/*
* Test Class G
*/
if (true) {
Inherit.G g = new Inherit.G();
startTest(null);
check(synch.ResultType.PASS,scomp(g.a(),"D.a"), "D.a");
startTest(null);
check(synch.ResultType.PASS,scomp(g.d(),"D.d"), "D.d");
startTest(null);
check(synch.ResultType.PASS,scomp(g.g(),"G.g"), "G.g");
Inherit.A a = g;
startTest(null);
check(synch.ResultType.PASS,scomp(a.a(),"D.a"), "D.a");
Inherit.D d = g;
startTest(null);
check(synch.ResultType.PASS,scomp(d.a(),"D.a"), "D.a");
startTest(null);
check(synch.ResultType.PASS,scomp(d.d(),"D.d"), "D.d");
}
/*
* Test Class G
*/
if (true) {
Inherit.G2 g2 = new Inherit.G2();
startTest(null);
check(synch.ResultType.PASS,scomp(g2.a(),"G2.a"), "G2.a");
startTest(null);
check(synch.ResultType.PASS,scomp(g2.d(),"G2.d"), "G2.d");
startTest(null);
check(synch.ResultType.PASS,scomp(g2.g(),"G2.g"), "G2.g");
Inherit.A a = g2;
startTest(null);
check(synch.ResultType.PASS,scomp(a.a(),"G2.a"), "G2.a");
Inherit.D d = g2;
startTest(null);
check(synch.ResultType.PASS,scomp(d.a(),"G2.a"), "G2.a");
startTest(null);
check(synch.ResultType.PASS,scomp(d.d(),"G2.d"), "G2.d");
}
/*
* Test Class I
*/
if (true) {
Inherit.I i = new Inherit.I();
startTest(null);
check(synch.ResultType.PASS,scomp(i.a(),"I.a"), "I.a");
startTest(null);
check(synch.ResultType.PASS,scomp(i.h(),"I.h"), "I.h");
Inherit.A a = i;
startTest(null);
check(synch.ResultType.PASS,scomp(a.a(),"I.a"), "I.a");
Inherit.H h = i;
startTest(null);
check(synch.ResultType.PASS,scomp(h.a(),"I.a"), "I.a");
startTest(null);
check(synch.ResultType.PASS,scomp(h.h(),"I.h"), "I.h");
}
/*
* Test Class J
*/
if (true) {
Inherit.J j = new Inherit.J();
startTest(null);
check(synch.ResultType.PASS,scomp(j.a(),"J.a"), "J.a");
startTest(null);
check(synch.ResultType.PASS,scomp(j.b(),"J.b"), "J.b");
startTest(null);
check(synch.ResultType.PASS,scomp(j.j(),"J.j"), "J.j");
startTest(null);
check(synch.ResultType.PASS,scomp(j.c(),"J.E2.c"), "J.E2.c");
startTest(null);
check(synch.ResultType.PASS,scomp(j.e(),"J.E2.e"), "J.E2.e");
}
/*
* Output final test results
*/
tracker.close();
//System.out.println("TEST_RESULT " + s_results[s_result]);
Runtime.getRuntime().exit(0); /* workaround for Linux JVM 1.3.1 bug */
/*
* Catch any unexpected exceptions and return a test failure
*/
} catch (Throwable ex) {
tracker.close();
//System.out.println("TEST_RESULT FAIL");
System.out.println(ex.toString());
System.exit(1);
}
}
}
|