Home
last modified time | relevance | path

Searched refs:should (Results 1 – 25 of 3944) sorted by relevance

12345678910>>...158

/freebsd-14.2/contrib/one-true-awk/testdir/
H A DT.int-expr82 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
86 ac ~ /ab{0}*c/ -> should be 1, is 1
87 abc ~ /ab{0}*c/ -> should be 0, is 0
90 ac ~ /ab{0,}c/ -> should be 1, is 1
91 abc ~ /ab{0,}c/ -> should be 1, is 1
94 ac ~ /ab{0,}*c/ -> should be 1, is 1
98 ac ~ /ab{1}c/ -> should be 0, is 0
99 abc ~ /ab{1}c/ -> should be 1, is 1
[all …]
/freebsd-14.2/contrib/libarchive/libarchive/test/
H A Dtest_archive_read_set_options.c28 #define should(__a, __code, __opts) \ macro
45 should(a, ARCHIVE_OK, NULL); in test()
46 should(a, ARCHIVE_OK, ""); in test()
49 should(a, ARCHIVE_FAILED, "fubar:snafu"); in test()
57 should(a, ARCHIVE_FAILED, "snafu"); in test()
60 should(a, ARCHIVE_FAILED, "snafu=betcha"); in test()
75 should(a, known_option_rv, "joliet"); in test()
80 should(a, known_option_rv, "!joliet"); in test()
86 should(a, ARCHIVE_OK, ","); in test()
87 should(a, ARCHIVE_OK, ",,"); in test()
[all …]
H A Dtest_archive_write_set_options.c28 #define should(__a, __code, __opts) \ macro
45 should(a, ARCHIVE_OK, NULL); in test()
46 should(a, ARCHIVE_OK, ""); in test()
49 should(a, ARCHIVE_FAILED, "fubar:snafu"); in test()
57 should(a, ARCHIVE_FAILED, "snafu"); in test()
60 should(a, ARCHIVE_FAILED, "snafu=betcha"); in test()
75 should(a, known_option_rv, "joliet"); in test()
80 should(a, known_option_rv, "!joliet"); in test()
86 should(a, ARCHIVE_OK, ","); in test()
87 should(a, ARCHIVE_OK, ",,"); in test()
[all …]
H A Dtest_archive_write_set_format_option.c28 #define should(__a, __code, __m, __o, __v) \ macro
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(a, known_option_rv, NULL, "joliet", NULL); in test()
[all …]
H A Dtest_archive_read_set_format_option.c28 #define should(__a, __code, __m, __o, __v) \ macro
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(a, known_option_rv, NULL, "joliet", NULL); in test()
[all …]
H A Dtest_archive_read_set_option.c28 #define should(__a, __code, __m, __o, __v) \ macro
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(a, known_option_rv, NULL, "joliet", NULL); in test()
[all …]
H A Dtest_archive_write_set_option.c28 #define should(__a, __code, __m, __o, __v) \ macro
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(a, known_option_rv, NULL, "joliet", NULL); in test()
[all …]
H A Dtest_archive_read_set_filter_option.c28 #define should(__a, __code, __m, __o, __v) \ macro
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()
H A Dtest_archive_write_set_filter_option.c28 #define should(__a, __code, __m, __o, __v) \ macro
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()
/freebsd-14.2/sys/contrib/device-tree/Bindings/powerpc/nintendo/
H A Dwii.txt32 - interrupts : should contain the VI interrupt
53 - compatible : should be "nintendo,flipper-pic"
65 - interrupts : should contain the DSP interrupt
77 - interrupts : should contain the SI interrupt
88 - interrupts : should contain the AI interrupt
98 - interrupts : should contain the EXI interrupt
108 - interrupts : should contain the EHCI interrupt
127 - interrupts : should contain the IPC interrupt
137 - compatible : should be "nintendo,hollywood-pic"
163 - compatible : should be "nintendo,hollywood-di"
[all …]
H A Dgamecube.txt21 - compatible : should be "nintendo,flipper-vi"
23 - interrupts : should contain the VI interrupt
32 - compatible : should be "nintendo,flipper-pi"
43 - compatible : should be "nintendo,flipper-pic"
52 - compatible : should be "nintendo,flipper-dsp"
54 - interrupts : should contain the DSP interrupt
73 - compatible : should be "nintendo,flipper-di"
75 - interrupts : should contain the DI interrupt
84 - compatible : should be "nintendo,flipper-ai"
86 - interrupts : should contain the AI interrupt
[all …]
/freebsd-14.2/contrib/arm-optimized-routines/math/
H A DREADME.contributors5 the GNU Coding Standard and glibc specific conventions should be followed
8 2. ABI and symbols: the code should be written so it is suitable for inclusion
10 should be hidden and in the implementation reserved namespace according to
12 library archives should be usable to override libc symbols at link time (or
17 3. API: include headers should be suitable for benchmarking and testing code
18 and should not conflict with libc headers.
30 variant should not have > 5 ULP error if the goal is to be a drop in
31 replacement for a standard math function), this should be tested
54 - Error bounds of the approximation should be clearly documented.
60 The configurations that should be tested depend on the contribution.
[all …]
/freebsd-14.2/sys/contrib/device-tree/Bindings/powerpc/4xx/
H A Dakebono.txt20 - 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-14.2/contrib/arm-optimized-routines/
H A DREADME.contributors16 - 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-14.2/contrib/libxo/doc/
H A Dxolint-errors.rst10 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:
85 This code should be replaced with code like:
100 This code should be replaced with code like:
151 This code should be replaced with code like:
259 But the raw field name should use hyphens.
280 'Value field name should be lower case'
364 'Anchor content should be decimal width'
[all …]
/freebsd-14.2/sys/contrib/device-tree/Bindings/sound/
H A Duniphier,aio.txt7 - 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.
H A Duniphier,evea.txt4 - compatible : should be "socionext,uniphier-evea".
6 - clock-names : should include following entries:
8 - clocks : a list of phandle, should contain an entry for each
10 - reset-names : should include following entries:
12 - resets : a list of phandle, should contain reset entries of
14 - #sound-dai-cells: should be 1.
/freebsd-14.2/sys/contrib/device-tree/Bindings/spi/
H A Dspi-mxic.txt5 - 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-14.2/tools/regression/sockets/unix_cmsg/
H A DREADME60 data object. Server should receive N messages, each message should
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.
86 by struct sockcred{}, each of next messages should have SCM_CREDS
98 data object. Server should receive one message with SCM_BINTIME
105 struct cmsghdr{}. All these attempts should fail, since cmsg_len
120 data object. Server should receive N messages, each message should
134 to Server. Server should receive N messages, the first message should
142 to Server. Server should receive one message with SCM_TIMESTAMP
[all …]
/freebsd-14.2/sys/contrib/device-tree/Bindings/serial/
H A Domap_serial.txt4 - 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-14.2/crypto/openssl/doc/man7/
H A Dprovider-keymgmt.pod144 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
196 Indicating that everything in a key object should be considered.
215 OSSL_FUNC_keymgmt_free() should free the passed I<keydata>.
224 of contents the key object to be generated should get.
361 The value should be the maximum size that a caller should allocate to
[all …]
/freebsd-14.2/contrib/bmake/unit-tests/
H A Dexport-variants.mk12 . 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-14.2/contrib/netbsd-tests/include/
H A Dd_bitstring_64.out165 first 1 bit should move right 1 position each line
231 first 0 bit should move right 1 position each line
297 first 0 bit should move left 1 position each line
363 first 1 bit should move left 1 position each line
429 0 bit should move right 1 position each line
495 1 bit should move right 1 position each line
H A Dd_bitstring_27.out91 first 1 bit should move right 1 position each line
120 first 0 bit should move right 1 position each line
149 first 0 bit should move left 1 position each line
178 first 1 bit should move left 1 position each line
207 0 bit should move right 1 position each line
236 1 bit should move right 1 position each line
H A Dd_bitstring_8.out53 first 1 bit should move right 1 position each line
63 first 0 bit should move right 1 position each line
73 first 0 bit should move left 1 position each line
83 first 1 bit should move left 1 position each line
93 0 bit should move right 1 position each line
103 1 bit should move right 1 position each line

12345678910>>...158