X-Git-Url: https://pd.if.org/git/?p=hexagon;a=blobdiff_plain;f=t%2Fastar.c;h=729a7a864f8863391d453f8736a76f8bdd3ae482;hp=cb7f0434711c71dd59947a3fbc8e8d94d59351ee;hb=ce4fd67e5bfd07192ca5cb357798aaa3588512e4;hpb=f4de9d8b5cc2646e133d8c387fa1de5814cfb453 diff --git a/t/astar.c b/t/astar.c index cb7f043..729a7a8 100644 --- a/t/astar.c +++ b/t/astar.c @@ -2,7 +2,7 @@ #include "hexagon.h" -#include "tap.h" +#include "ctap.h" void pcheck(struct HL_astar *p, int x1, int y1, int x2, int y2, int expect) { int from, to, dist; @@ -10,7 +10,7 @@ void pcheck(struct HL_astar *p, int x1, int y1, int x2, int y2, int expect) { from = HL_cantor_xy(x1,y1); to = HL_cantor_xy(x2,y2); - HL_astar_clear(p); +// HL_astar_clear(p); p->start = from; p->goal = to; @@ -37,7 +37,7 @@ int neighbor55(int hex, int dir) { int main(void) { struct HL_astar *p; - plan_tests(16); + plan(16); p = HL_astar_init(0); ok(p != NULL, "allocated astar struct"); @@ -46,16 +46,21 @@ int main(void) { ok(p->closed == NULL, "initial closed list empty"); pcheck(p, 1,1, 1,3, 2); + HL_astar_init(p); pcheck(p, 1,1, 2,1, 1); + HL_astar_init(p); pcheck(p, 1,1, 2,2, 2); + HL_astar_init(p); pcheck(p, 1,1, 3,1, 2); + HL_astar_init(p); pcheck(p, 1,1, 4,7, 8); - HL_astar_clear(p); + //HL_astar_clear(p); + HL_astar_init(p); p->neighbor = neighbor55; pcheck(p,5,4,5,6,3); HL_astar_free(p); - return exit_status(); + return 0; }