Jacob Bramley | 028fb05 | 2016-12-15 15:44:34 +0000 | [diff] [blame] | 1 | // Copyright 2016, VIXL authors |
| 2 | // All rights reserved. |
| 3 | // |
| 4 | // Redistribution and use in source and binary forms, with or without |
| 5 | // modification, are permitted provided that the following conditions are met: |
| 6 | // |
| 7 | // * Redistributions of source code must retain the above copyright notice, |
| 8 | // this list of conditions and the following disclaimer. |
| 9 | // * Redistributions in binary form must reproduce the above copyright notice, |
| 10 | // this list of conditions and the following disclaimer in the documentation |
| 11 | // and/or other materials provided with the distribution. |
| 12 | // * Neither the name of ARM Limited nor the names of its contributors may be |
| 13 | // used to endorse or promote products derived from this software without |
| 14 | // specific prior written permission. |
| 15 | // |
| 16 | // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS CONTRIBUTORS "AS IS" AND |
| 17 | // ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED |
| 18 | // WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 19 | // DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE |
| 20 | // FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 21 | // DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR |
| 22 | // SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER |
| 23 | // CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, |
| 24 | // OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
| 25 | // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 26 | |
| 27 | #include <stdlib.h> |
| 28 | |
Jacob Bramley | 028fb05 | 2016-12-15 15:44:34 +0000 | [diff] [blame] | 29 | #include "globals-vixl.h" |
Pierre Langlois | 1bce007 | 2017-06-06 17:58:58 +0100 | [diff] [blame] | 30 | #include "test-runner.h" |
Jacob Bramley | 028fb05 | 2016-12-15 15:44:34 +0000 | [diff] [blame] | 31 | |
| 32 | // These are all negative tests to check that the aborts work and print sensible |
| 33 | // messages. These tests cannot check the aborts with negative_testing=off. |
| 34 | |
| 35 | #ifdef VIXL_NEGATIVE_TESTING |
| 36 | #include <stdexcept> |
| 37 | |
| 38 | namespace vixl { |
| 39 | |
Pierre Langlois | bde2e4b | 2017-01-24 17:41:26 +0000 | [diff] [blame] | 40 | #define TEST(name, code, expected_prefix) \ |
| 41 | TEST_(ABORTS_##name) { \ |
| 42 | try { \ |
| 43 | code; \ |
| 44 | printf("\n%s:%d\nNo exception raised.\n", __FILE__, __LINE__); \ |
| 45 | abort(); \ |
Pierre Langlois | 4df1551 | 2018-05-22 15:01:58 +0100 | [diff] [blame] | 46 | } catch (const std::runtime_error& e) { \ |
Pierre Langlois | bde2e4b | 2017-01-24 17:41:26 +0000 | [diff] [blame] | 47 | size_t prefix_length = strlen(expected_prefix); \ |
| 48 | if (strncmp(expected_prefix, e.what(), prefix_length) != 0) { \ |
| 49 | printf("\n%s:%d\nFound:\n%sExpected:\n%s...\n", \ |
| 50 | __FILE__, \ |
| 51 | __LINE__, \ |
| 52 | e.what(), \ |
| 53 | expected_prefix); \ |
| 54 | abort(); \ |
| 55 | } \ |
| 56 | } \ |
| 57 | } |
Jacob Bramley | 028fb05 | 2016-12-15 15:44:34 +0000 | [diff] [blame] | 58 | |
| 59 | TEST(abort, VIXL_ABORT(), "Aborting in ") |
| 60 | TEST(abort_with_msg, VIXL_ABORT_WITH_MSG("message\n"), "message\nin ") |
| 61 | TEST(check_simple, VIXL_CHECK(false), "Assertion failed (false)\nin ") |
| 62 | TEST(check_expression, VIXL_CHECK(1 == 2), "Assertion failed (1 == 2)\nin ") |
| 63 | #ifdef VIXL_DEBUG |
| 64 | TEST(unimplemented, VIXL_UNIMPLEMENTED(), "UNIMPLEMENTED in ") |
| 65 | TEST(unreachable, VIXL_UNREACHABLE(), "UNREACHABLE in ") |
Jacob Bramley | 8e2049c | 2017-04-10 17:40:20 +0100 | [diff] [blame] | 66 | TEST(assert, VIXL_ASSERT(false), "Assertion failed (false)\nin ") |
Jacob Bramley | 028fb05 | 2016-12-15 15:44:34 +0000 | [diff] [blame] | 67 | #endif |
| 68 | |
| 69 | } // namespace vixl |
| 70 | |
| 71 | #endif // VIXL_NEGATIVE_TESTING |