Skip to content
Snippets Groups Projects
Commit 213060e2 authored by David Georg Reichelt's avatar David Georg Reichelt
Browse files

Create result dir if not existing

parent 081a092c
No related branches found
No related tags found
No related merge requests found
#!/bin/bash
RESULTS_DIR=results-opentelemetry/
mkdir -p $RESULTS_DIR
for depth in 2 4 8 16 32 64 128
do
export RECURSION_DEPTH=$depth
echo "Running $depth"
./benchmark.sh &> results-opentelemetry/$depth.txt
mv results-opentelemetry/results.zip results-opentelemetry/results-$RECURSION_DEPTH.zip
mv $RESULTS_DIR/results.zip $RESULTS_DIR/results-$RECURSION_DEPTH.zip
done
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment