Skip to content

Commit

Permalink
merged vps-audit, vps-audit-negate
Browse files Browse the repository at this point in the history
  • Loading branch information
Geoka1 committed Jan 14, 2025
1 parent 18c8d99 commit a3ba31a
Show file tree
Hide file tree
Showing 6 changed files with 392 additions and 15 deletions.
2 changes: 1 addition & 1 deletion vps-audit/cleanup.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash

rm *.txt
rm vps-audit-processed.out
rm -r outputs
2 changes: 2 additions & 0 deletions vps-audit/hash/vps-audit-negate-processed.hash
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
6b39550762e5222a83afa2eb0e5ff34f18170a26b09abcd9f6104f3967861d60
dfe41d6c2b3a193e77891cf9235850aea31c4d6acff897c0cf6970da97705497
4 changes: 2 additions & 2 deletions vps-audit/hash/vps-audit-processed.hash
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
05652a7062706f7fcf1a8dd3533968098448c630ed6c56bcfe2bb49ef97a3758
42683cc92e7d5f15eb689c53027a61de2d5249c806787011f0540b768f5325d0
6b39550762e5222a83afa2eb0e5ff34f18170a26b09abcd9f6104f3967861d60
dfe41d6c2b3a193e77891cf9235850aea31c4d6acff897c0cf6970da97705497
8 changes: 6 additions & 2 deletions vps-audit/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,12 @@ BENCHMARK_SHELL=${BENCHMARK_SHELL:-bash}
REPO_TOP=$(git rev-parse --show-toplevel)
eval_dir="${REPO_TOP}/vps-audit"
scripts_dir="${eval_dir}/scripts"
main_script="${scripts_dir}/vps-audit.sh"
script_1="${scripts_dir}/vps-audit.sh"
script_2="${scripts_dir}/vps-audit-negate.sh"
mkdir -p "${eval_dir}/outputs"
echo "Starting VPS audit..."
${BENCHMARK_SHELL} "${main_script}"
${BENCHMARK_SHELL} "${script_1}" > "${eval_dir}/outputs/vps-audit.log"
echo $?
echo "Starting VPS audit negate..."
${BENCHMARK_SHELL} "${script_2}" > "${eval_dir}/outputs/vps-audit-negate.log"
echo $?
Loading

0 comments on commit a3ba31a

Please sign in to comment.