'Generic Commit'
Some checks failed
dropshell-build / build (linux/arm64) (push) Has been cancelled
dropshell-build / build (linux/amd64) (push) Has been cancelled

This commit is contained in:
Your Name
2025-06-15 08:59:00 +12:00
parent 5de0f19769
commit a075d45ed3
6 changed files with 25 additions and 62 deletions

View File

@ -8,9 +8,9 @@ echo ""
echo "testing test_libs..."
# Run test_libs
if [ -f "${SCRIPT_DIR}/output/native/test_libs" ]; then
if [ -f "${SCRIPT_DIR}/output/test_libs" ]; then
echo "Running test_libs..."
"${SCRIPT_DIR}/output/native/test_libs"
"${SCRIPT_DIR}/output/test_libs"
echo "test_libs completed successfully!"
else
echo "test_libs binary not found"
@ -21,21 +21,10 @@ echo ""
echo "Testing ipdemo..."
# Check if ipdemo exists
if [ -f "${SCRIPT_DIR}/output/native/ipdemo" ]; then
if [ -f "${SCRIPT_DIR}/output/ipdemo" ]; then
echo "Running ipdemo..."
"${SCRIPT_DIR}/output/native/ipdemo" || echo "ipdemo test completed!"
"${SCRIPT_DIR}/output/ipdemo" || echo "ipdemo test completed!"
else
echo "ipdemo binary not found - run ./build.sh first"
fi
echo ""
echo "Testing cross-architecture builds..."
# Verify the binary was built and check its architecture
if [ -f "${SCRIPT_DIR}/output/arm64/ipdemo" ]; then
echo "aarch64 ipdemo binary built successfully!"
echo "Architecture info:"
file "${SCRIPT_DIR}/output/arm64/ipdemo" || true
else
echo "aarch64 ipdemo binary not found"
fi