From d54adcc692114e5f818b0bab9e9cd444e5991db4 Mon Sep 17 00:00:00 2001 From: MayaTheShy Date: Sat, 8 Nov 2025 23:42:43 -0500 Subject: [PATCH] fix: update client binary check and simulation mode test to reflect project rename to starworld --- ci-test.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ci-test.sh b/ci-test.sh index a03b218..012e676 100755 --- a/ci-test.sh +++ b/ci-test.sh @@ -55,7 +55,11 @@ run_test "C++ Build" "cd build && make -j$(nproc)" run_test "C++ Unit Tests" "./build/stardust-tests" # Verify binaries exist -run_test "Client Binary Exists" "test -f build/stardust-overte-client" +run_test "Client Binary Exists" "test -f build/starworld" + +# Test 5: Verify client can start in simulation mode +echo "TEST: Client Starts (Simulation Mode)" +if timeout 2 env STARWORLD_SIMULATE=1 ./build/starworld > /dev/null 2>&1; then run_test "Bridge Library Exists" "test -f bridge/target/debug/libstardust_bridge.so" # Optional: Quick simulation test (non-blocking)