parent
06180781f6
commit
7c36d4ef00
@ -1,5 +0,0 @@
|
||||
#!/bin/bash
|
||||
cd ./runtime/bin
|
||||
export LD_LIBRARY_PATH="$(pwd):$LD_LIBRARY_PATH"
|
||||
gdb --eval-command="handle SIGUSR1 nostop" --eval-command="run ../tests/test_fibonacci_multiple.json" ./awsmrt
|
||||
cd ../..
|
@ -0,0 +1,4 @@
|
||||
#!/bin/bash
|
||||
# fib(20)
|
||||
# Perhaps this can be improved to pass a body without an additional file
|
||||
ab -n 100000 -c 100 -p client1_body.txt -v 4 localhost:10000/
|
@ -0,0 +1,4 @@
|
||||
#!/bin/bash
|
||||
# fib(10)
|
||||
# Perhaps this can be improved to pass a body without an additional file
|
||||
ab -n 100000 -c 100 -p client2_body.txt -v 4 localhost:10001/
|
@ -0,0 +1,7 @@
|
||||
#!/bin/bash
|
||||
# Executes the runtime in GDB with SIGU
|
||||
|
||||
cd ../../bin
|
||||
export LD_LIBRARY_PATH="$(pwd):$LD_LIBRARY_PATH"
|
||||
gdb --eval-command="handle SIGUSR1 nostop" --eval-command="run ../tests/preemption/test_fibonacci_multiple.json" ./awsmrt
|
||||
cd ../../tests
|
Loading…
Reference in new issue