Suppressed expected errors for uncached resources.
This commit is contained in:
parent
7529c0bec5
commit
53a95d6a00
1 changed files with 5 additions and 0 deletions
|
@ -38,6 +38,8 @@
|
||||||
|
|
||||||
#include "thirdparty/doctest/doctest.h"
|
#include "thirdparty/doctest/doctest.h"
|
||||||
|
|
||||||
|
#include "tests/test_macros.h"
|
||||||
|
|
||||||
namespace TestResource {
|
namespace TestResource {
|
||||||
|
|
||||||
TEST_CASE("[Resource] Duplication") {
|
TEST_CASE("[Resource] Duplication") {
|
||||||
|
@ -124,9 +126,12 @@ TEST_CASE("[Resource] Breaking circular references on save") {
|
||||||
const String save_path_binary = OS::get_singleton()->get_cache_path().path_join("resource.res");
|
const String save_path_binary = OS::get_singleton()->get_cache_path().path_join("resource.res");
|
||||||
const String save_path_text = OS::get_singleton()->get_cache_path().path_join("resource.tres");
|
const String save_path_text = OS::get_singleton()->get_cache_path().path_join("resource.tres");
|
||||||
ResourceSaver::save(resource_a, save_path_binary);
|
ResourceSaver::save(resource_a, save_path_binary);
|
||||||
|
// Suppress expected errors caused by the resources above being uncached.
|
||||||
|
ERR_PRINT_OFF;
|
||||||
ResourceSaver::save(resource_a, save_path_text);
|
ResourceSaver::save(resource_a, save_path_text);
|
||||||
|
|
||||||
const Ref<Resource> &loaded_resource_a_binary = ResourceLoader::load(save_path_binary);
|
const Ref<Resource> &loaded_resource_a_binary = ResourceLoader::load(save_path_binary);
|
||||||
|
ERR_PRINT_ON;
|
||||||
CHECK_MESSAGE(
|
CHECK_MESSAGE(
|
||||||
loaded_resource_a_binary->get_name() == "A",
|
loaded_resource_a_binary->get_name() == "A",
|
||||||
"The loaded resource name should be equal to the expected value.");
|
"The loaded resource name should be equal to the expected value.");
|
||||||
|
|
Loading…
Reference in a new issue