-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
--HG-- branch : release
- Loading branch information
Showing
59 changed files
with
8,992 additions
and
76 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
25ee843f907eb7376ad6f1af1aa15d40622062bb release/1-alpha.1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,7 +21,7 @@ | |
"clean", | ||
"check" | ||
], | ||
"group": "build", | ||
"group": "none", | ||
"problemMatcher": [ | ||
"$gcc" | ||
] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,25 @@ | ||
# Process this file with autoconf to produce a configure script. | ||
AC_PREREQ([2.69]) | ||
AC_INIT([C++UnitX], [1-alpha.1], | ||
AC_INIT([C++UnitX], [1-alpha.2], | ||
[https://bitbucket.org/kazssym/cppunitx/issues/new], [cppunitx], | ||
[https://www.vx68k.org/cppunitx]) | ||
AC_CONFIG_SRCDIR([libcppunitx/registry.cpp]) | ||
AC_CONFIG_AUX_DIR([build-aux]) | ||
AC_CONFIG_MACRO_DIRS([m4]) | ||
AC_CONFIG_MACRO_DIR([m4]) | ||
LT_PREREQ([2.4.6]) | ||
LT_INIT([dlopen]) | ||
AM_INIT_AUTOMAKE([foreign no-define tar-ustar]) | ||
LT_CONFIG_LTDL_DIR([libltdl]) | ||
LTDL_INIT([recursive]) | ||
AM_INIT_AUTOMAKE([foreign no-define subdir-objects tar-ustar]) | ||
# Checks for programs. | ||
AC_PROG_CC | ||
AC_PROG_CXX | ||
AC_CHECK_LIB([ltdl], [lt_dlopen], [LIBLTDL=-lltdl], [LIBLTDL=]) | ||
AC_SUBST([LIBLTDL])dnl | ||
AC_CHECK_HEADERS([ltdl.h]) | ||
AC_CONFIG_FILES([Makefile libcppunitx/Makefile test/Makefile doc/Makefile]) | ||
# Checks for libraries. | ||
# Checks for header files. | ||
# Checks for typedefs, structures, and compiler characteristics. | ||
# Checks for library functions. | ||
# Configuration actions. | ||
AC_CONFIG_FILES([Makefile libcppunitx/Makefile | ||
libltdl/Makefile test/Makefile doc/Makefile]) | ||
AC_CONFIG_HEADERS([config.h]) | ||
AC_OUTPUT |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
*.rej | ||
*.orig | ||
*~ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,19 @@ | ||
# Dockerfile for the CppUnitX builder image | ||
# Copyright (C) 2018 Kaz Nishimura | ||
# Copyright (C) 2018-2020 Kaz Nishimura | ||
# | ||
# Copying and distribution of this file, with or without modification, | ||
# are permitted in any medium without royalty provided the copyright | ||
# notice and this notice are preserved. This file is offered as-is, | ||
# without any warranty. | ||
|
||
FROM gcc:7 | ||
FROM gcc:latest | ||
|
||
RUN set -x && \ | ||
apt-get update && \ | ||
apt-get install --assume-yes --no-install-recommends \ | ||
texinfo texlive && \ | ||
rm -rf /var/lib/apt/lists/* | ||
apt-get update -q && \ | ||
apt-get install -qy --no-install-recommends \ | ||
texinfo \ | ||
texlive \ | ||
&& \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
ENV TEX=dviluatex PDFTEX=luatex |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
prefix=@prefix@ | ||
exec_prefix=@exec_prefix@ | ||
includedir=@includedir@ | ||
libdir=@libdir@ | ||
|
||
Name: cppunitx | ||
Description: C++UnitX library | ||
Version: @VERSION@ | ||
Cflags: -I${includedir} | ||
Libs: -L${libdir} -lcppunitx |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
// exception.cpp | ||
// Copyright (C) 2020 Kaz Nishimura | ||
// | ||
// This program is free software: you can redistribute it and/or modify it | ||
// under the terms of the GNU General Public License as published by the Free | ||
// Software Foundation, either version 3 of the License, or (at your option) | ||
// any later version. | ||
// | ||
// This program is distributed in the hope that it will be useful, but WITHOUT | ||
// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | ||
// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for | ||
// more details. | ||
// | ||
// You should have received a copy of the GNU General Public License along with | ||
// this program. If not, see <http://www.gnu.org/licenses/>. | ||
// | ||
// SPDX-License-Identifier: GPL-3.0-or-later | ||
|
||
#if HAVE_CONFIG_H | ||
#include <config.h> | ||
#endif | ||
|
||
#include <bits/cppunitx/exception.h> | ||
|
||
using namespace cppunitx; | ||
|
||
AssertionError::AssertionError(const char *message) | ||
: inherited {message} | ||
{ | ||
} | ||
|
||
AssertionError::AssertionError(const std::string &message) | ||
: inherited {message} | ||
{ | ||
} | ||
|
||
AssertionError::~AssertionError() noexcept | ||
{ | ||
} |
Oops, something went wrong.