Back to home page

LXR

 
 

    


File indexing completed on 2025-05-11 08:24:35

0001 #include <rtems/test.h>
0002 
0003 T_TEST_CASE(example)
0004 {
0005     T_true(true, "test passes, no message output");
0006     T_true(false, "test fails");
0007     T_quiet_true(true, "quiet test passes, no output at all");
0008     T_quiet_true(false, "quiet test fails");
0009     T_step_true(2, true, "step test passes, no message output");
0010     T_step_true(3, false, "step test fails");
0011     T_assert_false(true, "this is a format %s", "string");
0012 }
0013 
0014 #include "t-self-test.h"
0015 
0016 T_TEST_OUTPUT(example,
0017 "B:example\n"
0018 "P:0:0:UI1:test-example.c:5\n"
0019 "F:1:0:UI1:test-example.c:6:test fails\n"
0020 "F:*:0:UI1:test-example.c:8:quiet test fails\n"
0021 "P:2:0:UI1:test-example.c:9\n"
0022 "F:3:0:UI1:test-example.c:10:step test fails\n"
0023 "F:4:0:UI1:test-example.c:11:this is a format string\n"
0024 "E:example:N:5:F:4:D:0.001000\n");
0025 
0026 /*
0027  * The license is at the end of the file to be able to use the test code and
0028  * output in examples in the documentation.  This is also the reason for the
0029  * dual licensing.  The license for RTEMS documentation is CC-BY-SA-4.0.
0030  */
0031 
0032 /*
0033  * SPDX-License-Identifier: BSD-2-Clause OR CC-BY-SA-4.0
0034  *
0035  * Copyright (C) 2018, 2019 embedded brains GmbH & Co. KG
0036  *
0037  * Redistribution and use in source and binary forms, with or without
0038  * modification, are permitted provided that the following conditions
0039  * are met:
0040  * 1. Redistributions of source code must retain the above copyright
0041  *    notice, this list of conditions and the following disclaimer.
0042  * 2. Redistributions in binary form must reproduce the above copyright
0043  *    notice, this list of conditions and the following disclaimer in the
0044  *    documentation and/or other materials provided with the distribution.
0045  *
0046  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
0047  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
0048  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
0049  * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
0050  * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
0051  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
0052  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
0053  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
0054  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
0055  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
0056  * POSSIBILITY OF SUCH DAMAGE.
0057  *
0058  * ALTERNATIVELY, this software may be distributed under the terms of the
0059  * Creative Commons Attribution-ShareAlike 4.0 International Public License as
0060  * published by Creative Commons, PO Box 1866, Mountain View, CA 94042
0061  * (https://creativecommons.org/licenses/by-sa/4.0/legalcode).
0062  */