13 lines
264 B
Bash
13 lines
264 B
Bash
#!/bin/bash
|
|
# cd $(dirname $0)
|
|
|
|
make stl > /dev/null
|
|
echo -e "\nstl :"
|
|
time ./containers > tests/output_stl.log
|
|
|
|
make ft > /dev/null
|
|
echo -e "\nft :"
|
|
time ./containers > tests/output_ft.log
|
|
|
|
diff --context=0 --color=always tests/output_stl.log tests/output_ft.log
|