#!/bin/bash
# Simple test script for execution engine

echo "Starting execution..."
echo "Current directory: $(pwd)"
echo "Date: $(date)"
echo "User: $USER"

# Test environment variables
if [ -n "$TEST_VAR" ]; then
    echo "TEST_VAR is set to: $TEST_VAR"
fi

# Write to stderr
echo "This is a stderr message" >&2

# Exit with success
echo "Execution completed successfully!"
exit 0