summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorGilles Roudière <gilles.roudiere@gmail.com>2022-10-26 18:23:09 +0200
committerGilles Roudière <gilles.roudiere@gmail.com>2022-12-01 18:20:40 +0100
commitfa4143cdeba7c01454190ef90717b73fa6f5722f (patch)
tree0126adf81b5603ab46a7384bfae8e83c67b9ad67 /tests
parent36bcb8256543fdad71d3f6c7179584ff2591cac6 (diff)
Allow specifying a prefix to automatically detect library files for gdextension exports
Diffstat (limited to 'tests')
-rw-r--r--tests/core/os/test_os.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/tests/core/os/test_os.h b/tests/core/os/test_os.h
index c46da5e156..086f0b9b0c 100644
--- a/tests/core/os/test_os.h
+++ b/tests/core/os/test_os.h
@@ -97,14 +97,14 @@ TEST_CASE("[OS] Feature tags") {
OS::get_singleton()->has_feature("editor"),
"The binary has the \"editor\" feature tag.");
CHECK_MESSAGE(
- !OS::get_singleton()->has_feature("standalone"),
- "The binary does not have the \"standalone\" feature tag.");
+ !OS::get_singleton()->has_feature("template"),
+ "The binary does not have the \"template\" feature tag.");
CHECK_MESSAGE(
- OS::get_singleton()->has_feature("debug"),
- "The binary has the \"debug\" feature tag.");
+ !OS::get_singleton()->has_feature("template_debug"),
+ "The binary does not have the \"template_debug\" feature tag.");
CHECK_MESSAGE(
- !OS::get_singleton()->has_feature("release"),
- "The binary does not have the \"release\" feature tag.");
+ !OS::get_singleton()->has_feature("template_release"),
+ "The binary does not have the \"template_release\" feature tag.");
}
TEST_CASE("[OS] Process ID") {