forked from openSUSE/snapper
-
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.
Merge pull request openSUSE#920 from aschnell/master
usual tiny improvements and cleanup
- Loading branch information
Showing
15 changed files
with
85 additions
and
10 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
0.11.0 | ||
0.11.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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
*.log | ||
*.o | ||
*.test | ||
*.trs | ||
test-suite.log |
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,14 @@ | ||
# | ||
# Makefile.am for snapper/dbus/testsuite | ||
# | ||
|
||
AM_CPPFLAGS = -I$(top_srcdir) $(DBUS_CFLAGS) | ||
|
||
LDADD = ../../snapper/libsnapper.la ../libdbus.la -lboost_unit_test_framework | ||
|
||
check_PROGRAMS = escape.test | ||
|
||
TESTS = $(check_PROGRAMS) | ||
|
||
AM_DEFAULT_SOURCE_EXT = .cc | ||
|
File renamed without changes.
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,3 +1,9 @@ | ||
snapper (0.11.1) stable; urgency=low | ||
|
||
* Updated to version 0.11.1 | ||
|
||
-- Arvin Schnell <[email protected]> Fri, 5 Jul 2024 14:33:53 +0000 | ||
|
||
snapper (0.11.0) stable; urgency=low | ||
|
||
* Updated to version 0.11.0 | ||
|
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 |
---|---|---|
|
@@ -3,6 +3,7 @@ Fri Jul 05 16:03:42 CEST 2024 - [email protected] | |
|
||
- handle content-length of stomp in zypper plugin | ||
(gh#openSUSE/snapper#918) | ||
- version 0.11.1 | ||
|
||
------------------------------------------------------------------- | ||
Wed May 22 17:21:18 CEST 2024 - [email protected] | ||
|
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,19 @@ | ||
|
||
#define BOOST_TEST_DYN_LINK | ||
#define BOOST_TEST_MODULE snapper | ||
|
||
#include <boost/test/unit_test.hpp> | ||
|
||
#include "../Stomp.h" | ||
|
||
|
||
using namespace std; | ||
using namespace Stomp; | ||
|
||
|
||
BOOST_AUTO_TEST_CASE(cr) | ||
{ | ||
BOOST_CHECK_EQUAL(Stomp::strip_cr("hello"), "hello"); | ||
BOOST_CHECK_EQUAL(Stomp::strip_cr("hello\r"), "hello"); | ||
BOOST_CHECK_EQUAL(Stomp::strip_cr("hello\r\n"), "hello\r\n"); | ||
} |
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