diff options
author | tb <> | 2023-06-22 19:23:27 +0000 |
---|---|---|
committer | tb <> | 2023-06-22 19:23:27 +0000 |
commit | 7b5ff0a69f1d3054648da799ac4ffdc9809f9526 (patch) | |
tree | c2b20a636f86ccbc7f86208342a07f7fa417fec4 | |
parent | 9f41a64eb230fd1c343999400564e3e14747c3e9 (diff) | |
download | openbsd-7b5ff0a69f1d3054648da799ac4ffdc9809f9526.tar.gz openbsd-7b5ff0a69f1d3054648da799ac4ffdc9809f9526.tar.bz2 openbsd-7b5ff0a69f1d3054648da799ac4ffdc9809f9526.zip |
symbols: Tweak this test so it works with -j N
-rw-r--r-- | src/regress/lib/libcrypto/symbols/Makefile | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/src/regress/lib/libcrypto/symbols/Makefile b/src/regress/lib/libcrypto/symbols/Makefile index b37fb87e7c..7b703bbf9e 100644 --- a/src/regress/lib/libcrypto/symbols/Makefile +++ b/src/regress/lib/libcrypto/symbols/Makefile | |||
@@ -1,10 +1,8 @@ | |||
1 | # $OpenBSD: Makefile,v 1.3 2022/09/21 15:24:45 tb Exp $ | 1 | # $OpenBSD: Makefile,v 1.4 2023/06/22 19:23:27 tb Exp $ |
2 | 2 | ||
3 | TESTS = \ | 3 | TESTS = \ |
4 | symbols | 4 | symbols |
5 | 5 | ||
6 | PROG = ${TESTS} | ||
7 | |||
8 | REGRESS_TARGETS= all_tests | 6 | REGRESS_TARGETS= all_tests |
9 | 7 | ||
10 | .include <bsd.own.mk> # for BSDSRCDIR | 8 | .include <bsd.own.mk> # for BSDSRCDIR |
@@ -29,10 +27,10 @@ CFLAGS+= -Wno-deprecated-declarations | |||
29 | CLEANFILES+= include_headers.c symbols.c symbols.c.tmp | 27 | CLEANFILES+= include_headers.c symbols.c symbols.c.tmp |
30 | 28 | ||
31 | symbols.c: symbols.awk ../../../../lib/libcrypto/Symbols.list | 29 | symbols.c: symbols.awk ../../../../lib/libcrypto/Symbols.list |
32 | make -f ${.CURDIR}/Makefile include_headers.c | 30 | make -f ${.CURDIR}/Makefile include_headers.c; \ |
33 | awk -f ${.CURDIR}/symbols.awk \ | 31 | awk -f ${.CURDIR}/symbols.awk \ |
34 | < ${BSDSRCDIR}/lib/libcrypto/Symbols.list > symbols.c.tmp | 32 | < ${BSDSRCDIR}/lib/libcrypto/Symbols.list > $@.tmp; \ |
35 | mv symbols.c.tmp symbols.c | 33 | mv -f $@.tmp $@ |
36 | 34 | ||
37 | all_tests: ${TESTS} | 35 | all_tests: ${TESTS} |
38 | @for test in $>; do \ | 36 | @for test in $>; do \ |