Skip to content

Commit 171722b

Browse files
committed
renaming debug-* executables to runner-*
1 parent f23abd6 commit 171722b

6 files changed

+9
-60
lines changed

src/nso_rr.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -669,7 +669,7 @@ struct name_binder {
669669
name_binder(const bindings<BAs...>& bs) : bs(bs) {}
670670

671671
sp_tau_node<BAs...> bind(const sp_tau_node<BAs...>& n) const {
672-
// FIXME check if the node is a named binding one
672+
// FIXME (LOW) check if the node is a named binding one
673673
auto bn = make_string_with_skip<
674674
tau_node_terminal_extractor_t<BAs...>,
675675
not_whitespace_predicate_t<BAs...>,
@@ -695,7 +695,7 @@ struct factory_binder {
695695
factory_binder(factory_t& factory) : factory(factory) {}
696696

697697
sp_tau_node<BAs...> bind(const sp_tau_node<BAs...>& n) const {
698-
// FIXME check that the node is a factory binding one
698+
// FIXME (LOW) check that the node is a factory binding one
699699
if(auto type = find_top(n, is_non_terminal<tau_parser::type, BAs...>); type) {
700700
// the factory take two arguments, the first is the type and the
701701
// second is the node representing the constant.

src/rewriting.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -894,7 +894,7 @@ auto drop_location = [](const parse_symbol_t& n) -> symbol_t { return n.first; }
894894
template <typename parse_symbol_t, typename symbol_t>
895895
using drop_location_t = decltype(drop_location<parse_symbol_t, symbol_t>);
896896

897-
// FIXME maybe better not define the function at all if DEBUG is not defined
897+
// FIXME (LOW) maybe better not define the function at all if DEBUG is not defined
898898
template<typename parser_t>
899899
void check_parser_result(const std::string& source,
900900
const typename parser_t::forest_type* f,

tests/CMakeLists.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@ if (TAU_BUILD_TESTS)
4545
add_subdirectory(unit)
4646
endif ()
4747

48-
add_executable(debug-tau_normalizer-tau debug-tau_normalizer-tau.cpp)
49-
target_setup(debug-tau_normalizer-tau)
50-
target_link_libraries(debug-tau_normalizer-tau ${TAU_OBJECT_LIB_NAME} ${IDNI_PARSER_OBJECT_LIB})
48+
add_executable(runner-normalizer-bdd runner-normalizer-bdd.cpp)
49+
target_setup(runner-normalizer-bdd)
50+
target_link_libraries(runner-normalizer-bdd ${TAU_OBJECT_LIB_NAME} ${IDNI_PARSER_OBJECT_LIB})
5151

52-
add_executable(debug-tau_normalizer-bdd debug-tau_normalizer-bdd.cpp)
53-
target_setup(debug-tau_normalizer-bdd)
54-
target_link_libraries(debug-tau_normalizer-bdd ${TAU_OBJECT_LIB_NAME} ${IDNI_PARSER_OBJECT_LIB})
52+
add_executable(runner-normalizer-tau_over_bdd runner-normalizer-tau_over_bdd.cpp)
53+
target_setup(runner-normalizer-tau_over_bdd)
54+
target_link_libraries(runner-normalizer-tau_over_bdd ${TAU_OBJECT_LIB_NAME} ${IDNI_PARSER_OBJECT_LIB})

tests/debug-bdd_binding.cpp

Lines changed: 0 additions & 51 deletions
This file was deleted.
File renamed without changes.

0 commit comments

Comments
 (0)