| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- #!/bin/sh
- #This file left here only for reference
- #Actual script have to be run via CTest as
- #`ctest -L API`. It will prepare the index with indexer,
- # and then run smoke as here.
- #
- # Actual related fileas are CMakeLists.txt and smoke.cmake
- [ "z$FAILLOG" = "z" ] && FAILLOG="/tmp/faillog"
- DIFF='smoke_diff.txt'
- RES='smoke_test.txt'
- REF='smoke_ref.txt'
- SHELL='/bin/sh'
- LINE='-----------------------------\n'
- die()
- {
- cat $FAILLOG
- echo $LINE
- [ ! "z$2" = "z" ] && { eval $2; echo "$LINE"; }
- echo "C API:$1"
- [ -e "$FAILLOG" ] && rm $FAILLOG
-
- stop="../../src/searchd -c smoke_test.conf --stop"
- echo "Executing: $stop\n">$FAILLOG
- eval "$stop" 1>>$FAILLOG 2>&1
- exit 1
- }
- cmd ()
- {
- echo "Executing: $1\n">$FAILLOG
- eval $1 1>>$FAILLOG 2>&1 || die "$2" "$3"
- }
- cmd "$SHELL ./configure --with-debug" "configure failed"
- cmd "make clean" "make clean failed"
- cmd "make" "make failed"
- cmd "../../src/indexer -c smoke_test.conf --all" "indexing failed"
- cmd "../../src/searchd -c smoke_test.conf --test" "searchd start failed"
- cmd "sleep 1s"
- cmd "./test --smoke --port 10312>$RES" "test --smoke --port 10312 failed"
- cmd "../../src/searchd -c smoke_test.conf --stop" "searchd stop failed"
- cmd "make clean" " "
- cmd "diff --unified=3 $REF $RES >$DIFF" 'diff failed' "cat $DIFF"
- rm $RES
- rm $DIFF
- rm $FAILLOG
- echo "all ok"
- exit 0
|