2015-04-24 11:10:17 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
echo "CONCORDIA RUNNER: Decompressing test file"
|
|
|
|
|
|
|
|
bunzip2 --keep ../prod/resources/text-files/large.txt.bz2
|
|
|
|
|
|
|
|
echo "CONCORDIA RUNNER: Running Concordia"
|
|
|
|
|
|
|
|
rm ../prod/resources/temp/*
|
|
|
|
|
|
|
|
echo "CONCORDIA RUNNER: reading from file"
|
2015-10-16 22:14:11 +02:00
|
|
|
../build/concordia-console/concordia-console -i ../prod/resources/temp/ -c ../prod/resources/concordia-config/concordia.cfg -r ../prod/resources/text-files/large.txt
|
2015-04-24 11:10:17 +02:00
|
|
|
echo "CONCORDIA RUNNER: searching for pattern: \"drawn from his own\""
|
2015-10-16 22:14:11 +02:00
|
|
|
../build/concordia-console/concordia-console -i ../prod/resources/temp/ -c ../prod/resources/concordia-config/concordia.cfg -s "drawn from his own" -n
|
2015-04-24 11:10:17 +02:00
|
|
|
echo "CONCORDIA RUNNER: searching for pattern: \"it is\""
|
2015-10-16 22:14:11 +02:00
|
|
|
../build/concordia-console/concordia-console -i ../prod/resources/temp/ -c ../prod/resources/concordia-config/concordia.cfg -s "it is" -n
|
2015-04-24 11:10:17 +02:00
|
|
|
|
|
|
|
rm ../prod/resources/text-files/large.txt
|