Skip to content

Commit

Permalink
filter out tests from generated makefiles
Browse files Browse the repository at this point in the history
  • Loading branch information
lperron committed Jun 29, 2017
1 parent 985d487 commit 94b3832
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/generate_deps.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
main_dir=$2

# List all files on ortools/$main_dir
all_cc=`ls ortools/$main_dir/*.cc`
all_cc=`ls ortools/$main_dir/*.cc | grep -v test.cc`
all_h=`ls ortools/$main_dir/*.h`
if ls ortools/$main_dir/*proto 1> /dev/null 2>&1; then
all_proto=`ls ortools/$main_dir/*.proto`
Expand Down

0 comments on commit 94b3832

Please sign in to comment.