Updated testsuite with an expected GCL error in to_poly_share
[maxima.git] / tests / docdraw.mac
blob2047c8607dc34d96163dcd382eba3fc8bcf1d38f
1 wxitornot(fun) ::= buildq([fun:fun, wxfun:concat('wx,fun), docfun:concat(doc,fun), doc_fun:concat(doc_,fun), name:gensym("name_"), x:gensym("args_")],
2   block(
3     docfun(name,[x]) := if wxplot_size # 'wxplot_size then apply('wxfun,x) else
4     ( print("Test:",name), apply('fun,x), if demo=true then (print("Press <enter> to continue."), readline(stdin) )),
5     alias(doc_fun,docfun))) ;
7 map(wxitornot,[draw2d,draw3d,draw,julia,mandelbrot,plot2d,plot,plot3d]);