Skip to content

Commit

Permalink
Get rid of mst. removed astar includes in sssp test.
Browse files Browse the repository at this point in the history
  • Loading branch information
yzhwang committed Sep 11, 2016
1 parent f1f1aa3 commit daa4246
Show file tree
Hide file tree
Showing 9 changed files with 1 addition and 3,143 deletions.
20 changes: 1 addition & 19 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -131,10 +131,6 @@ option(GUNROCK_APP_SALSA
"If on, builds only SALSA application."
OFF)

option(GUNROCK_APP_MST
"If on, builds only MST application."
OFF)

option(GUNROCK_APP_WTF
"If on, builds only WTF application."
OFF)
Expand Down Expand Up @@ -249,7 +245,6 @@ if(GUNROCK_BUILD_APPLICATIONS)
add_subdirectory(tests/sssp)
add_subdirectory(tests/hits)
add_subdirectory(tests/salsa)
add_subdirectory(tests/mst)
add_subdirectory(tests/wtf)
add_subdirectory(tests/topk)
#add_subdirectory(tests/template)
Expand Down Expand Up @@ -286,10 +281,6 @@ else(GUNROCK_BUILD_APPLICATIONS)
add_subdirectory(tests/salsa)
endif(GUNROCK_APP_SALSA)

if(GUNROCK_APP_MST)
add_subdirectory(tests/mst)
endif(GUNROCK_APP_MST)

if(GUNROCK_APP_WTF)
add_subdirectory(tests/wtf)
endif(GUNROCK_APP_WTF)
Expand Down Expand Up @@ -333,11 +324,6 @@ add_test(NAME TEST_TOPK COMMAND topk market
${gunrock_INCLUDE_DIRS}/simple_example/bips98_606.mtx --undirected)
set_tests_properties(TEST_TOPK PROPERTIES PASS_REGULAR_EXPRESSION "CORRECT")

# bips98_606.mtx is not fully-connected graph so use largest small graph instead
add_test(NAME TEST_MST COMMAND mst market
${gunrock_INCLUDE_DIRS}/dataset/small/chesapeake.mtx)
set_tests_properties(TEST_MST PROPERTIES PASS_REGULAR_EXPRESSION "CORRECT")

### shared library application interface tests
add_test(NAME SHARED_LIB_TEST_BFS COMMAND shared_lib_bfs)
set_tests_properties(SHARED_LIB_TEST_BFS
Expand Down Expand Up @@ -404,10 +390,6 @@ if(GUNROCK_MGPU_TESTS)
# ${gunrock_INCLUDE_DIRS}/simple_example/bips98_606.mtx ${DEVICES} --undirected)
# set_tests_properties(TEST_TOPK PROPERTIES PASS_REGULAR_EXPRESSION "CORRECT")

# add_test(NAME TEST_MGPU_MST COMMAND mst market
# ${gunrock_INCLUDE_DIRS}/dataset/small/chesapeake.mtx ${DEVICES})
# set_tests_properties(TEST_MST PROPERTIES PASS_REGULAR_EXPRESSION "CORRECT")

endif(GUNROCK_MGPU_TESTS)
endif(GUNROCK_MGPU_TESTS)

# end /* Enable Testing for `ctest` */
Loading

0 comments on commit daa4246

Please sign in to comment.