2013-12-06 23:50:58 +01:00
|
|
|
#!/bin/sh
|
|
|
|
|
2013-12-14 15:23:17 +01:00
|
|
|
echo "CONCORDIA RUNNER: Decompressing test file"
|
2013-12-07 00:00:11 +01:00
|
|
|
|
|
|
|
bunzip2 --keep prod/resources/text-files/large.txt.bz2
|
|
|
|
|
2013-12-14 15:23:17 +01:00
|
|
|
echo "CONCORDIA RUNNER: Running Concordia"
|
2013-12-06 23:50:58 +01:00
|
|
|
|
|
|
|
rm prod/resources/temp/*
|
2013-12-14 15:23:17 +01:00
|
|
|
|
|
|
|
echo "CONCORDIA RUNNER: reading from file"
|
2013-12-06 23:50:58 +01:00
|
|
|
./build/concordia-console/concordia-console -c prod/resources/concordia-config/concordia.cfg -r prod/resources/text-files/large.txt
|
2013-12-14 15:23:17 +01:00
|
|
|
echo "CONCORDIA RUNNER: searching for pattern: \"drawn from his own\""
|
2013-12-06 23:50:58 +01:00
|
|
|
./build/concordia-console/concordia-console -c prod/resources/concordia-config/concordia.cfg -s "drawn from his own" -n
|
2013-12-14 15:23:17 +01:00
|
|
|
echo "CONCORDIA RUNNER: searching for pattern: \"it is\""
|
2013-12-06 23:50:58 +01:00
|
|
|
./build/concordia-console/concordia-console -c prod/resources/concordia-config/concordia.cfg -s "it is" -n
|
2013-12-07 00:00:11 +01:00
|
|
|
|
|
|
|
rm prod/resources/text-files/large.txt
|