From 5ec2efb68677ccb5fd91c295cf6ae6039652ac73 Mon Sep 17 00:00:00 2001 From: Rebecca Turner Date: Fri, 22 Mar 2024 16:41:42 -0700 Subject: Move `DebugChar` into its own file Change-Id: Ia40549e5d0b78ece8dd0722c3a5a032b9915f24b --- tests/functional/repl_characterization/test-session.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tests/functional') diff --git a/tests/functional/repl_characterization/test-session.cc b/tests/functional/repl_characterization/test-session.cc index c35030fc7..50e27e58c 100644 --- a/tests/functional/repl_characterization/test-session.cc +++ b/tests/functional/repl_characterization/test-session.cc @@ -3,7 +3,7 @@ #include "test-session.hh" #include "util.hh" -#include "tests/debug-char.hh" +#include "escape-char.hh" namespace nix { @@ -60,7 +60,7 @@ std::ostream & operator<<(std::ostream & os, ReplOutputParser::State s) void ReplOutputParser::transition(State new_state, char responsible_char, bool wasPrompt) { if constexpr (DEBUG_REPL_PARSER) { - std::cerr << "transition " << new_state << " for " << DebugChar{responsible_char} + std::cerr << "transition " << new_state << " for " << MaybeHexEscapedChar{responsible_char} << (wasPrompt ? " [prompt]" : "") << "\n"; } state = new_state; @@ -118,7 +118,7 @@ bool TestSession::waitForPrompt() }); if constexpr (DEBUG_REPL_PARSER) { - std::cerr << "raw " << DebugChar{buf[i]} << (wasEaten ? " [eaten]" : "") << "\n"; + std::cerr << "raw " << MaybeHexEscapedChar{buf[i]} << (wasEaten ? " [eaten]" : "") << "\n"; } } -- cgit v1.2.3