mirror of
https://github.com/crate-ci/typos.git
synced 2024-11-21 16:41:01 -05:00
a3fabbd855
Fixtures were taken from ripgrep. The framework was rewritten to be more composable (rather than a single python script that had both generic fixtures and selection of units-under-test) One of the goals was to completely generate a report that would include all relevant information for reproducing the results or adding nuance for when results change. Having problems with subtitles_en, so its not fully included atm.
74 lines
1.3 KiB
Bash
Executable file
74 lines
1.3 KiB
Bash
Executable file
#!/usr/bin/env bash
|
|
# Pre-reqs:
|
|
# - git
|
|
# - rust
|
|
set -e
|
|
|
|
FIXTURE_DIR="ripgrep_built"
|
|
|
|
if [[ $# -eq 0 ]]; then
|
|
exit 1
|
|
fi
|
|
command=$1
|
|
|
|
base_dir="/tmp/benchsuite"
|
|
if [[ $# -ge 2 ]]; then
|
|
base_dir=$2
|
|
fi
|
|
|
|
current_dir=`dirname $(readlink -f $0)`
|
|
root_dir="${base_dir}/$FIXTURE_DIR"
|
|
out_file="$root_dir"
|
|
log_path="${base_dir}/$FIXTURE_DIR.log"
|
|
|
|
function path() {
|
|
if [[ -e $out_file ]]; then
|
|
echo $out_file
|
|
fi
|
|
}
|
|
|
|
function clear() {
|
|
rm -Rf ${root_dir} ${log_path}
|
|
}
|
|
|
|
function download() {
|
|
if [[ ! -e $out_file ]]; then
|
|
echo "Downloading $FIXTURE_DIR" >> ${log_path}
|
|
in_file=`$current_dir/ripgrep_clean.sh download $base_dir`
|
|
cp -R $in_file $out_file
|
|
# We want to build the kernel because the process of building it produces
|
|
# a lot of junk in the repository that a search tool probably shouldn't
|
|
# touch.
|
|
pushd $root_dir >> ${log_path}
|
|
cargo check >> ${log_path}
|
|
popd >> ${log_path}
|
|
fi
|
|
}
|
|
|
|
function version() {
|
|
if [[ -e $out_file ]]; then
|
|
pushd $root_dir >> ${log_path}
|
|
echo "rg `git rev-parse HEAD`"
|
|
popd >> ${log_path}
|
|
fi
|
|
}
|
|
|
|
case $command in
|
|
path)
|
|
echo $(path)
|
|
;;
|
|
clear)
|
|
echo $(clear)
|
|
;;
|
|
version)
|
|
echo $(version)
|
|
;;
|
|
download)
|
|
download
|
|
echo $(path)
|
|
;;
|
|
*)
|
|
>&2 echo "Invalid command: $command"
|
|
exit 1
|
|
;;
|
|
esac
|