-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Load tests #854
Open
kiniry
wants to merge
6
commits into
master
Choose a base branch
from
load-tests
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Load tests #854
Changes from all commits
Commits
Show all changes
6 commits
Select commit
Hold shift + click to select a range
9842344
Snapshot of all load testing infrastructure.
kiniry 1efbb87
Delete contents of administrator table before loading credentials.
kiniry 2430ab4
Removed inappropriate pyc file.
kiniry 8afd875
Flexible benchmarks.bash with convenient output
nealmcb 77fb30c
Label timing results; now in benchmarks.out
nealmcb 0e981f2
Add simple usage, arg check to benchmarks.bash
nealmcb File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
*.out | ||
*.err | ||
*.log |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
#!/bin/sh | ||
./main.py -u http://corla-test.galois.com/api/ reset dos_init > 0.log | ||
for c in 1 2 3 4; do | ||
./main.py -u http://corla-test.galois.com/api/ -c $c county_setup -f large_cvrs.csv -F large_manifest.csv > $c.log & | ||
done & | ||
for c in 5 6 7 8; do | ||
./main.py -u http://corla-test.galois.com/api/ -c $c county_setup -f medium_cvrs.csv -F medium_manifest.csv > $c.log & | ||
done & | ||
for c in 9 10 11 12; do | ||
./main.py -u http://corla-test.galois.com/api/ -c $c county_setup -f small_cvrs.csv -F small_manifest.csv > $c.log & | ||
done & | ||
for job in `jobs -p`; do | ||
wait $job | ||
done | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/bin/sh | ||
./main.py -u http://192.168.24.43/api/ reset dos_init > 0.log | ||
for c in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16; do | ||
./main.py -u http://192.168.24.43/api/ -c $c county_setup -f medium_cvrs.csv -F medium_manifest.csv > $c.log & | ||
done | ||
for job in `jobs -p`; do | ||
wait $job | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/bin/sh | ||
./main.py -u http://corla-test.galois.com/api/ reset dos_init > 0.log | ||
for c in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16; do | ||
./main.py -u http://corla-test.galois.com/api/ -c $c county_setup -f medium_cvrs.csv -F medium_manifest.csv > $c.log & | ||
done | ||
for job in `jobs -p`; do | ||
wait $job | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/bin/sh | ||
./main.py -u http://192.168.24.43/api/ reset dos_init > 0.log | ||
for c in 1; do | ||
./main.py -u http://192.168.24.43/api/ -c $c county_setup -f huge_cvrs.csv -F huge_manifest.csv > $c.log & | ||
done | ||
for job in `jobs -p`; do | ||
wait $job | ||
done | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/bin/sh | ||
./main.py -u http://corla-test.galois.com/api/ reset dos_init > 0.log | ||
for c in 1; do | ||
./main.py -u http://corla-test.galois.com/api/ -c $c county_setup -f huge_cvrs.csv -F huge_manifest.csv > $c.log & | ||
done | ||
for job in `jobs -p`; do | ||
wait $job | ||
done | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/bin/sh | ||
./main.py -u http://corla-test.galois.com/api/ reset dos_init > 0.log | ||
for c in 1; do | ||
./main.py -u http://corla-test.galois.com/api/ -c $c county_setup -f large_cvrs.csv -F large_manifest.csv > $c.log & | ||
done | ||
for job in `jobs -p`; do | ||
wait $job | ||
done | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/bin/sh | ||
time 2-cdos.sh; # 5 5 4 | ||
time 2-cdos.sh; | ||
time 2-cdos.sh; | ||
time 2-cdos.sh; | ||
time 4-cdos.sh; # 8 7 9 | ||
time 4-cdos.sh; | ||
time 4-cdos.sh; | ||
time 8-cdos.sh; # 11 11 13 | ||
time 8-cdos.sh; | ||
time 8-cdos.sh; | ||
time 16-cdos.sh; # 23 22 24 | ||
time 16-cdos.sh; | ||
time 16-cdos.sh; | ||
time 32-cdos.sh; # 67 40 57 | ||
time 32-cdos.sh; | ||
time 32-cdos.sh; | ||
time 64-cdos.sh; # 159 | ||
time 64-cdos.sh; | ||
time 64-cdos.sh; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
#!/bin/sh | ||
time 2.sh; | ||
time 2.sh; | ||
time 2.sh; | ||
time 2.sh; | ||
time 4.sh; | ||
time 4.sh; | ||
time 4.sh; | ||
time 8.sh; | ||
time 8.sh; | ||
time 8.sh; | ||
time 16.sh; | ||
time 16.sh; | ||
time 16.sh; | ||
time 32.sh; | ||
time 32.sh; | ||
time 32.sh; | ||
time 64.sh; | ||
time 64.sh; | ||
time 64.sh; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/bin/sh | ||
./main.py -u http://192.168.24.43/api/ reset dos_init > 0.log | ||
for c in 1 2; do | ||
./main.py -u http://192.168.24.43/api/ -c $c county_setup -f medium_cvrs.csv -F medium_manifest.csv > $c.log & | ||
done | ||
for job in `jobs -p`; do | ||
wait $job | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/bin/sh | ||
./main.py -u http://corla-test.galois.com/api/ reset dos_init > 0.log | ||
for c in 1 2; do | ||
./main.py -u http://corla-test.galois.com/api/ -c $c county_setup -f medium_cvrs.csv -F medium_manifest.csv > $c.log & | ||
done | ||
for job in `jobs -p`; do | ||
wait $job | ||
done |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
#!/bin/sh | ||
# argument 1 is delay between simulated user interactions (in seconds) | ||
# argument 2 is delay between county starts (in seconds) | ||
if [ "$#" != "2" ]; then | ||
echo "Usage: upload_script.sh <user delay> <county start delay>" | ||
echo "See script source for details." | ||
exit | ||
fi | ||
./main.py -u http://corla-test.galois.com/api/ reset dos_init > 0.log | ||
for c in 1 2 3 4 5 6 7 8; do | ||
./main.py -u http://corla-test.galois.com/api/ -T $1 -c $c county_setup -f small_cvrs.csv -F small_manifest.csv > $c.log & | ||
sleep $((RANDOM % $2 + 1)); | ||
done & | ||
for c in 9 10 11 12 13 14 15 16; do | ||
./main.py -u http://corla-test.galois.com/api/ -T $1 -c $c county_setup -f medium_cvrs.csv -F medium_manifest.csv > $c.log & | ||
sleep $((RANDOM % $2 + 1)); | ||
done & | ||
for c in 17 18; do | ||
./main.py -u http://corla-test.galois.com/api/ -T $1 -c $c county_setup -f large_cvrs.csv -F large_manifest.csv > $c.log & | ||
sleep $((RANDOM % $2 + 1)); | ||
done & | ||
for c in 19 20; do | ||
./main.py -u http://corla-test.galois.com/api/ -T 3 -c $c county_setup -f huge_cvrs.csv -F huge_manifest.csv > $c.log & | ||
sleep $((RANDOM % 3 + 1)); | ||
done & | ||
for job in `jobs -p`; do | ||
wait $job | ||
done | ||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/bin/sh | ||
./main.py -u http://192.168.24.43/api/ reset dos_init > 0.log | ||
for c in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32; do | ||
./main.py -u http://192.168.24.43/api/ -c $c county_setup -f medium_cvrs.csv -F medium_manifest.csv > $c.log & | ||
done | ||
for job in `jobs -p`; do | ||
wait $job | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/bin/sh | ||
./main.py -u http://corla-test.galois.com/api/ reset dos_init > 0.log | ||
for c in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32; do | ||
./main.py -u http://corla-test.galois.com/api/ -c $c county_setup -f medium_cvrs.csv -F medium_manifest.csv > $c.log & | ||
done | ||
for job in `jobs -p`; do | ||
wait $job | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/bin/sh | ||
./main.py -u http://192.168.24.43/api/ reset dos_init > 0.log | ||
for c in 1 2 3 4; do | ||
./main.py -u http://192.168.24.43/api/ -c $c county_setup -f medium_cvrs.csv -F medium_manifest.csv > $c.log & | ||
done | ||
for job in `jobs -p`; do | ||
wait $job | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/bin/sh | ||
./main.py -u http://corla-test.galois.com/api/ reset dos_init > 0.log | ||
for c in 1 2 3 4; do | ||
./main.py -u http://corla-test.galois.com/api/ -c $c county_setup -f medium_cvrs.csv -F medium_manifest.csv > $c.log & | ||
done | ||
for job in `jobs -p`; do | ||
wait $job | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/bin/sh | ||
./main.py -u http://corla-test.galois.com/api/ reset dos_init > 0.log | ||
for c in 1 2 3 4; do | ||
./main.py -u http://corla-test.galois.com/api/ -c $c county_setup -f large_cvrs.csv -F large_manifest.csv > $c.log & | ||
done | ||
for job in `jobs -p`; do | ||
wait $job | ||
done | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/bin/sh | ||
./main.py -u http://corla-test.galois.com/api/ reset dos_init > 0.log | ||
for c in 1 2 3 4; do | ||
./main.py -u http://corla-test.galois.com/api/ -c $c county_setup -f medium_cvrs.csv -F medium_manifest.csv > $c.log & | ||
done | ||
for job in `jobs -p`; do | ||
wait $job | ||
done |
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
#!/bin/sh | ||
# argument 1 is delay between simulated user interactions (in seconds) | ||
# argument 2 is delay between county starts (in seconds) | ||
if [ "$#" != "2" ]; then | ||
echo "Usage: upload_script.sh <user delay> <county start delay>" | ||
echo "See script source for details." | ||
exit | ||
fi | ||
./main.py -u http://192.168.24.43/api/ reset dos_init > 0.log | ||
for c in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20; do | ||
./main.py -u http://192.168.24.43/api/ -T $1 -c $c county_setup -f 20.csv -F small_manifest.csv > $c.log & | ||
sleep $((RANDOM % $2 + 1)); | ||
done & | ||
for c in 21 22 23 24 25 26 27 28 29 30; do | ||
./main.py -u http://192.168.24.43/api/ -T $1 -c $c county_setup -f 30.csv -F medium_manifest.csv > $c.log & | ||
sleep $((RANDOM % $2 + 1)); | ||
done & | ||
for c in 31 32 33 34 35 36 37 38 39 40; do | ||
./main.py -u http://192.168.24.43/api/ -T $1 -c $c county_setup -f 50.csv -F large_manifest.csv > $c.log & | ||
sleep $((RANDOM % $2 + 1)); | ||
done & | ||
for c in 41 42 43 44 45; do | ||
./main.py -u http://192.168.24.43/api/ -T 3 -c $c county_setup -f 100.csv -F huge_manifest.csv > $c.log & | ||
sleep $((RANDOM % 3 + 1)); | ||
done & | ||
for c in 46 47 48 49; do | ||
./main.py -u http://192.168.24.43/api/ -T 3 -c $c county_setup -f 250.csv -F huge_manifest.csv > $c.log & | ||
sleep $((RANDOM % 3 + 1)); | ||
done & | ||
for c in 50 51 52 53 54; do | ||
./main.py -u http://192.168.24.43/api/ -T 3 -c $c county_setup -f 300.csv -F huge_manifest.csv > $c.log & | ||
sleep $((RANDOM % 3 + 1)); | ||
done & | ||
for c in 55 56 57 58; do | ||
./main.py -u http://192.168.24.43/api/ -T 3 -c $c county_setup -f 500.csv -F huge_manifest.csv > $c.log & | ||
sleep $((RANDOM % 3 + 1)); | ||
done & | ||
for job in `jobs -p`; do | ||
wait $job | ||
done | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
#!/bin/sh | ||
# argument 1 is delay between simulated user interactions (in seconds) | ||
# argument 2 is delay between county starts (in seconds) | ||
if [ "$#" != "2" ]; then | ||
echo "Usage: upload_script.sh <user delay> <county start delay>" | ||
echo "See script source for details." | ||
exit | ||
fi | ||
./main.py -u http://corla-test.galois.com/api/ reset dos_init > 0.log | ||
for c in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20; do | ||
./main.py -u http://corla-test.galois.com/api/ -T $1 -c $c county_setup -f 20.csv -F small_manifest.csv > $c.log & | ||
sleep $((RANDOM % $2 + 1)); | ||
done & | ||
for c in 21 22 23 24 25 26 27 28 29 30; do | ||
./main.py -u http://corla-test.galois.com/api/ -T $1 -c $c county_setup -f 30.csv -F medium_manifest.csv > $c.log & | ||
sleep $((RANDOM % $2 + 1)); | ||
done & | ||
for c in 31 32 33 34 35 36 37 38 39 40; do | ||
./main.py -u http://corla-test.galois.com/api/ -T $1 -c $c county_setup -f 50.csv -F large_manifest.csv > $c.log & | ||
sleep $((RANDOM % $2 + 1)); | ||
done & | ||
for c in 41 42 43 44 45; do | ||
./main.py -u http://corla-test.galois.com/api/ -T 3 -c $c county_setup -f 100.csv -F huge_manifest.csv > $c.log & | ||
sleep $((RANDOM % 3 + 1)); | ||
done & | ||
for c in 46 47 48 49; do | ||
./main.py -u http://corla-test.galois.com/api/ -T 3 -c $c county_setup -f 250.csv -F huge_manifest.csv > $c.log & | ||
sleep $((RANDOM % 3 + 1)); | ||
done & | ||
for c in 50 51 52 53 54; do | ||
./main.py -u http://corla-test.galois.com/api/ -T 3 -c $c county_setup -f 300.csv -F huge_manifest.csv > $c.log & | ||
sleep $((RANDOM % 3 + 1)); | ||
done & | ||
for c in 55 56 57 58; do | ||
./main.py -u http://corla-test.galois.com/api/ -T 3 -c $c county_setup -f 500.csv -F huge_manifest.csv > $c.log & | ||
sleep $((RANDOM % 3 + 1)); | ||
done & | ||
for job in `jobs -p`; do | ||
wait $job | ||
done | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/bin/sh | ||
./main.py -u http://192.168.24.43/api/ reset dos_init > 0.log | ||
for c in 1 2 3 4 5; do | ||
./main.py -u http://192.168.24.43/api/ -c $c county_setup -f huge_cvrs.csv -F huge_manifest.csv > $c.log & | ||
done | ||
for job in `jobs -p`; do | ||
wait $job | ||
done | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/bin/sh | ||
./main.py -u http://corla-test.galois.com/api/ reset dos_init > 0.log | ||
for c in 1 2 3 4 5; do | ||
./main.py -u http://corla-test.galois.com/api/ -c $c county_setup -f huge_cvrs.csv -F huge_manifest.csv > $c.log & | ||
done | ||
for job in `jobs -p`; do | ||
wait $job | ||
done | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/bin/sh | ||
./main.py -u http://192.168.24.43/api/ reset dos_init > 0.log | ||
for c in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64; do | ||
./main.py -u http://192.168.24.43/api/ -c $c county_setup -f medium_cvrs.csv -F medium_manifest.csv > $c.log & | ||
done | ||
for job in `jobs -p`; do | ||
wait $job | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/bin/sh | ||
./main.py -u http://corla-test.galois.com/api/ reset dos_init > 0.log | ||
for c in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64; do | ||
./main.py -u http://corla-test.galois.com/api/ -c $c county_setup -f medium_cvrs.csv -F medium_manifest.csv > $c.log & | ||
done | ||
for job in `jobs -p`; do | ||
wait $job | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/bin/sh | ||
./main.py -u http://corla-test.galois.com/api/ reset dos_init > 0.log | ||
for c in 1 2 3 4 5 6; do | ||
./main.py -u http://corla-test.galois.com/api/ -c $c county_setup -f large_cvrs.csv -F large_manifest.csv > $c.log & | ||
done | ||
for job in `jobs -p`; do | ||
wait $job | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
#!/bin/sh | ||
./main.py -u http://corla-test.galois.com/api reset dos_init > 0.log | ||
for c in 1 2 3 4 5 6; do | ||
./main.py -u http://corla-test.galois.com/api -c $c county_setup -f medium_cvrs.csv -F medium_manifest.csv > $c.log & | ||
done | ||
for job in `jobs -p`; do | ||
wait $job | ||
done | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/bin/sh | ||
./main.py -u http://192.168.24.43/api/ reset dos_init > 0.log | ||
for c in 1 2 3 4 5 6 7 8; do | ||
./main.py -u http://192.168.24.43/api/ -c $c county_setup -f medium_cvrs.csv -F medium_manifest.csv > $c.log & | ||
done | ||
for job in `jobs -p`; do | ||
wait $job | ||
done |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
#!/bin/sh | ||
./main.py -u http://corla-test.galois.com/api/ reset dos_init > 0.log | ||
for c in 1 2 3 4 5 6 7 8; do | ||
./main.py -u http://corla-test.galois.com/api/ -c $c county_setup -f medium_cvrs.csv -F medium_manifest.csv > $c.log & | ||
done | ||
for job in `jobs -p`; do | ||
wait $job | ||
done |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Would it make sense to replace these scripts with scripts that take a command line parameter for the hostname?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A parameter would be better. Or my approach in autotest2.sh is to pass an environment variable, $URL.