aboutsummaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/CMakeLists.txt1
-rw-r--r--tests/spritesheet/test.cpp3
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt
index 707492aa..5b7d6fd3 100644
--- a/tests/CMakeLists.txt
+++ b/tests/CMakeLists.txt
@@ -33,4 +33,3 @@ make_test(syncqueue 1)
make_test(active 1)
make_test(struct ${SIMULATION_RUNS})
make_test(engine ${SIMULATION_RUNS})
-make_test(render ${SIMULATION_RUNS})
diff --git a/tests/spritesheet/test.cpp b/tests/spritesheet/test.cpp
index 7fe4e77f..1955d63e 100644
--- a/tests/spritesheet/test.cpp
+++ b/tests/spritesheet/test.cpp
@@ -15,7 +15,8 @@ using namespace yage;
TEST(SpriteSheet, Load)
{
- SpriteSheet sp("tests/spritesheet/floor_atlas.png", "tests/spritesheet/floor_atlas.json");
+ yLogDebug << IoManager::parentDirectory(__FILE__) << '\n' << __FILE__;
+ SpriteSheet sp(IoManager::parentDirectory(__FILE__), IoManager::parentDirectory(__FILE__));
ASSERT_TRUE(true);
}