• R/O
  • SSH

Commit

Tags
No Tags

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

A lambda-based C++ unit-testing framework.


Commit MetaInfo

Revisãocdabe81656fd4e85bb14fc4d65b2a5bfd059095c (tree)
Hora2020-01-19 21:15:51
AutorKaz Nishimura <kazssym@linu...>
CommiterKaz Nishimura

Mensagem de Log

Rename <cppunitx/engine> to <cppunitx/driver>

Mudança Sumário

Diff

diff -r 328f2031edd9 -r cdabe81656fd examples/run.cpp
--- a/examples/run.cpp Sun Jan 19 21:11:19 2020 +0900
+++ b/examples/run.cpp Sun Jan 19 21:15:51 2020 +0900
@@ -1,5 +1,5 @@
11 // run.cpp
2-// Copyright (C) 2018 Kaz Nishimura
2+// Copyright (C) 2018-2020 Kaz Nishimura
33 //
44 // This program is free software: you can redistribute it and/or modify it
55 // under the terms of the GNU General Public License as published by the Free
@@ -19,7 +19,8 @@
1919 #if HAVE_CONFIG_H
2020 #include <config.h>
2121 #endif
22-#include <cppunitx/engine>
22+
23+#include <cppunitx/driver>
2324
2425 using namespace cppunitx;
2526
diff -r 328f2031edd9 -r cdabe81656fd libcppunitx/Makefile.am
--- a/libcppunitx/Makefile.am Sun Jan 19 21:11:19 2020 +0900
+++ b/libcppunitx/Makefile.am Sun Jan 19 21:15:51 2020 +0900
@@ -2,7 +2,7 @@
22
33 lib_LTLIBRARIES = libcppunitx.la
44
5-nobase_include_HEADERS = cppunitx/framework cppunitx/engine cppunitx/module \
5+nobase_include_HEADERS = cppunitx/framework cppunitx/module cppunitx/driver \
66 bits/cppunitx.h bits/cppunitx/registry.h bits/cppunitx/test.h \
77 bits/cppunitx/module.h bits/cppunitx/driver.h \
88 cppunitx/bits/test_runner.h cppunitx/bits/base.h
diff -r 328f2031edd9 -r cdabe81656fd libcppunitx/cppunitx/driver
--- /dev/null Thu Jan 01 00:00:00 1970 +0000
+++ b/libcppunitx/cppunitx/driver Sun Jan 19 21:15:51 2020 +0900
@@ -0,0 +1,24 @@
1+// cppunitx/engine - public interface for the test engine
2+// Copyright (C) 2018 Kaz Nishimura
3+//
4+// This program is free software: you can redistribute it and/or modify it
5+// under the terms of the GNU General Public License as published by the Free
6+// Software Foundation, either version 3 of the License, or (at your option)
7+// any later version.
8+//
9+// This program is distributed in the hope that it will be useful, but WITHOUT
10+// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11+// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12+// more details.
13+//
14+// You should have received a copy of the GNU General Public License along with
15+// this program. If not, see <http://www.gnu.org/licenses/>.
16+//
17+// SPDX-License-Identifier: GPL-3.0-or-later
18+
19+#ifndef _CPPUNITX_ENGINE
20+#define _CPPUNITX_ENGINE 1
21+
22+#include <bits/cppunitx/driver.h>
23+
24+#endif
diff -r 328f2031edd9 -r cdabe81656fd libcppunitx/cppunitx/engine
--- a/libcppunitx/cppunitx/engine Sun Jan 19 21:11:19 2020 +0900
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
@@ -1,24 +0,0 @@
1-// cppunitx/engine - public interface for the test engine
2-// Copyright (C) 2018 Kaz Nishimura
3-//
4-// This program is free software: you can redistribute it and/or modify it
5-// under the terms of the GNU General Public License as published by the Free
6-// Software Foundation, either version 3 of the License, or (at your option)
7-// any later version.
8-//
9-// This program is distributed in the hope that it will be useful, but WITHOUT
10-// ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11-// FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12-// more details.
13-//
14-// You should have received a copy of the GNU General Public License along with
15-// this program. If not, see <http://www.gnu.org/licenses/>.
16-//
17-// SPDX-License-Identifier: GPL-3.0-or-later
18-
19-#ifndef _CPPUNITX_ENGINE
20-#define _CPPUNITX_ENGINE 1
21-
22-#include <bits/cppunitx/driver.h>
23-
24-#endif