| 
                Last change
                  on this file since 885:1f2a734581f8 was
                  228:b6732e0d38c5,
                  checked in by Balazs Dezso <deba@…>, 17 years ago
           | 
        
        
          | 
               
Reworking graph testing 
 
- The graph tests check more graph functionality.
 - The petersen graph is too regular, therefore special graphs are used.
 - The graph_test.h contains just general tools to test graphs.
  
           | 
        
        | 
            File size:
            1.5 KB
           | 
      
      
        
  | Line |   | 
|---|
| 1 | EXTRA_DIST += \ | 
|---|
| 2 |         test/CMakeLists.txt | 
|---|
| 3 |  | 
|---|
| 4 | noinst_HEADERS += \ | 
|---|
| 5 |         test/graph_test.h \ | 
|---|
| 6 |         test/test_tools.h | 
|---|
| 7 |  | 
|---|
| 8 | check_PROGRAMS += \ | 
|---|
| 9 |         test/bfs_test \ | 
|---|
| 10 |         test/counter_test \ | 
|---|
| 11 |         test/dfs_test \ | 
|---|
| 12 |         test/digraph_test \ | 
|---|
| 13 |         test/dijkstra_test \ | 
|---|
| 14 |         test/dim_test \ | 
|---|
| 15 |         test/error_test \ | 
|---|
| 16 |         test/graph_copy_test \ | 
|---|
| 17 |         test/graph_test \ | 
|---|
| 18 |         test/graph_utils_test \ | 
|---|
| 19 |         test/heap_test \ | 
|---|
| 20 |         test/kruskal_test \ | 
|---|
| 21 |         test/maps_test \ | 
|---|
| 22 |         test/random_test \ | 
|---|
| 23 |         test/path_test \ | 
|---|
| 24 |         test/test_tools_fail \ | 
|---|
| 25 |         test/test_tools_pass \ | 
|---|
| 26 |         test/time_measure_test \ | 
|---|
| 27 |         test/unionfind_test | 
|---|
| 28 |  | 
|---|
| 29 | TESTS += $(check_PROGRAMS) | 
|---|
| 30 | XFAIL_TESTS += test/test_tools_fail$(EXEEXT) | 
|---|
| 31 |  | 
|---|
| 32 | test_bfs_test_SOURCES = test/bfs_test.cc | 
|---|
| 33 | test_counter_test_SOURCES = test/counter_test.cc | 
|---|
| 34 | test_dfs_test_SOURCES = test/dfs_test.cc | 
|---|
| 35 | test_digraph_test_SOURCES = test/digraph_test.cc | 
|---|
| 36 | test_dijkstra_test_SOURCES = test/dijkstra_test.cc | 
|---|
| 37 | test_dim_test_SOURCES = test/dim_test.cc | 
|---|
| 38 | test_error_test_SOURCES = test/error_test.cc | 
|---|
| 39 | test_graph_copy_test_SOURCES = test/graph_copy_test.cc | 
|---|
| 40 | test_graph_test_SOURCES = test/graph_test.cc | 
|---|
| 41 | test_graph_utils_test_SOURCES = test/graph_utils_test.cc | 
|---|
| 42 | test_heap_test_SOURCES = test/heap_test.cc | 
|---|
| 43 | test_kruskal_test_SOURCES = test/kruskal_test.cc | 
|---|
| 44 | test_maps_test_SOURCES = test/maps_test.cc | 
|---|
| 45 | test_path_test_SOURCES = test/path_test.cc | 
|---|
| 46 | test_random_test_SOURCES = test/random_test.cc | 
|---|
| 47 | test_test_tools_fail_SOURCES = test/test_tools_fail.cc | 
|---|
| 48 | test_test_tools_pass_SOURCES = test/test_tools_pass.cc | 
|---|
| 49 | test_time_measure_test_SOURCES = test/time_measure_test.cc | 
|---|
| 50 | test_unionfind_test_SOURCES = test/unionfind_test.cc | 
|---|
       
      
      Note: See 
TracBrowser
        for help on using the repository browser.