mirror of
https://gitlab.isc.org/isc-projects/kea
synced 2025-08-31 14:05:33 +00:00
[2369] Fix test, skipping backwards before doing newline check
This commit is contained in:
@@ -55,10 +55,10 @@ InputSource::ungetChar() {
|
||||
} else if (buffer_pos_ == 0) {
|
||||
isc_throw(OutOfRange, "Cannot skip before the start of buffer");
|
||||
} else {
|
||||
buffer_pos_--;
|
||||
if (buffer_[buffer_pos_] == '\n') {
|
||||
line_--;
|
||||
}
|
||||
buffer_pos_--;
|
||||
}
|
||||
}
|
||||
|
||||
|
@@ -132,8 +132,10 @@ TEST_F(InputSourceTest, lines) {
|
||||
EXPECT_TRUE(source_.atEOF());
|
||||
EXPECT_EQ(4, source_.getCurrentLine());
|
||||
|
||||
// Go backwards 1 character, skipping the last '\n'.
|
||||
// Go backwards 2 characters, skipping the last EOF and '\n'.
|
||||
source_.ungetChar();
|
||||
source_.ungetChar();
|
||||
|
||||
EXPECT_FALSE(source_.atEOF());
|
||||
EXPECT_EQ(3, source_.getCurrentLine());
|
||||
|
||||
|
Reference in New Issue
Block a user