unix now has an autoconf based make system. currently the new make system only makes parser related files, back end stuff to be added soon. mac and windows makesystems will be checked in next. parser.cpp has been factored into token.*, lexer.*, and parser.* utilities.cpp has been factored into formatter.*, exception.*, mem.*, strings.*,ds.h, stlcfg.h, and algo.h git-svn-id: svn://10.0.0.236/trunk@86568 18797224-902f-48f8-a5cc-f745e15eee43
12 lines
235 B
JavaScript
12 lines
235 B
JavaScript
count = 0;
|
|
|
|
function verify(a, b)
|
|
{
|
|
if ((a == b) || ((b != b) && (a == undefined)) )
|
|
print("Test " + count + " succeeded");
|
|
else
|
|
print("Test " + count + " failed, expected " + b + ", got " + a);
|
|
count++;
|
|
}
|
|
|