-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtest.sh
More file actions
executable file
·33 lines (27 loc) · 1.06 KB
/
test.sh
File metadata and controls
executable file
·33 lines (27 loc) · 1.06 KB
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
#Run unit tests
echo "unit tests"
./build/medyan test
echo "2filaments"
DIR=2filaments
mkdir -p ./examples/${DIR}/out
./build/medyan -s ./examples/${DIR}/systeminput.txt -i ./examples/${DIR} -o ./examples/${DIR}/out
echo "50filaments_motor_linker"
DIR=50filaments_motor_linker
mkdir -p ./examples/${DIR}/out
./build/medyan -s ./examples/${DIR}/systeminput.txt -i ./examples/${DIR} -o ./examples/${DIR}/out
echo "actin only"
DIR=actin_only
mkdir -p ./examples/${DIR}/out
./build/medyan -s ./examples/${DIR}/systeminput.txt -i ./examples/${DIR} -o ./examples/${DIR}/out
echo "branch_actin"
DIR=branch_actin
mkdir -p ./examples/${DIR}/out
./build/medyan -s ./examples/${DIR}/systeminput.txt -i ./examples/${DIR} -o ./examples/${DIR}/out
echo "membrane_vesicle"
DIR=membrane_vesicle
mkdir -p ./examples/${DIR}/out
./build/medyan -s ./examples/${DIR}/systeminput.txt -i ./examples/${DIR} -o ./examples/${DIR}/out
echo "nucleation_actin"
DIR=nucleation_actin
mkdir -p ./examples/${DIR}/out
./build/medyan -s ./examples/${DIR}/systeminput.txt -i ./examples/${DIR} -o ./examples/${DIR}/out