head 1.4; access; symbols perseant-exfatfs-base-20250801:1.4 perseant-exfatfs-base-20240630:1.4 perseant-exfatfs:1.4.0.24 perseant-exfatfs-base:1.4 cjep_sun2x:1.4.0.22 cjep_sun2x-base:1.4 cjep_staticlib_x-base1:1.4 cjep_staticlib_x:1.4.0.20 cjep_staticlib_x-base:1.4 phil-wifi-20200421:1.4 phil-wifi-20200411:1.4 phil-wifi-20200406:1.4 pgoyette-compat-merge-20190127:1.4 pgoyette-compat-20190127:1.4 pgoyette-compat-20190118:1.4 pgoyette-compat-1226:1.4 pgoyette-compat-1126:1.4 pgoyette-compat-1020:1.4 pgoyette-compat-0930:1.4 pgoyette-compat-0906:1.4 pgoyette-compat-0728:1.4 pgoyette-compat-0625:1.4 pgoyette-compat-0521:1.4 pgoyette-compat-0502:1.4 pgoyette-compat-0422:1.4 pgoyette-compat-0415:1.4 pgoyette-compat-0407:1.4 pgoyette-compat-0330:1.4 pgoyette-compat-0322:1.4 pgoyette-compat-0315:1.4 pgoyette-compat:1.4.0.18 pgoyette-compat-base:1.4 perseant-stdc-iso10646:1.4.0.16 perseant-stdc-iso10646-base:1.4 prg-localcount2-base3:1.4 prg-localcount2-base2:1.4 prg-localcount2-base1:1.4 prg-localcount2:1.4.0.14 prg-localcount2-base:1.4 pgoyette-localcount-20170426:1.4 bouyer-socketcan-base1:1.4 pgoyette-localcount-20170320:1.4 bouyer-socketcan:1.4.0.12 bouyer-socketcan-base:1.4 pgoyette-localcount-20170107:1.4 pgoyette-localcount-20161104:1.4 localcount-20160914:1.4 pgoyette-localcount-20160806:1.4 pgoyette-localcount-20160726:1.4 pgoyette-localcount:1.4.0.10 pgoyette-localcount-base:1.4 yamt-pagecache-base9:1.4 yamt-pagecache-tag8:1.4 tls-earlyentropy:1.4.0.6 tls-earlyentropy-base:1.4 riastradh-xf86-video-intel-2-7-1-pre-2-21-15:1.4 riastradh-drm2-base3:1.4 agc-symver:1.4.0.8 agc-symver-base:1.4 tls-maxphys-base:1.4 yamt-pagecache-base8:1.4 yamt-pagecache-base7:1.4 yamt-pagecache-base6:1.4 yamt-pagecache-base5:1.4 yamt-pagecache-base4:1.4 yamt-pagecache-base3:1.4 yamt-pagecache-base2:1.4 yamt-pagecache:1.4.0.4 yamt-pagecache-base:1.4 bouyer-quota2-nbase:1.4 bouyer-quota2:1.4.0.2 bouyer-quota2-base:1.4 matt-premerge-20091211:1.1 jym-xensuspend-base:1.1 jym-xensuspend:1.1.0.2 jym-xensuspend-nbase:1.1; locks; strict; comment @# @; 1.4 date 2010.07.10.17.28.36; author jmmv; state dead; branches; next 1.3; 1.3 date 2010.06.12.14.07.18; author pooka; state Exp; branches; next 1.2; 1.2 date 2010.06.04.08.39.40; author jmmv; state Exp; branches; next 1.1; 1.1 date 2009.02.20.21.42.59; author jmmv; state Exp; branches 1.1.2.1; next ; 1.1.2.1 date 2009.02.20.21.42.59; author jym; state dead; branches; next 1.1.2.2; 1.1.2.2 date 2009.05.13.19.19.23; author jym; state Exp; branches; next ; desc @@ 1.4 log @Do not use awk to generate the test program. Use some eval magic to generate the tests on the fly alongside with easier-to-read functions. While doing this, split the big monolithic test program into more granular but cohesive test programs. Phew, this one was tough. And it's horrible to see that many these tests (yes, the tests themselves probably) are broken. @ text @# $NetBSD: t_ipf.awk,v 1.3 2010/06/12 14:07:18 pooka Exp $ # # Copyright (c) 2008 The NetBSD Foundation, Inc. # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions # are met: # 1. Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # 2. Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # # THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS # ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED # TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR # PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS # BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE # POSSIBILITY OF SUCH DAMAGE. # BEGIN { FS = ":"; }; function maketc(name, type, desc, rest, skip) { printf "atf_test_case %s\n", name; printf "%s_head()\n", name; print "{" printf " atf_set \"descr\" \"%s\"\n", desc; printf " atf_set \"use.fs\" \"true\"\n", desc; print "}" printf "%s_body()\n", name; print "{" if (skip) { printf " atf_skip \"test suspected to be broken\"\n\n" } printf " h_%s %s %s", type, name, rest; printf "\n"; print "}" print "" tcs[count++] = $2; } /^tc:/ { desc = ($4 in descs) ? descs[$4] : $4; rest = "\"" $5 "\"" for (i = 6; i <= NF; ++i) rest = rest " \"" $i "\"" maketc($2, $3, desc, rest, 0) next } /^tc_skip:/ { desc = ($4 in descs) ? descs[$4] : $4; rest = "\"" $5 "\"" for (i = 6; i <= NF; ++i) rest = rest " \"" $i "\"" maketc($2, $3, desc, rest, 1) next } /^tc_desc/ { descs[$2] = $3; next } /^tc_list/ { for (i = 0; i < count; i++) { printf(" atf_add_test_case %s\n", tcs[i]); } next } { print } @ 1.3 log @Skip failing tests. When someone figures out where the problem is, these can be reenabled. @ text @d1 1 a1 1 # $NetBSD: t_ipf.awk,v 1.2 2010/06/04 08:39:40 jmmv Exp $ @ 1.2 log @atf-0.9 introduces an use.fs test-case property to allow tests to write to their work directory. The purpose is to be able to know which tests intend to touch the file system and to allow a minor optimization in atf-run. Define use.fs=true for all those tests requiring it. (This highlights that some tests currently require modifying the file system but conceptually they shouldn't be... which leaves room for further improvements/cleanups later :-) @ text @d1 1 a1 1 # $NetBSD: t_ipf.awk,v 1.1 2009/02/20 21:42:59 jmmv Exp $ d32 2 a33 3 /^tc:/ { desc = ($4 in descs) ? descs[$4] : $4; d35 2 a36 2 printf "atf_test_case %s\n", $2; printf "%s_head()\n", $2; d41 1 a41 1 printf "%s_body()\n", $2; d44 4 a47 3 printf " h_%s %s", $3, $2; for (i = 5; i <= NF; ++i) printf " \"%s\"", $i; d54 20 @ 1.1 log @Add the ipf tests developed by Lukasz Strzygowski as part of the atfify GSoC 2008 project. These were originally inside the kernel subdirectory but I think they belong in their own top-level directory because ipf consists of more components than just the kernel-level packet filter. @ text @d1 1 a1 1 # $NetBSD$ d40 1 @ 1.1.2.1 log @file t_ipf.awk was added on branch jym-xensuspend on 2009-05-13 19:19:23 +0000 @ text @d1 71 @ 1.1.2.2 log @Sync with HEAD. Third (and last) commit. See http://mail-index.netbsd.org/source-changes/2009/05/13/msg221222.html @ text @a0 71 # $NetBSD: t_ipf.awk,v 1.1 2009/02/20 21:42:59 jmmv Exp $ # # Copyright (c) 2008 The NetBSD Foundation, Inc. # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions # are met: # 1. Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # 2. Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # # THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS # ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED # TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR # PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS # BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR # CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF # SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS # INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN # CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) # ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE # POSSIBILITY OF SUCH DAMAGE. # BEGIN { FS = ":"; }; /^tc:/ { desc = ($4 in descs) ? descs[$4] : $4; printf "atf_test_case %s\n", $2; printf "%s_head()\n", $2; print "{" printf " atf_set \"descr\" \"%s\"\n", desc; print "}" printf "%s_body()\n", $2; print "{" printf " h_%s %s", $3, $2; for (i = 5; i <= NF; ++i) printf " \"%s\"", $i; printf "\n"; print "}" print "" tcs[count++] = $2; next } /^tc_desc/ { descs[$2] = $3; next } /^tc_list/ { for (i = 0; i < count; i++) { printf(" atf_add_test_case %s\n", tcs[i]); } next } { print } @