File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -56,10 +56,11 @@ install:
5656 - make check TESTS=
5757script :
5858 - if [[ "$CROSS_COMPILE" == 1 ]]; then
59+ cd test ;
5960 if [[ "$ARM_ARCH_DIR" == "aarch64-linux-gnu" ]]; then
60- qemu-aarch64 -L /usr/aarch64-linux-gnu/ make check ;
61+ qemu-aarch64 -L /usr/aarch64-linux-gnu/ ./run_tests ;
6162 else
62- qemu-arm -L /usr/arm-linux-gnueabi/ make check ;
63+ qemu-arm -L /usr/arm-linux-gnueabi/ ./run_tests ;
6364 fi
6465 else
6566 make check ;
Original file line number Diff line number Diff line change @@ -308,6 +308,8 @@ AC_SUBST(LDFLAGS)
308308AC_SUBST ( EXT_LIB_PATH )
309309AC_SUBST ( EXT_LIBS )
310310
311+ AC_CONFIG_LINKS ( [ test/run_tests:test/run_tests] )
312+
311313AC_OUTPUT (
312314 libhttpserver.pc
313315 Makefile
Original file line number Diff line number Diff line change 1+ #! /bin/sh
2+
3+ ./basic
4+ ./http_utils
5+ ./threaded
You can’t perform that action at this time.
0 commit comments