Move test code around
This commit is contained in:
parent
27377a7e28
commit
12017db0bf
|
@ -28,6 +28,12 @@
|
||||||
#include "hb-algs.hh"
|
#include "hb-algs.hh"
|
||||||
|
|
||||||
|
|
||||||
|
static char *
|
||||||
|
test_func (int a, char **b)
|
||||||
|
{
|
||||||
|
return b ? b[a] : nullptr;
|
||||||
|
}
|
||||||
|
|
||||||
int
|
int
|
||||||
main (int argc, char **argv)
|
main (int argc, char **argv)
|
||||||
{
|
{
|
||||||
|
@ -46,5 +52,7 @@ main (int argc, char **argv)
|
||||||
q.second = 4;
|
q.second = 4;
|
||||||
assert (i == 4);
|
assert (i == 4);
|
||||||
|
|
||||||
|
hb_invoke (test_func, 0, nullptr);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
|
@ -99,12 +99,6 @@ test_iterable (const Iterable &lst = Null(Iterable))
|
||||||
test_iterator (lst.iter ());
|
test_iterator (lst.iter ());
|
||||||
}
|
}
|
||||||
|
|
||||||
static char *
|
|
||||||
test_func (int a, char **b)
|
|
||||||
{
|
|
||||||
return b[a];
|
|
||||||
}
|
|
||||||
|
|
||||||
int
|
int
|
||||||
main (int argc, char **argv)
|
main (int argc, char **argv)
|
||||||
{
|
{
|
||||||
|
@ -203,8 +197,5 @@ main (int argc, char **argv)
|
||||||
long vl;
|
long vl;
|
||||||
s >> vl;
|
s >> vl;
|
||||||
|
|
||||||
if (0)
|
|
||||||
hb_invoke (test_func, 0, nullptr);
|
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue