File tree Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Expand file tree Collapse file tree 3 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -9,12 +9,14 @@ export LC_ALL=C.UTF-8
99if [[ $HOST = * -mingw32 ]]; then
1010 # Generate all binaries, so that they can be wrapped
1111 CI_EXEC make " $MAKEJOBS " -C src/secp256k1 VERBOSE=1
12+ CI_EXEC make " $MAKEJOBS " -C src minisketch/test.exe VERBOSE=1
1213 CI_EXEC " ${BASE_ROOT_DIR} /ci/test/wrap-wine.sh"
1314fi
1415
1516if [ -n " $QEMU_USER_CMD " ]; then
1617 # Generate all binaries, so that they can be wrapped
1718 CI_EXEC make " $MAKEJOBS " -C src/secp256k1 VERBOSE=1
19+ CI_EXEC make " $MAKEJOBS " -C src minisketch/test VERBOSE=1
1820 CI_EXEC " ${BASE_ROOT_DIR} /ci/test/wrap-qemu.sh"
1921fi
2022
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ noinst_LTLIBRARIES =
2020
2121bin_PROGRAMS =
2222noinst_PROGRAMS =
23+ check_PROGRAMS =
2324TESTS =
2425BENCHMARKS =
2526
Original file line number Diff line number Diff line change @@ -31,7 +31,7 @@ if ENABLE_TESTS
3131if !ENABLE_FUZZ
3232MINISKETCH_TEST = minisketch/test
3333TESTS += $(MINISKETCH_TEST)
34- noinst_PROGRAMS += $(MINISKETCH_TEST)
34+ check_PROGRAMS += $(MINISKETCH_TEST)
3535
3636minisketch_test_SOURCES = $(MINISKETCH_TEST_SOURCES_INT)
3737minisketch_test_CPPFLAGS = $(AM_CPPFLAGS) $(LIBMINISKETCH_CPPFLAGS)
You can’t perform that action at this time.
0 commit comments