| /src/sys/contrib/device-tree/Bindings/mtd/ |
| H A D | gpmc-nor.txt | 14 - gpmc,cs-on-ns: Chip-select assertion time 15 - gpmc,cs-rd-off-ns: Chip-select de-assertion time for reads 16 - gpmc,cs-wr-off-ns: Chip-select de-assertion time for writes 17 - gpmc,oe-on-ns: Output-enable assertion time 18 - gpmc,oe-off-ns: Output-enable de-assertion time 19 - gpmc,we-on-ns Write-enable assertion time 20 - gpmc,we-off-ns: Write-enable de-assertion time
|
| /src/sys/contrib/openzfs/tests/zfs-tests/tests/functional/zvol/zvol_swap/ |
| H A D | zvol_swap_005_pos.ksh | 48 assertion="Verify the sum of swaplow and swaplen is less or equal to volsize" 49 log_assert $assertion 70 log_pass $assertion
|
| /src/sys/contrib/device-tree/Bindings/net/ |
| H A D | gpmc-eth.txt | 29 - gpmc,cs-on-ns: Chip-select assertion time 30 - gpmc,cs-rd-off-ns: Chip-select de-assertion time for reads 31 - gpmc,cs-wr-off-ns: Chip-select de-assertion time for writes 32 - gpmc,oe-on-ns: Output-enable assertion time 33 - gpmc,oe-off-ns: Output-enable de-assertion time 34 - gpmc,we-on-ns: Write-enable assertion time 35 - gpmc,we-off-ns: Write-enable de-assertion time
|
| /src/tools/regression/sockets/kqueue/ |
| H A D | kqueue.c | 78 const char *assertion) in fail_assertion() argument 81 printf("not ok %d - %s\n", curtest, assertion); in fail_assertion() 85 assertion); in fail_assertion() 88 socktype, assertion); in fail_assertion() 91 socktype, rest, assertion); in fail_assertion()
|
| /src/sys/contrib/openzfs/tests/zfs-tests/tests/functional/cli_root/zpool_events/ |
| H A D | zpool_events_clear_retained.ksh | 95 assertion="Damage to recently repaired blocks should be reported/counted" 96 log_assert "$assertion" 132 log_pass "$assertion"
|
| /src/contrib/googletest/docs/reference/ |
| H A D | assertions.md | 3 This page lists the assertion macros provided by GoogleTest for verifying code 11 All assertion macros support streaming a custom failure message into them with 18 Anything that can be streamed to an `ostream` can be streamed to an assertion 21 assertion, it will be translated to UTF-8 when printed. 48 The `SUCCEED` assertion is purely documentary and currently doesn't generate any 59 [Assertion Placement](../advanced.md#assertion-placement) for more information. 76 The following assertion allows [matchers](matchers.md) to be used to verify 106 informative failure messages. For example, if the above assertion on `value1` 118 The use of matchers makes `EXPECT_THAT` a powerful, extensible assertion. 120 *The idea for this assertion was borrowed from Joe Walnes' Hamcrest project, [all …]
|
| H A D | testing.md | 461 be added to the failure message for each assertion failure that occurs in the 508 A class for indicating whether an assertion was successful. 510 When the assertion wasn't successful, the `AssertionResult` object stores a 1101 Fired after a failed assertion or a `SUCCEED()` invocation. If you want to throw 1193 A copyable object representing the result of a test part (i.e. an assertion or 1504 Creates a successful assertion result. See 1511 Creates a failed assertion result. Use the `<<` operator to store a failure 1524 Compile-time assertion for type equality. Compiles if and only if `T1` and `T2`
|
| /src/sys/contrib/openzfs/tests/test-runner/include/ |
| H A D | logapi.shlib | 37 # Output an assertion 39 # $@ - assertion text 110 if grep -qEi "internal error|assertion failed" $logfile; then 113 " assertion failure exited $status" 229 if grep -qEi "internal error|assertion failed" $logfile; then 231 _printerror "$@" "internal error or assertion failure" \ 274 if grep -qEi "internal error|assertion failed" $logfile; then 276 _printerror "$@" "internal error or assertion failure" \
|
| /src/sys/contrib/device-tree/Bindings/memory-controllers/ |
| H A D | arm,pl172.txt | 67 - mpmc,write-enable-delay: Delay from chip select assertion to write 70 - mpmc,output-enable-delay: Delay from chip select assertion to output 73 - mpmc,write-access-delay: Delay from chip select assertion to write 76 - mpmc,read-access-delay: Delay from chip select assertion to read
|
| H A D | mvebu-devbus.txt | 62 - devbus,rd-setup-ps: Defines the time delay between DEV_CSn assertion to 63 DEV_OEn assertion. If set to 0 (default), 72 de-assertion of DEV_CSn. If set to 0 (default), 75 This parameter has no affect on DEV_OEn de-assertion. 86 to the DEV_WEn assertion.
|
| /src/contrib/libarchive/libarchive/test/ |
| H A D | README | 35 arguments if the assertion does fail. 'A' versions also accept 39 * You are encouraged to document each assertion with a failure() call 41 function whose text is displayed only if the assertion fails. It
|
| /src/contrib/googletest/docs/ |
| H A D | primer.md | 82 that check whether a condition is true. An assertion's result can be *success*, 87 or has a failed assertion, then it *fails*; otherwise it *succeeds*. 97 assertion level and building up to tests and test suites. 102 or function by making assertions about its behavior. When an assertion fails, 103 GoogleTest prints the assertion's source file and line number location, along 113 assertion in question fails. 118 this in mind if you get a heap checker error in addition to assertion errors. 133 Anything that can be streamed to an `ostream` can be streamed to an assertion 136 streamed to an assertion, it will be translated to UTF-8 when printed. 153 3. The test's result is determined by the assertions; if any assertion in the [all …]
|
| H A D | advanced.md | 44 assertion* to get the function arguments printed for free. See 55 An `AssertionResult` object represents the result of an assertion (whether it's 62 // Returns an AssertionResult object to indicate that an assertion has 66 // Returns an AssertionResult object to indicate that an assertion has 97 the failed assertion `EXPECT_TRUE(IsEven(Fib(4)))` will print: 155 that can be used in the predicate assertion macro 207 the assertion is satisfied. If the types are different, the function call will 254 any assertion inside of it. 263 call `abort` and crash the entire test executable, or put the fatal assertion in 268 WARNING: A fatal assertion in a helper function (private void-returning method) [all …]
|
| H A D | faq.md | 80 The need for `EXPECT_NE(NULL, ptr)` wasn't nearly as strong. When the assertion 256 [here](advanced.md#assertion-placement). 327 * The GoogleTest team is considering making the assertion macros throw on 357 has a GoogleTest assertion failure. Very bad. 383 [section](advanced.md#assertion-placement) in the user's guide explains it. 453 `ASSERT_DEATH(statement, matcher)` (or any death assertion macro) can be used 487 // A death assertion can contain a compound statement. 568 ## The compiler complains about `no match for 'operator<<'` when I use an assertion. What gives? 570 If you use a user-defined type `FooType` in an assertion, you must make sure
|
| /src/contrib/libfido2/examples/ |
| H A D | README.adoc | 72 Asks <device> for a FIDO2 assertion corresponding to [cred_id], 73 which may be omitted for resident keys. The obtained assertion 78 If option -u is specified, the assertion is generated using
|
| /src/contrib/one-true-awk/testdir/ |
| H A D | t.assert | 3 function assert(cond) { # assertion
|
| H A D | T.func | 12 function assert(cond) { # assertion
|
| /src/sys/contrib/device-tree/Bindings/bus/ |
| H A D | qcom,ebi2.txt | 98 with ADV assertion. 100 assertion, with respect to the cycle where ADV (address valid) is asserted. 104 assertion to OE assertion. Valid values 0 thru 15.
|
| /src/crypto/heimdal/lib/wind/ |
| H A D | rfc4518.txt | 200 Failure in any step causes the assertion to evaluate to Undefined. 325 assertion values: If the input string contains no non-space 343 For input strings that are substring assertion values: If the string 627 filter [RFC4515] assertion (CN=A*B*C) says to "match any value (of 640 assertion constructed by subdividing that substring into multiple 661 That is, the substrings assertion (CN=foo\20*\20bar) matches the 692 This statement applies to the assertion values and attribute values 693 as whole strings, and not individually to substrings of an assertion 695 an assertion value and attribute value match without any 696 consideration to insignificant characters, then that assertion value [all …]
|
| /src/contrib/mandoc/ |
| H A D | NEWS | 46 * man(7): fix an assertion failure caused by doubly nested next-line scopes 51 * tbl(7): fix an assertion failure caused by excessive spacing modifiers 55 * roff(7): fix an assertion failure caused by a macro inside .ce .if 56 * roff(7): fix assertion failures for .ti and .po with excessive arguments 58 * -T ascii/utf8: fix assertion failures caused by excessive spacing 59 * -T html: fix an assertion failure caused by .ft in rare situations 60 * -T man: fix an assertion failure caused by tbl(7) and eqn(7) input 313 * Avoid an assertion failure in certain .Bl -column lists. 520 * mdoc(7): Fix an assertion failure for a .Bd without a type that 522 * mdoc(7): Fix an assertion failure that happened for some .Bl -column [all …]
|
| /src/sys/contrib/device-tree/Bindings/power/reset/ |
| H A D | ltc2952-poweroff.txt | 21 assertion before executing shut down procedure.
|
| /src/lib/googletest/gtest/ |
| H A D | Makefile | 15 MAIN_INCS+= gtest/gtest-assertion-result.h
|
| /src/tools/test/stress2/misc/ |
| H A D | mapwrite.sh | 18 * assertion.
|
| /src/sys/contrib/device-tree/Bindings/spi/ |
| H A D | fsl-spi.txt | 48 - fsl,csbef: chip select assertion time in bits before frame starts
|
| /src/sys/contrib/device-tree/Bindings/mfd/ |
| H A D | cros-ec.txt | 27 assertion of the CS to the start of the first clock pulse.
|