summaryrefslogtreecommitdiff
path: root/test_single_image.sh
blob: 3dde0de073e9b737d651520244f07a7f2449f11f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/bash
# Test script to verify single image functionality

echo "Building totalrecall..."
go build -o totalrecall ./cmd/totalrecall || exit 1

echo "Testing CLI mode with a single word..."
./totalrecall "котка" || exit 1

echo "Checking generated files..."
ls -la output/котка* 

echo "Test completed successfully!"