diff options
author | otto <> | 2023-05-09 19:07:37 +0000 |
---|---|---|
committer | otto <> | 2023-05-09 19:07:37 +0000 |
commit | 4172ef82dd12eeda3308828629cdfb83b39b96cf (patch) | |
tree | 6cb62b6b8f31d3b4b254ddad36708e3856d837ef /src/regress/lib/libc/malloc/malloc_general | |
parent | ceba2a8eb77eceed7e4f2c5518b11b3405f75a3c (diff) | |
download | openbsd-4172ef82dd12eeda3308828629cdfb83b39b96cf.tar.gz openbsd-4172ef82dd12eeda3308828629cdfb83b39b96cf.tar.bz2 openbsd-4172ef82dd12eeda3308828629cdfb83b39b96cf.zip |
Make malloc tests that set flags more robust against the user also
having flags set.
Diffstat (limited to 'src/regress/lib/libc/malloc/malloc_general')
-rw-r--r-- | src/regress/lib/libc/malloc/malloc_general/Makefile | 30 |
1 files changed, 17 insertions, 13 deletions
diff --git a/src/regress/lib/libc/malloc/malloc_general/Makefile b/src/regress/lib/libc/malloc/malloc_general/Makefile index b06609f6fa..367b33b9c5 100644 --- a/src/regress/lib/libc/malloc/malloc_general/Makefile +++ b/src/regress/lib/libc/malloc/malloc_general/Makefile | |||
@@ -1,39 +1,43 @@ | |||
1 | # $OpenBSD: Makefile,v 1.6 2022/03/30 05:22:31 anton Exp $ | 1 | # $OpenBSD: Makefile,v 1.7 2023/05/09 19:07:37 otto Exp $ |
2 | 2 | ||
3 | REGRESS_TARGETS= t1 t2 t3 t4 t5 t6 t7 t8 t9 t10 t11 | 3 | REGRESS_TARGETS= t1 t2 t3 t4 t5 t6 t7 t8 t9 t10 t11 t12 |
4 | PROG= malloc_general | 4 | PROG= malloc_general |
5 | 5 | ||
6 | .include <bsd.regress.mk> | 6 | .include <bsd.regress.mk> |
7 | 7 | ||
8 | t1: malloc_general | 8 | t1: malloc_general |
9 | MALLOC_OPTIONS=cfgju ${.OBJDIR}/malloc_general | 9 | MALLOC_OPTIONS=su ${.OBJDIR}/malloc_general |
10 | 10 | ||
11 | t2: malloc_general | 11 | t2: malloc_general |
12 | MALLOC_OPTIONS=cfgjuC ${.OBJDIR}/malloc_general | 12 | MALLOC_OPTIONS=suC ${.OBJDIR}/malloc_general |
13 | 13 | ||
14 | t3: malloc_general | 14 | t3: malloc_general |
15 | MALLOC_OPTIONS=cfgjuJ ${.OBJDIR}/malloc_general | 15 | MALLOC_OPTIONS=suJ ${.OBJDIR}/malloc_general |
16 | 16 | ||
17 | t4: malloc_general | 17 | t4: malloc_general |
18 | MALLOC_OPTIONS=cfgjuF ${.OBJDIR}/malloc_general | 18 | MALLOC_OPTIONS=suF ${.OBJDIR}/malloc_general |
19 | 19 | ||
20 | t5: malloc_general | 20 | t5: malloc_general |
21 | MALLOC_OPTIONS=cfgjuG ${.OBJDIR}/malloc_general | 21 | MALLOC_OPTIONS=suG ${.OBJDIR}/malloc_general |
22 | 22 | ||
23 | t6: malloc_general | 23 | t6: malloc_general |
24 | MALLOC_OPTIONS=cfgjuS ${.OBJDIR}/malloc_general | 24 | MALLOC_OPTIONS=suS ${.OBJDIR}/malloc_general |
25 | 25 | ||
26 | t7: malloc_general | 26 | t7: malloc_general |
27 | MALLOC_OPTIONS=cfgjuFGJ ${.OBJDIR}/malloc_general | 27 | MALLOC_OPTIONS=suFGJ ${.OBJDIR}/malloc_general |
28 | 28 | ||
29 | t8: malloc_general | 29 | t8: malloc_general |
30 | MALLOC_OPTIONS=cfgjuCJ ${.OBJDIR}/malloc_general | 30 | MALLOC_OPTIONS=suCJ ${.OBJDIR}/malloc_general |
31 | 31 | ||
32 | t9: malloc_general | 32 | t9: malloc_general |
33 | MALLOC_OPTIONS=cfgjuCJJ ${.OBJDIR}/malloc_general | 33 | MALLOC_OPTIONS=suCJJ ${.OBJDIR}/malloc_general |
34 | 34 | ||
35 | t10: malloc_general | 35 | t10: malloc_general |
36 | MALLOC_OPTIONS=cfgjuJS ${.OBJDIR}/malloc_general | 36 | MALLOC_OPTIONS=suJS ${.OBJDIR}/malloc_general |
37 | 37 | ||
38 | t11: malloc_general | 38 | t11: malloc_general |
39 | MALLOC_OPTIONS=cfgjuFGJJ ${.OBJDIR}/malloc_general | 39 | MALLOC_OPTIONS=suFGJJ ${.OBJDIR}/malloc_general |
40 | |||
41 | t12: malloc_general | ||
42 | MALLOC_OPTIONS=suFCJJ ${.OBJDIR}/malloc_general | ||
43 | |||