2021-01-13 09:49:52 +00:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -e -x
|
|
|
|
|
|
|
|
dpkg -i package_folder/clickhouse-common-static_*.deb
|
|
|
|
dpkg -i package_folder/clickhouse-common-static-dbg_*.deb
|
|
|
|
dpkg -i package_folder/clickhouse-server_*.deb
|
|
|
|
dpkg -i package_folder/clickhouse-client_*.deb
|
|
|
|
|
|
|
|
service clickhouse-server start && sleep 5
|
|
|
|
|
|
|
|
cd /sqlancer/sqlancer-master
|
|
|
|
|
2021-03-23 04:26:30 +00:00
|
|
|
export TIMEOUT=300
|
2021-01-14 15:37:15 +00:00
|
|
|
export NUM_QUERIES=1000
|
|
|
|
|
2021-01-21 14:53:28 +00:00
|
|
|
( java -jar target/sqlancer-*.jar --num-threads 10 --timeout-seconds $TIMEOUT --num-queries $NUM_QUERIES --username default --password "" clickhouse --oracle TLPWhere | tee /test_output/TLPWhere.out ) 3>&1 1>&2 2>&3 | tee /test_output/TLPWhere.err
|
|
|
|
( java -jar target/sqlancer-*.jar --num-threads 10 --timeout-seconds $TIMEOUT --num-queries $NUM_QUERIES --username default --password "" clickhouse --oracle TLPGroupBy | tee /test_output/TLPGroupBy.out ) 3>&1 1>&2 2>&3 | tee /test_output/TLPGroupBy.err
|
|
|
|
( java -jar target/sqlancer-*.jar --num-threads 10 --timeout-seconds $TIMEOUT --num-queries $NUM_QUERIES --username default --password "" clickhouse --oracle TLPHaving | tee /test_output/TLPHaving.out ) 3>&1 1>&2 2>&3 | tee /test_output/TLPHaving.err
|
|
|
|
( java -jar target/sqlancer-*.jar --num-threads 10 --timeout-seconds $TIMEOUT --num-queries $NUM_QUERIES --username default --password "" clickhouse --oracle TLPWhere --oracle TLPGroupBy | tee /test_output/TLPWhereGroupBy.out ) 3>&1 1>&2 2>&3 | tee /test_output/TLPWhereGroupBy.err
|
|
|
|
( java -jar target/sqlancer-*.jar --num-threads 10 --timeout-seconds $TIMEOUT --num-queries $NUM_QUERIES --username default --password "" clickhouse --oracle TLPDistinct | tee /test_output/TLPDistinct.out ) 3>&1 1>&2 2>&3 | tee /test_output/TLPDistinct.err
|
|
|
|
( java -jar target/sqlancer-*.jar --num-threads 10 --timeout-seconds $TIMEOUT --num-queries $NUM_QUERIES --username default --password "" clickhouse --oracle TLPAggregate | tee /test_output/TLPAggregate.out ) 3>&1 1>&2 2>&3 | tee /test_output/TLPAggregate.err
|
2021-01-15 14:36:27 +00:00
|
|
|
|
2021-01-19 14:37:27 +00:00
|
|
|
service clickhouse-server stop && sleep 10
|
|
|
|
|
2021-01-19 10:31:23 +00:00
|
|
|
ls /var/log/clickhouse-server/
|
2021-01-19 11:42:56 +00:00
|
|
|
tar czf /test_output/logs.tar.gz -C /var/log/clickhouse-server/ .
|
2021-01-19 09:48:05 +00:00
|
|
|
tail -n 1000 /var/log/clickhouse-server/stderr.log > /test_output/stderr.log
|
|
|
|
tail -n 1000 /var/log/clickhouse-server/stdout.log > /test_output/stdout.log
|
|
|
|
tail -n 1000 /var/log/clickhouse-server/clickhouse-server.log > /test_output/clickhouse-server.log
|
2021-01-19 14:37:27 +00:00
|
|
|
|
2021-02-26 12:58:13 +00:00
|
|
|
/process_sqlancer_result.py || echo -e "failure\tCannot parse results" > /test_output/check_status.tsv
|
2021-01-19 14:37:27 +00:00
|
|
|
ls /test_output
|