#!/bin/sh
set -e

# Test the pure DLPack numpy integration (no TVM required)

# Change to the test directory
cd apps/numpy_dlpack

# Run the pure numpy tests
echo "Running pure-numpy-dlpack tests..."
python3 test_pure_numpy.py

echo "pure-numpy-dlpack tests completed successfully"
