Skip to content

Commit

Permalink
Update packages
Browse files Browse the repository at this point in the history
  • Loading branch information
Loki-Astari committed May 30, 2024
1 parent e8170c5 commit 544077b
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
with:
submodules: recursive
token: ${{ secrets.GITHUB_TOKEN }}
- run: ./configure --enable-dark-mode --with-magicenum-header-only-root=/tmp/magic_enum/include
- run: ./configure --enable-dark-mode --with-magicenum-header-only-root=/tmp/magic_enum/include/magic_enum
- run: |
cat Makefile.config
cat third/ThorsStorage/Makefile.config
Expand Down Expand Up @@ -86,7 +86,7 @@ jobs:
shell: msys2 {0}
env:
MSYS: winsymlinks:nativestrict
run: ./configure --disable-colour --disable-vera --with-magicenum-header-only-root=/tmp/magic_enum/include --with-yaml-root=/mingw64/ --disable-test-with-locked-file || cat config.log
run: ./configure --disable-colour --disable-vera --with-magicenum-header-only-root=/tmp/magic_enum/include/magic_enum --with-yaml-root=/mingw64/ --disable-test-with-locked-file
- name: Make
shell: msys2 {0}
run: make
Expand Down
2 changes: 1 addition & 1 deletion build
1 change: 1 addition & 0 deletions src/Serialize/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@ LDLIBS_EXTERN_BUILD += MagicEnum yaml
LINK_LIBS = ThorsLogging
UNITTEST_LINK_LIBS = ThorsLogging
UNITTEST_LDLIBS = -ldl
FILE_WARNING_FLAGS += -Wno-type-limits

include $(THORSANVIL_ROOT)/build/tools/Makefile

Expand Down
4 changes: 2 additions & 2 deletions src/Serialize/test/ExceptionWhilePrintingTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ TEST(ExceptionWhilePrintingTest, JsonThrowStream)

std::ios_base::iostate state = stream.rdstate();
EXPECT_EQ(thrown, true);
EXPECT_EQ(state, std::ios::eofbit | std::ios::failbit);
EXPECT_NE(0, state & std::ios::failbit);
}


Expand All @@ -176,7 +176,7 @@ TEST(ExceptionWhilePrintingTest, JsonThrowStreamCatchEnabled)

std::ios_base::iostate state = stream.rdstate();
EXPECT_EQ(thrown, false);
EXPECT_EQ(state, std::ios::eofbit | std::ios::failbit);
EXPECT_NE(0, state & std::ios::failbit);
}


Expand Down
2 changes: 1 addition & 1 deletion third/ThorsSocket
2 changes: 1 addition & 1 deletion third/ThorsStorage

0 comments on commit 544077b

Please sign in to comment.