diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2023-03-19 00:03:12 +0100 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2023-03-19 00:03:46 +0100 |
commit | f3f99d56ad6cd66e74e6958d46a12cc56f584984 (patch) | |
tree | 4206d13f3091f822d7ee3b34ced82163ed7f50cf /test/serializer.cpp | |
parent | 4d9a82b720c8ce74b94f43f72ddd819ef21abbdf (diff) |
move some deserialize path's asserts to soft asserts
Diffstat (limited to 'test/serializer.cpp')
-rw-r--r-- | test/serializer.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/serializer.cpp b/test/serializer.cpp index 87f11b4a..5a520dbb 100644 --- a/test/serializer.cpp +++ b/test/serializer.cpp @@ -106,12 +106,14 @@ void test_serializer(StringView input, StringView tmp) void test_app::test_serializer_1() { + fm_assert(Path::exists("../CMakeCache.txt")); constexpr auto tmp_filename = "../test/test-serializer1.dat"_s; test_serializer({}, tmp_filename); } void test_app::test_serializer_2() { + fm_assert(Path::exists("../CMakeCache.txt")); constexpr auto tmp_filename = "../test/test-serializer2.dat"_s; constexpr auto dir = "../test/save/"_s; using LF = Path::ListFlag; |