Skip to content

Commit

Permalink
Have test.sh run read_compressed_test
Browse files Browse the repository at this point in the history
  • Loading branch information
kpu committed Jan 4, 2013
1 parent b56d454 commit 3055523
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,6 @@ util/bit_packing_test
util/file_piece_test
util/joint_sort_test
util/probing_hash_table_test
util/read_compressed_test
util/sorted_uniform_test
previous.sh
2 changes: 1 addition & 1 deletion test.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/bash
#Run tests. Requires Boost.
. compile.sh
for i in util/{bit_packing,file_piece,joint_sort,probing_hash_table,sorted_uniform}_test lm/{model,left}_test; do
for i in util/{bit_packing,file_piece,joint_sort,probing_hash_table,read_compressed,sorted_uniform}_test lm/{model,left}_test; do
g++ $CXXFLAGS $i.cc {lm,util}/*.o -DBOOST_TEST_DYN_LINK -lboost_unit_test_framework -lz -o $i
pushd $(dirname $i) >/dev/null && ./$(basename $i) || echo "$i failed"; popd >/dev/null
done

0 comments on commit 3055523

Please sign in to comment.