diff options
author | Martin Pelikan <pelikan@cvs.openbsd.org> | 2014-11-13 17:35:31 +0000 |
---|---|---|
committer | Martin Pelikan <pelikan@cvs.openbsd.org> | 2014-11-13 17:35:31 +0000 |
commit | 7ffe1bbfcc19f0952f7314ffb9adace60a5dc817 (patch) | |
tree | 356ff515df59254ccfc7cc392a70a45441113996 /regress | |
parent | e6f716de1f9d54a24f64338bb07cbe082b929e9a (diff) |
keep queues around when anchors are being loaded
ok mikeb
Diffstat (limited to 'regress')
-rw-r--r-- | regress/sbin/pfctl/Makefile | 4 | ||||
-rw-r--r-- | regress/sbin/pfctl/pf103.in | 3 | ||||
-rw-r--r-- | regress/sbin/pfctl/pf103.include | 1 | ||||
-rw-r--r-- | regress/sbin/pfctl/pf103.ok | 3 |
4 files changed, 9 insertions, 2 deletions
diff --git a/regress/sbin/pfctl/Makefile b/regress/sbin/pfctl/Makefile index d81ef00ed27..b835b513840 100644 --- a/regress/sbin/pfctl/Makefile +++ b/regress/sbin/pfctl/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.221 2014/10/28 19:03:03 benno Exp $ +# $OpenBSD: Makefile,v 1.222 2014/11/13 17:35:30 pelikan Exp $ # TARGETS # pf: feed pfNN.in through pfctl and check whether the output matches pfNN.ok @@ -16,7 +16,7 @@ PFTESTS=1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 PFTESTS+=28 29 30 31 32 34 35 36 38 39 40 41 44 46 47 48 49 50 PFTESTS+=52 53 54 55 56 57 60 61 65 66 67 68 69 70 71 72 73 PFTESTS+=74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 -PFTESTS+=97 98 99 100 101 102 +PFTESTS+=97 98 99 100 101 102 103 PFFAIL=1 2 3 4 5 6 7 8 11 12 13 14 15 16 17 19 20 23 25 27 PFFAIL+=30 37 38 39 40 41 42 43 47 48 49 50 51 52 53 54 PFSIMPLE=1 2 diff --git a/regress/sbin/pfctl/pf103.in b/regress/sbin/pfctl/pf103.in new file mode 100644 index 00000000000..ed97dda8d16 --- /dev/null +++ b/regress/sbin/pfctl/pf103.in @@ -0,0 +1,3 @@ +queue root on lo1000000 bandwidth 1Mb +queue def default parent root bandwidth 1Kb +load anchor x from "pf103.include" diff --git a/regress/sbin/pfctl/pf103.include b/regress/sbin/pfctl/pf103.include new file mode 100644 index 00000000000..85b2b699d61 --- /dev/null +++ b/regress/sbin/pfctl/pf103.include @@ -0,0 +1 @@ +pass set queue def diff --git a/regress/sbin/pfctl/pf103.ok b/regress/sbin/pfctl/pf103.ok new file mode 100644 index 00000000000..fc7773edb69 --- /dev/null +++ b/regress/sbin/pfctl/pf103.ok @@ -0,0 +1,3 @@ +queue root on lo1000000 bandwidth 1M +queue def parent root on lo1000000 bandwidth 1K default +pass all flags S/SA set ( queue def ) |