summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/CMakeLists.txt2
-rw-r--r--test/README.md4
-rwxr-xr-xtest/generate_xcframework.sh2
-rw-r--r--test/project/example.gdextension4
-rwxr-xr-xtest/run-tests.sh4
5 files changed, 8 insertions, 8 deletions
diff --git a/test/CMakeLists.txt b/test/CMakeLists.txt
index f1c4c0d..7c2e984 100644
--- a/test/CMakeLists.txt
+++ b/test/CMakeLists.txt
@@ -133,7 +133,7 @@ if(CMAKE_VERSION VERSION_GREATER "3.13")
)
else()
target_link_libraries(${PROJECT_NAME}
- ${CPP_BINDINGS_PATH}/bin/libgodot-cpp.${SYSTEM_NAME}.${BUILD_TYPE}$<$<NOT:$<PLATFORM_ID:Android>>:.${BITS}>.a
+ ${CPP_BINDINGS_PATH}/bin/libredot-cpp.${SYSTEM_NAME}.${BUILD_TYPE}$<$<NOT:$<PLATFORM_ID:Android>>:.${BITS}>.a
)
endif()
diff --git a/test/README.md b/test/README.md
index 5313e33..6ed0a05 100644
--- a/test/README.md
+++ b/test/README.md
@@ -1,6 +1,6 @@
-# godot-cpp integration test
+# redot-cpp integration test
-This project is used to perform integration testing of the godot-cpp
+This project is used to perform integration testing of the redot-cpp
extension, to validate PRs and implemented APIs.
## License
diff --git a/test/generate_xcframework.sh b/test/generate_xcframework.sh
index 7adddff..653cb56 100755
--- a/test/generate_xcframework.sh
+++ b/test/generate_xcframework.sh
@@ -4,4 +4,4 @@ scons arch=universal ios_simulator=yes platform=ios target=$1 $2
scons arch=arm64 ios_simulator=no platform=ios target=$1 $2
xcodebuild -create-xcframework -library ./project/bin/libgdexample.ios.$1.a -library ./project/bin/libgdexample.ios.$1.simulator.a -output ./project/bin/libgdexample.ios.$1.xcframework
-xcodebuild -create-xcframework -library ../bin/libgodot-cpp.ios.$1.arm64.a -library ../bin/libgodot-cpp.ios.$1.universal.simulator.a -output ./project/bin/libgodot-cpp.ios.$1.xcframework
+xcodebuild -create-xcframework -library ../bin/libredot-cpp.ios.$1.arm64.a -library ../bin/libredot-cpp.ios.$1.universal.simulator.a -output ./project/bin/libredot-cpp.ios.$1.xcframework
diff --git a/test/project/example.gdextension b/test/project/example.gdextension
index 8e2f794..51c6f37 100644
--- a/test/project/example.gdextension
+++ b/test/project/example.gdextension
@@ -36,8 +36,8 @@ web.release.wasm32 = "res://bin/libgdexample.web.template_release.wasm32.nothrea
[dependencies]
ios.debug = {
- "res://bin/libgodot-cpp.ios.template_debug.xcframework": ""
+ "res://bin/libredot-cpp.ios.template_debug.xcframework": ""
}
ios.release = {
- "res://bin/libgodot-cpp.ios.template_release.xcframework": ""
+ "res://bin/libredot-cpp.ios.template_release.xcframework": ""
}
diff --git a/test/run-tests.sh b/test/run-tests.sh
index 728f6d4..d6e4ea3 100755
--- a/test/run-tests.sh
+++ b/test/run-tests.sh
@@ -1,11 +1,11 @@
#!/bin/bash
-GODOT=${GODOT:-godot}
+REDOT=${REDOT:-redot}
END_STRING="==== TESTS FINISHED ===="
FAILURE_STRING="******** FAILED ********"
-OUTPUT=$($GODOT --path project --debug --headless --quit)
+OUTPUT=$($REDOT --path project --debug --headless --quit)
ERRCODE=$?
echo "$OUTPUT"