File tree Expand file tree Collapse file tree 4 files changed +13
-8
lines changed Expand file tree Collapse file tree 4 files changed +13
-8
lines changed Original file line number Diff line number Diff line change @@ -30,17 +30,17 @@ Via svn:
30
30
31
31
svn checkout https://github.com/unittest-cpp/unittest-cpp/trunk unittest-cpp
32
32
33
- ### Latest release (v1.6.0 ) ###
33
+ ### Latest release (v1.6.1 ) ###
34
34
35
35
Via git:
36
36
37
37
git clone https://github.com/unittest-cpp/unittest-cpp
38
38
cd unittest-cpp
39
- git checkout v1.6.0
39
+ git checkout v1.6.1
40
40
41
41
Via svn:
42
42
43
- svn checkout https://github.com/unittest-cpp/unittest-cpp/tags/v1.6.0 unittest-cpp
43
+ svn checkout https://github.com/unittest-cpp/unittest-cpp/tags/v1.6.1 unittest-cpp
44
44
45
45
License
46
46
---------
@@ -58,7 +58,7 @@ Contributors
58
58
* Charles Nicholson (charles.nicholson@gmail.com ) @charlesnicholson
59
59
60
60
### Original Authors: ###
61
- * Noel Llopis (llopis@convexhull.com )
61
+ * Noel Llopis (llopis@convexhull.com )
62
62
* Charles Nicholson (charles.nicholson@gmail.com )
63
63
64
64
### Contributors not included in github history ###
@@ -114,7 +114,7 @@ Historic release notes
114
114
- Standard streams can be optionally compiled off by defining UNITTEST_USE_CUSTOM_STREAMS
115
115
in Config.h
116
116
- Added named test suites
117
- - Added CHECK_ARRAY2D_CLOSE
117
+ - Added CHECK_ARRAY2D_CLOSE
118
118
- Posix library name is libUnitTest++.a now
119
119
- Floating point numbers are postfixed with 'f' in the failure reports
120
120
Original file line number Diff line number Diff line change 1
- version : 1.6.0 .{build}
1
+ version : 1.6.1 .{build}
2
2
3
3
os :
4
4
- Windows Server 2012 R2
Original file line number Diff line number Diff line change 2
2
# Process this file with autoconf to produce a configure script.
3
3
4
4
AC_PREREQ ( [ 2.69] )
5
- AC_INIT ( [ UnitTest++] , [ 1.6.0] , [ pjohnmeyer@gmail.com] )
5
+ AC_INIT ( [ UnitTest++] ,
6
+ m4_esyscmd_s ( [ git describe --tags | cut -c2-] ) ,
7
+ [ pjohnmeyer@gmail.com] ,
8
+ [ unittest-cpp] )
9
+
6
10
AC_CONFIG_SRCDIR ( [ UnitTest++/TestDetails.cpp] )
7
11
AC_CONFIG_MACRO_DIR ( [ m4] )
8
12
AC_CONFIG_HEADERS ( [ config.h] )
Original file line number Diff line number Diff line change 1
1
check_PROGRAMS = UnitTest++/TestUnitTest++
2
- UnitTest___TestUnitTest___SOURCES = tests/Main.cpp tests/TestAssertHandler.cpp tests/TestCheckMacros.cpp tests/TestChecks.cpp tests/TestCompositeTestReporter.cpp tests/TestCurrentTest.cpp tests/TestDeferredTestReporter.cpp tests/TestExceptions.cpp tests/TestMemoryOutStream.cpp tests/TestRequireMacrosWithExceptionsOff.cpp tests/TestRequireMacrosWithExceptionsOn.cpp tests/TestTest.cpp tests/TestTestList.cpp tests/TestTestMacros.cpp tests/TestTestResults.cpp tests/TestTestRunner.cpp tests/TestTestSuite.cpp tests/TestTimeConstraint.cpp tests/TestTimeConstraintMacro.cpp tests/TestUnitTestPP.cpp tests/TestXmlTestReporter.cpp
2
+
3
+ UnitTest___TestUnitTest___SOURCES = tests/Main.cpp tests/TestAssertHandler.cpp tests/TestCheckMacros.cpp tests/TestChecks.cpp tests/TestCompositeTestReporter.cpp tests/TestCurrentTest.cpp tests/TestDeferredTestReporter.cpp tests/TestExceptions.cpp tests/TestMemoryOutStream.cpp tests/TestRequireMacrosWithExceptionsOff.cpp tests/TestRequireMacrosWithExceptionsOn.cpp tests/TestTest.cpp tests/TestTestList.cpp tests/TestTestMacros.cpp tests/TestTestResults.cpp tests/TestTestRunner.cpp tests/TestTestSuite.cpp tests/TestTimeConstraint.cpp tests/TestTimeConstraintMacro.cpp tests/TestUnitTestPP.cpp tests/TestXmlTestReporter.cpp tests/RecordingReporter.h tests/ScopedCurrentTest.h
3
4
UnitTest___TestUnitTest___LDADD = UnitTest++/libUnitTest++.la
4
5
TESTS = UnitTest++/TestUnitTest++
You can’t perform that action at this time.
0 commit comments