| 1 | # Copyright (c) 2002 Trustees of Indiana University |
|---|
| 2 | # |
|---|
| 3 | # Distributed under the Boost Software License, Version 1.0. |
|---|
| 4 | # (See accompanying file LICENSE_1_0.txt or copy at |
|---|
| 5 | # http://www.boost.org/LICENSE_1_0.txt) |
|---|
| 6 | |
|---|
| 7 | # Define SGB (stanford graph base top level directory) and |
|---|
| 8 | # LEDA (also top level directory) at the command line of jam using -s |
|---|
| 9 | |
|---|
| 10 | import modules ; |
|---|
| 11 | |
|---|
| 12 | test-suite graph_test : |
|---|
| 13 | |
|---|
| 14 | [ run transitive_closure_test.cpp ] |
|---|
| 15 | |
|---|
| 16 | [ compile adj_list_cc.cpp ] |
|---|
| 17 | |
|---|
| 18 | # adj_list_test needs some work -JGS |
|---|
| 19 | # unit-test adj_list_test : adj_list_test.cpp ; |
|---|
| 20 | |
|---|
| 21 | [ run adj_list_edge_list_set.cpp ] |
|---|
| 22 | |
|---|
| 23 | [ compile adj_matrix_cc.cpp ] |
|---|
| 24 | |
|---|
| 25 | [ run bfs.cpp ../../test/build//boost_test_exec_monitor ] |
|---|
| 26 | |
|---|
| 27 | [ compile bfs_cc.cpp ] |
|---|
| 28 | |
|---|
| 29 | [ run bellman-test.cpp ] |
|---|
| 30 | |
|---|
| 31 | [ run betweenness_centrality_test.cpp ] |
|---|
| 32 | |
|---|
| 33 | [ run bidir_remove_edge.cpp ] |
|---|
| 34 | |
|---|
| 35 | [ run csr_graph_test.cpp : : : : : <variant>release ] |
|---|
| 36 | |
|---|
| 37 | [ run dag_longest_paths.cpp ] |
|---|
| 38 | |
|---|
| 39 | [ run dfs.cpp ../../test/build//boost_test_exec_monitor ] |
|---|
| 40 | |
|---|
| 41 | [ compile dfs_cc.cpp ] |
|---|
| 42 | |
|---|
| 43 | [ compile dijkstra_cc.cpp ] |
|---|
| 44 | |
|---|
| 45 | [ run dijkstra_heap_performance.cpp : 10000 ] |
|---|
| 46 | |
|---|
| 47 | [ run dominator_tree_test.cpp ] |
|---|
| 48 | |
|---|
| 49 | [ run relaxed_heap_test.cpp : 5000 15000 ] |
|---|
| 50 | |
|---|
| 51 | [ compile edge_list_cc.cpp ] |
|---|
| 52 | |
|---|
| 53 | [ compile filtered_graph_cc.cpp ] |
|---|
| 54 | |
|---|
| 55 | [ run graph.cpp ] |
|---|
| 56 | |
|---|
| 57 | [ compile graph_concepts.cpp ] |
|---|
| 58 | |
|---|
| 59 | |
|---|
| 60 | [ run graphviz_test.cpp |
|---|
| 61 | /boost/test//boost_test_exec_monitor/<link>static |
|---|
| 62 | ../build//boost_graph ] |
|---|
| 63 | |
|---|
| 64 | [ run gursoy_atun_layout_test.cpp ] |
|---|
| 65 | |
|---|
| 66 | [ run layout_test.cpp : : : <test-info>always_show_run_output <toolset>intel:<debug-symbols>off ] |
|---|
| 67 | |
|---|
| 68 | [ run serialize.cpp |
|---|
| 69 | ../../serialization/build//boost_serialization |
|---|
| 70 | : : : ] |
|---|
| 71 | |
|---|
| 72 | [ compile reverse_graph_cc.cpp ] |
|---|
| 73 | |
|---|
| 74 | [ run sequential_vertex_coloring.cpp ] |
|---|
| 75 | |
|---|
| 76 | [ run subgraph.cpp ../../test/build//boost_test_exec_monitor ] |
|---|
| 77 | |
|---|
| 78 | [ run isomorphism.cpp ../../test/build//boost_test_exec_monitor ] |
|---|
| 79 | |
|---|
| 80 | [ run adjacency_matrix_test.cpp ] |
|---|
| 81 | |
|---|
| 82 | [ compile vector_graph_cc.cpp ] |
|---|
| 83 | |
|---|
| 84 | [ compile copy.cpp ] |
|---|
| 85 | |
|---|
| 86 | [ compile property_iter.cpp ] |
|---|
| 87 | |
|---|
| 88 | [ run bundled_properties.cpp ] |
|---|
| 89 | |
|---|
| 90 | [ run floyd_warshall_test.cpp ] |
|---|
| 91 | |
|---|
| 92 | [ run astar_search_test.cpp ] |
|---|
| 93 | |
|---|
| 94 | [ run biconnected_components_test.cpp ] |
|---|
| 95 | |
|---|
| 96 | [ run cuthill_mckee_ordering.cpp ] |
|---|
| 97 | |
|---|
| 98 | [ run king_ordering.cpp ] |
|---|
| 99 | |
|---|
| 100 | [ run matching_test.cpp ] |
|---|
| 101 | |
|---|
| 102 | ; |
|---|
| 103 | |
|---|
| 104 | # Run SDB tests only when -sSDB= is set. |
|---|
| 105 | if [ modules.peek : SDB ] != "" |
|---|
| 106 | { |
|---|
| 107 | local SDB_DEPENDCIES = |
|---|
| 108 | <include>$(SGB) <library-file>$(SGB)/libgb.a ; |
|---|
| 109 | |
|---|
| 110 | compile stanford_graph_cc.cpp |
|---|
| 111 | $(SDB_DEPENDCIES) ; |
|---|
| 112 | } |
|---|
| 113 | |
|---|
| 114 | # Run LEDA tests only when -sLEDA= is set. |
|---|
| 115 | if [ modules.peek : LEDA ] != "" |
|---|
| 116 | { |
|---|
| 117 | local LEDA_DEPENDENCIES = |
|---|
| 118 | <include>$(LEDA)/incl |
|---|
| 119 | <library-file>$(LEDA)/libG.a |
|---|
| 120 | ; |
|---|
| 121 | |
|---|
| 122 | compile leda_graph_cc.cpp |
|---|
| 123 | $(LEDA_DEPENDENCIES) ; |
|---|
| 124 | } |
|---|