Skip to content

Commit

Permalink
test macOS abort in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
FooBarWidget committed Oct 13, 2024
1 parent fb3d4cf commit 29fad4d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 2 additions & 0 deletions test/cxx/Base64DecodingTest.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#include <Exceptions.h>
#include <TestSupport.h>
#include <modp_b64.h>

Expand All @@ -17,6 +18,7 @@ namespace tut {

/***** Valid base64 *****/
TEST_METHOD(1) {
throw new SystemException("test", 1);
ensure_equals(decode(""),"");
}
TEST_METHOD(2) {
Expand Down
2 changes: 0 additions & 2 deletions test/cxx/DateParsingTest.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
#include <Exceptions.h>
#include <TestSupport.h>
#include <cstring>
#include <StrIntTools/DateParsing.h>
Expand Down Expand Up @@ -35,7 +34,6 @@ namespace tut {
ensure_equals(tm.tm_min, 20);
ensure_equals(tm.tm_sec, 46);
ensure_equals(zone, 0);
throw new SystemException("test", 1);
ensure_equals(parsedDateToTimestamp(tm, zone), 1420734046);
}

Expand Down

0 comments on commit 29fad4d

Please sign in to comment.