/freebsd/contrib/one-true-awk/testdir/ |
H A D | T.int-expr | 12 printf("%s ~ /%s/ -> should be %d, is %d\n", $1, pattern, $2, check) 82 ac ~ /ab{0}c/ -> should be 1, is 1 83 abc ~ /ab{0}c/ -> should be 0, is 0 84 ac ~ /a(b{0})c/ -> should be 1, is 1 85 abc ~ /a(b{0})c/ -> should be 0, is 0 86 ac ~ /ab{0}*c/ -> should be 1, is 1 87 abc ~ /ab{0}*c/ -> should be 0, is 0 88 ac ~ /a(b{0})*c/ -> should be 1, is 1 89 abc ~ /a(b{0})*c/ -> should be 0, is 0 90 ac ~ /ab{0,}c/ -> should be 1, is 1 [all …]
|
/freebsd/contrib/libarchive/libarchive/test/ |
H A D | test_archive_read_set_options.c | 28 #define should(__a, __code, __opts) \ 45 should(a, ARCHIVE_OK, NULL); in test() 46 should(a, ARCHIVE_OK, ""); in test() 49 should(a, ARCHIVE_FAILED, "fubar:snafu"); in test() 52 should(a, ARCHIVE_FAILED, "fubar:snafu=betcha"); in test() 57 should(a, ARCHIVE_FAILED, "snafu"); in test() 60 should(a, ARCHIVE_FAILED, "snafu=betcha"); in test() 65 should(a, known_option_rv, "iso9660:joliet"); in test() 70 should(a, known_option_rv, "iso9660:joliet"); in test() 75 should( in test() 29 #define should( global() macro [all...] |
H A D | test_archive_write_set_options.c | 28 #define should(__a, __code, __opts) \ 45 should(a, ARCHIVE_OK, NULL); in test() 46 should(a, ARCHIVE_OK, ""); in test() 49 should(a, ARCHIVE_FAILED, "fubar:snafu"); in test() 52 should(a, ARCHIVE_FAILED, "fubar:snafu=betcha"); in test() 57 should(a, ARCHIVE_FAILED, "snafu"); in test() 60 should(a, ARCHIVE_FAILED, "snafu=betcha"); in test() 65 should(a, known_option_rv, "iso9660:joliet"); in test() 70 should(a, known_option_rv, "iso9660:joliet"); in test() 75 should( in test() 29 #define should( global() macro [all...] |
H A D | test_archive_read_set_format_option.c | 28 #define should(__a, __code, __m, __o, __v) \ 42 should(a, ARCHIVE_OK, NULL, NULL, NULL); in test() 43 should(a, ARCHIVE_OK, "", "", ""); in test() 46 should(a, ARCHIVE_FAILED, "fubar", "snafu", NULL); in test() 47 should(a, ARCHIVE_FAILED, "fubar", "snafu", "betcha"); in test() 50 should(a, ARCHIVE_FAILED, NULL, "snafu", NULL); in test() 51 should(a, ARCHIVE_FAILED, NULL, "snafu", "betcha"); in test() 54 should(a, known_option_rv, "iso9660", "joliet", NULL); in test() 55 should(a, known_option_rv, "iso9660", "joliet", NULL); in test() 56 should( in test() 29 #define should( global() macro [all...] |
H A D | test_archive_write_set_format_option.c | 28 #define should(__a, __code, __m, __o, __v) \ 42 should(a, ARCHIVE_OK, NULL, NULL, NULL); in test() 43 should(a, ARCHIVE_OK, "", "", ""); in test() 46 should(a, ARCHIVE_FAILED, "fubar", "snafu", NULL); in test() 47 should(a, ARCHIVE_FAILED, "fubar", "snafu", "betcha"); in test() 50 should(a, ARCHIVE_FAILED, NULL, "snafu", NULL); in test() 51 should(a, ARCHIVE_FAILED, NULL, "snafu", "betcha"); in test() 54 should(a, known_option_rv, "iso9660", "joliet", NULL); in test() 55 should(a, known_option_rv, "iso9660", "joliet", NULL); in test() 56 should( in test() 29 #define should( global() macro [all...] |
H A D | test_archive_read_set_option.c | 28 #define should(__a, __code, __m, __o, __v) \ 44 should(a, ARCHIVE_OK, NULL, NULL, NULL); in test() 45 should(a, ARCHIVE_OK, "", "", ""); in test() 48 should(a, ARCHIVE_FAILED, "fubar", "snafu", NULL); in test() 49 should(a, ARCHIVE_FAILED, "fubar", "snafu", "betcha"); in test() 52 should(a, ARCHIVE_FAILED, NULL, "snafu", NULL); in test() 53 should(a, ARCHIVE_FAILED, NULL, "snafu", "betcha"); in test() 56 should(a, known_option_rv, "iso9660", "joliet", NULL); in test() 57 should(a, known_option_rv, "iso9660", "joliet", NULL); in test() 58 should( in test() 29 #define should( global() macro [all...] |
H A D | test_archive_write_set_option.c | 28 #define should(__a, __code, __m, __o, __v) \ 44 should(a, ARCHIVE_OK, NULL, NULL, NULL); in test() 45 should(a, ARCHIVE_OK, "", "", ""); in test() 48 should(a, ARCHIVE_FAILED, "fubar", "snafu", NULL); in test() 49 should(a, ARCHIVE_FAILED, "fubar", "snafu", "betcha"); in test() 52 should(a, ARCHIVE_FAILED, NULL, "snafu", NULL); in test() 53 should(a, ARCHIVE_FAILED, NULL, "snafu", "betcha"); in test() 56 should(a, known_option_rv, "iso9660", "joliet", NULL); in test() 57 should(a, known_option_rv, "iso9660", "joliet", NULL); in test() 58 should( in test() 29 #define should( global() macro [all...] |
H A D | test_archive_read_set_filter_option.c | 28 #define should(__a, __code, __m, __o, __v) \ 39 should(a, ARCHIVE_OK, NULL, NULL, NULL); in test() 40 should(a, ARCHIVE_OK, "", "", ""); in test() 42 should(a, ARCHIVE_FAILED, NULL, "fubar", NULL); in test() 43 should(a, ARCHIVE_FAILED, NULL, "fubar", "snafu"); in test() 44 should(a, ARCHIVE_FAILED, "fubar", "snafu", NULL); in test() 45 should(a, ARCHIVE_FAILED, "fubar", "snafu", "betcha"); in test() 29 #define should( global() macro
|
H A D | test_archive_write_set_filter_option.c | 28 #define should(__a, __code, __m, __o, __v) \ 39 should(a, ARCHIVE_OK, NULL, NULL, NULL); in test() 40 should(a, ARCHIVE_OK, "", "", ""); in test() 42 should(a, ARCHIVE_FAILED, NULL, "fubar", NULL); in test() 43 should(a, ARCHIVE_FAILED, NULL, "fubar", "snafu"); in test() 44 should(a, ARCHIVE_FAILED, "fubar", "snafu", NULL); in test() 45 should(a, ARCHIVE_FAILED, "fubar", "snafu", "betcha"); in test() 29 #define should( global() macro
|
/freebsd/sys/contrib/device-tree/Bindings/powerpc/nintendo/ |
H A D | wii.txt | 30 - compatible : should be "nintendo,hollywood-vi","nintendo,flipper-vi" 31 - reg : should contain the VI registers location and length 32 - interrupts : should contain the VI interrupt 41 - compatible : should be "nintendo,hollywood-pi","nintendo,flipper-pi" 42 - reg : should contain the PI registers location and length 53 - compatible : should be "nintendo,flipper-pic" 63 - compatible : should be "nintendo,hollywood-dsp","nintendo,flipper-dsp" 64 - reg : should contain the DSP registers location and length 65 - interrupts : should contain the DSP interrupt 75 - compatible : should b [all...] |
H A D | gamecube.txt | 21 - compatible : should be "nintendo,flipper-vi" 22 - reg : should contain the VI registers location and length 23 - interrupts : should contain the VI interrupt 32 - compatible : should be "nintendo,flipper-pi" 33 - reg : should contain the PI registers location and length 43 - compatible : should be "nintendo,flipper-pic" 52 - compatible : should be "nintendo,flipper-dsp" 53 - reg : should contain the DSP registers location and length 54 - interrupts : should contain the DSP interrupt 64 - compatible : should b [all...] |
/freebsd/contrib/arm-optimized-routines/math/ |
H A D | README.contributors | 6 Coding Standard and glibc specific conventions should be followed 9 2. ABI and symbols: the code should be written so it is suitable for inclusion 11 should be hidden and in the implementation reserved namespace according to 13 library archives should be usable to override libc symbols at link time (or 18 3. API: include headers should be suitable for benchmarking and testing code 19 and should not conflict with libc headers. 28 - Worst-case ULP error should be small in the entire input domain (for most 31 variant should not have > 5 ULP error if the goal is to be a drop in 32 replacement for a standard math function), this should be tested 34 The ulp tool is for this and runulp.sh should be updated for new functions. [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/powerpc/4xx/ |
H A D | akebono.txt | 20 - compatible : should be "ibm,476gtr-sdhci","generic-sdhci". 21 - reg : should contain the SDHCI registers location and length. 22 - interrupts : should contain the SDHCI interrupt. 30 - compatible : should be "ibm,476gtr-ahci". 31 - reg : should contain the AHCI registers location and length. 32 - interrupts : should contain the AHCI interrupt. 41 - compatible : should be "ibm,akebono-fpga". 42 - reg : should contain the FPGA registers location and length. 51 - compatible : should be "ibm,akebono-avr". 52 - reg : should contain the I2C bus address for the AVR.
|
/freebsd/contrib/arm-optimized-routines/ |
H A D | README.contributors | 16 - Build should only depend on GNU make and posix utilities (shell, awk, sed, 18 - Build should pass with the default configuration (see config.mk.dist) 20 toolchains. (The build should not depend on a recent toolchain, the use 21 of a new feature should be possible to disable.) 23 should be done via make variables in config.mk. This is the user interface 24 to the build system, so it should be documented in sufficient detail and 29 some supported configurations (e.g. CFLAGS) those should be tested. 34 - Commit message should be descriptive and should not refer to Arm internal 36 decisions should be recorded or explained in the commit message if they are 38 - Ideally tools and scripts used to write the code should be added to the [all …]
|
/freebsd/contrib/bmake/unit-tests/ |
H A D | escape.exp | 57 second line spaces should be retained': 59 second line spaces should be retained: 61 second line tab should be elided': 63 second line tab should be elided: 65 only one tab should be elided, second tab remains' 67 only one tab should be elided, second tab remains 87 second line spaces should be retained': 89 second line spaces should be retained: 91 second line tab should be elided': 93 second line tab should be elided: [all …]
|
H A D | export-variants.mk | 12 . warning At this point, no variable should be exported. 16 . warning At this point, no variable should be exported. 20 . warning At this point, no variable should be exported. 28 . warning At this point, a single variable should be exported. 32 . warning At this point, a single variable should be exported. 36 . warning At this point, a single variable should be exported.
|
/freebsd/contrib/libxo/doc/ |
H A D | xolint-errors.rst | 10 This code should be replaced with code like: 29 This code should be replaced with code like: 49 This code should be replaced with code like: 67 This code should be replaced with code like: 73 Both format should consume the same number of arguments off the stack 85 This code should be replaced with code like: 100 This code should be replaced with code like: 137 in it, like "{N:Type of I/O}"; backslashes should be escaped, 151 This code should be replaced with code like: 169 This code should be replaced with code like: [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/sound/ |
H A D | uniphier,aio.txt | 7 - compatible : should be one of the following: 12 - interrupts : should contain I2S or S/PDIF interrupt. 13 - pinctrl-names : should be "default". 15 - clock-names : should include following entries: 17 - clocks : a list of phandle, should contain an entry for each 19 - reset-names : should include following entries: 21 - resets : a list of phandle, should contain an entry for each 23 - #sound-dai-cells: should be 1. 26 - socionext,syscon: a phandle, should contain soc-glue.
|
/freebsd/tools/regression/sockets/unix_cmsg/ |
H A D | README | 60 data object. Server should receive N messages, each message should 69 should have SCM_CREDS ancillary data object followed by struct sockcred{}, 70 next messages from the same connection should not have ancillary data. 76 messages to Server. Server should receive N messages, the first 77 message should have SCM_CREDS ancillary data object followed by 78 struct sockcred{}, next messages should not have ancillary data. 84 with SCM_CREDS ancillary data object. Server should receive N messages, 85 the first message should have SCM_CREDS ancillary data object followed 86 by struct sockcred{}, each of next messages should have SCM_CREDS 92 data object. Server should receive one message with SCM_TIMESTAMP [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/spi/ |
H A D | spi-mxic.txt | 5 - compatible: should be "mxicy,mx25f0a-spi" 6 - #address-cells: should be 1 7 - #size-cells: should be 0 8 - reg: should contain 2 entries, one for the registers and one for the direct 10 - reg-names: should contain "regs" and "dirmap" 12 - clock-names: should contain "ps_clk", "send_clk" and "send_dly_clk" 13 - clocks: should contain 3 entries for the "ps_clk", "send_clk" and
|
/freebsd/crypto/openssl/doc/man7/ |
H A D | provider-keymgmt.pod | 144 Indicating that the private key data in a key object should be 149 Indicating that the public key data in a key object should be 154 Indicating that the domain parameters in a key object should be 159 Indicating that other parameters in a key object should be 174 Indicating that all key object parameters should be considered, 177 =for comment This should used by EVP functions such as 183 =for comment If more parameter categories are added, they should be 188 Indicating that both the whole key pair in a key object should be 196 Indicating that everything in a key object should be considered. 211 OSSL_FUNC_keymgmt_new() should create a provider side key object. The [all …]
|
/freebsd/sys/contrib/device-tree/Bindings/serial/ |
H A D | omap_serial.txt | 4 - compatible : should be "ti,am64-uart", "ti,am654-uart" for AM64 controllers 5 - compatible : should be "ti,j721e-uart", "ti,am654-uart" for J721E controllers 6 - compatible : should be "ti,am654-uart" for AM654 controllers 7 - compatible : should be "ti,omap2-uart" for OMAP2 controllers 8 - compatible : should be "ti,omap3-uart" for OMAP3 controllers 9 - compatible : should be "ti,omap4-uart" for OMAP4 controllers 10 - compatible : should be "ti,am4372-uart" for AM437x controllers 11 - compatible : should be "ti,am3352-uart" for AM335x controllers 12 - compatible : should be "ti,dra742-uart" for DRA7x controllers
|
/freebsd/contrib/netbsd-tests/lib/libc/regex/ |
H A D | main.c | 238 char *should[NSHOULD]; in try() local 313 should[i] = NULL; in try() 314 nshould = split(f4, &should[1], NSHOULD-1, ","); in try() 317 should[1] = ∅ in try() 320 grump = check(f2, subs[i], should[i]); in try() 425 check(char *str, regmatch_t sub, char *should) in check() argument 433 if (should != NULL && strcmp(should, "-") == 0) in check() 434 should = NULL; in check() 435 if (should != NULL && should[0] == '@') { in check() 436 at = should + 1; in check() [all …]
|
/freebsd/lib/libc/regex/grot/ |
H A D | main.c | 209 char *should[NSHOULD]; in try() local 280 should[i] = NULL; in try() 281 nshould = split(f4, should+1, NSHOULD-1, ","); in try() 284 should[1] = ""; in try() 287 grump = check(f2, subs[i], should[i]); in try() 391 check(char *str, regmatch_t sub, char *should) in check() argument 399 if (should != NULL && strcmp(should, "-") == 0) in check() 400 should = NULL; in check() 401 if (should != NULL && should[0] == '@') { in check() 402 at = should + 1; in check() [all …]
|
/freebsd/tests/sys/cddl/zfs/tests/cli_root/zpool_upgrade/ |
H A D | zpool_upgrade.cfg | 33 # work out which types of pool we should be able to upgrade on this 166 # whether upgrade, import or other tests that should fail against unknown 167 # pool versions should fail. It should not be listed in the CONFIGS 173 # This statement builds up a list of configurations we should be able to 178 # we should be able to upgrade pools of version 1 183 # we should be able to upgrade pools of version 1 & 2 188 # we should be able to upgrade pools of version 1, 2 & 3 194 # we should be able to upgrade pools of version 1, 2, 3 & 4 200 # we should be able to upgrade pools up to version 5 206 # we should be able to upgrade pools up to version 6 [all …]
|