This commit is contained in:
Lily Tsai
2021-02-10 08:39:42 -08:00
commit 34a311648c
63 changed files with 76273 additions and 0 deletions

14
src/main/test-mr-many.sh Normal file
View File

@@ -0,0 +1,14 @@
#!/bin/sh
if [ $# -ne 1 ]; then
echo "Usage: $0 numTrials"
exit 1
fi
# Note: because the socketID is based on the current userID,
# ./test-mr.sh cannot be run in parallel
runs=$1
chmod +x test-mr.sh
for i in $(seq 1 $runs); do
timeout -k 2s 900s ./test-mr.sh
done