From 7a5fe3b2b0875dede6d4828c4d8979d7913fed8f Mon Sep 17 00:00:00 2001 From: MihailRis Date: Sat, 26 Oct 2024 17:32:37 +0300 Subject: [PATCH] update vec3 test & update macos workflow --- .github/workflows/macos.yml | 2 +- test/coders/vec3.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/macos.yml b/.github/workflows/macos.yml index 1f9675ca..e4ddf55a 100644 --- a/.github/workflows/macos.yml +++ b/.github/workflows/macos.yml @@ -37,7 +37,7 @@ jobs: run: ./dev/fix_dylibs.sh VoxelEngine Release build - name: Run tests - run: ctest --test-dir build + run: ctest --output-on-failure --test-dir build - name: Create DMG run: | diff --git a/test/coders/vec3.cpp b/test/coders/vec3.cpp index a29e22b0..cb699bc3 100644 --- a/test/coders/vec3.cpp +++ b/test/coders/vec3.cpp @@ -5,7 +5,7 @@ TEST(VEC3, Decode) { auto file = std::filesystem::u8path( - "../res/content/base/models/block.vec3" + "../res/models/block.vec3" ); auto bytes = files::read_bytes_buffer(file); auto model = vec3::load(file.u8string(), bytes);