11 lines
219 B
Bash
11 lines
219 B
Bash
#!/bin/bash
|
|
# cd $(dirname $0)
|
|
|
|
make stl > /dev/null
|
|
./containers > tests/output_stl.log
|
|
|
|
make ft > /dev/null
|
|
./containers > tests/output_ft.log
|
|
|
|
diff --context=0 --color=always tests/output_stl.log tests/output_ft.log
|