#!/bin/bash

DIR=$( dirname "$0" )

cd "$DIR"

"$DIR"/test_resolution/test

cat /dev/null > "$DIR"/debug.out

# 200 MB mem usage
"$DIR"/bing_downloader >> "$DIR"/debug.out

# <1 MB mem usage
"$DIR"/remove_duplicates >> "$DIR"/debug.out

# 35 MB mem usage
"$DIR"/delete_all_symlinks >> "$DIR"/debug.out


# Seltsam: Am 26.06.2024 gab es Out Of Memory 512 MB. Warum?!

