f16a554154
We were running into issues where the documents grew too large for being passed as a string to emacs, and we need to handle #+setupfile so we need to start handling org-mode documents as files and not just as anonymous streams of text. The anonymous stream of text handling will remain because the automated tests use it.
24 lines
534 B
Bash
Executable File
24 lines
534 B
Bash
Executable File
#!/usr/bin/env bash
|
|
#
|
|
# Time running a single parse without invoking a compare with emacs.
|
|
set -euo pipefail
|
|
IFS=$'\n\t'
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
: ${PROFILE:="release-lto"}
|
|
|
|
cd "$DIR/../"
|
|
|
|
function main {
|
|
local additional_flags=()
|
|
if [ "$PROFILE" = "dev" ] || [ "$PROFILE" = "debug" ]; then
|
|
PROFILE="debug"
|
|
else
|
|
additional_flags+=(--profile "$PROFILE")
|
|
fi
|
|
cargo build --no-default-features "${additional_flags[@]}"
|
|
time ./target/${PROFILE}/parse
|
|
}
|
|
|
|
main "${@}"
|