blob: 99e89384c8eb7aaefec947d47985ddb7527e94e4 [file] [log] [blame]
Alexander Afanasyev5d57f972015-02-11 21:04:29 -08001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesavento14e71f02019-03-28 17:35:25 -04002/*
Davide Pesaventoe422f9e2022-06-03 01:30:23 -04003 * Copyright (c) 2014-2022, Regents of the University of California,
Alexander Afanasyev5d57f972015-02-11 21:04:29 -08004 * Arizona Board of Regents,
5 * Colorado State University,
6 * University Pierre & Marie Curie, Sorbonne University,
7 * Washington University in St. Louis,
8 * Beijing Institute of Technology,
9 * The University of Memphis.
10 *
11 * This file is part of NFD (Named Data Networking Forwarding Daemon).
12 * See AUTHORS.md for complete list of NFD authors and contributors.
13 *
14 * NFD is free software: you can redistribute it and/or modify it under the terms
15 * of the GNU General Public License as published by the Free Software Foundation,
16 * either version 3 of the License, or (at your option) any later version.
17 *
18 * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
19 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
20 * PURPOSE. See the GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License along with
23 * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
24 */
25
Junxiao Shi9f5b01d2016-08-05 03:54:28 +000026#include "core/common.hpp"
Alexander Afanasyev5d57f972015-02-11 21:04:29 -080027
28#include "tests/test-common.hpp"
29
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040030namespace nfd::tests {
Alexander Afanasyev5d57f972015-02-11 21:04:29 -080031
Spyridon Mastorakisd0381c02015-02-19 10:29:41 -080032BOOST_AUTO_TEST_SUITE(TestNdebug)
Alexander Afanasyev5d57f972015-02-11 21:04:29 -080033
Spyridon Mastorakisd0381c02015-02-19 10:29:41 -080034BOOST_AUTO_TEST_CASE(AssertFalse)
Alexander Afanasyev5d57f972015-02-11 21:04:29 -080035{
Spyridon Mastorakisd0381c02015-02-19 10:29:41 -080036#ifndef _DEBUG
37 // in release builds, assertion shouldn't execute
38 BOOST_ASSERT(false);
39#endif
Davide Pesavento97210d52016-10-14 15:45:48 +020040 // Trivial check to avoid "test case did not check any assertions" message from Boost.Test
41 BOOST_CHECK(true);
Spyridon Mastorakisd0381c02015-02-19 10:29:41 -080042}
Alexander Afanasyev5d57f972015-02-11 21:04:29 -080043
Spyridon Mastorakisd0381c02015-02-19 10:29:41 -080044BOOST_AUTO_TEST_CASE(SideEffect)
45{
46 int a = 1;
47 BOOST_ASSERT((a = 2) > 0);
48#ifdef _DEBUG
49 BOOST_CHECK_EQUAL(a, 2);
50#else
51 BOOST_CHECK_EQUAL(a, 1);
52#endif
Alexander Afanasyev5d57f972015-02-11 21:04:29 -080053}
54
Davide Pesavento14e71f02019-03-28 17:35:25 -040055BOOST_AUTO_TEST_SUITE_END() // TestNdebug
Alexander Afanasyev5d57f972015-02-11 21:04:29 -080056
Davide Pesaventoe422f9e2022-06-03 01:30:23 -040057} // namespace nfd::tests