#!/bin/bash
diff new_one_opt_align test_vectors/test_one_opt_align > test_one_opt_align_diff
if [ -s test_one_opt_align_diff ]; then echo 'Test failed: new_one_opt_align differs from test_vectors/test_one_opt_align'; fi
diff new_mod_paired_cost_matrix test_vectors/test_mod_paired_cost_matrix > test_mod_paired_cost_matrix_diff
if [ -s test_mod_paired_cost_matrix_diff ]; then echo 'Test failed: new_mod_paired_cost_matrix differs from test_vectors/test_mod_paired_cost_matrix'; fi
diff new_opt_pairs_0_299 test_vectors/test_opt_pairs_0_299 > test_opt_pairs_0_299_diff
if [ -s test_opt_pairs_0_299_diff ]; then echo 'Test failed: new_opt_pairs_0_299 differs from test_vectors/test_opt_pairs_0_299'; fi
diff new_opt_pairs_300_599 test_vectors/test_opt_pairs_300_599 > test_opt_pairs_300_599_diff
if [ -s test_opt_pairs_300_599_diff ]; then echo 'Test failed: new_opt_pairs_300_599 differs from test_vectors/test_opt_pairs_300_599'; fi
diff new_opt_pairs_600_953 test_vectors/test_opt_pairs_600_953 > test_opt_pairs_600_953_diff
if [ -s test_opt_pairs_600_953_diff ]; then echo 'Test failed: new_opt_pairs_600_953 differs from test_vectors/test_opt_pairs_600_953'; fi
