12 lines
183 B
Bash
Executable File
12 lines
183 B
Bash
Executable File
#!/bin/bash
|
|
|
|
DIR="$PWD"
|
|
cd ../test/.libs/ || exit
|
|
LD_LIBRARY_PATH=../../src/.libs/ ./ui
|
|
gprof ./ui >./profile.txt
|
|
rm ./gmon.out
|
|
less ./profile.txt
|
|
rm ./profile.txt
|
|
cd "$DIR" || exit
|
|
|