Merge remote-tracking branch 'origin/topic/etyp/bg-test-nondeterminism'

* origin/topic/etyp/bg-test-nondeterminism:
  Fix input error test nondeterminism
This commit is contained in:
Arne Welzel 2024-10-02 20:17:28 +02:00
commit e118887771
4 changed files with 12 additions and 4 deletions

View file

@ -1,3 +1,12 @@
7.1.0-dev.377 | 2024-10-02 20:17:28 +0200
* Fix input error test nondeterminism (Evan Typanski, Corelight)
It seems like other similar tests get by because they have more "stuff"
before they call `terminate()` most likely. But, to be safe, just
removing the "received termination signal" line seems like the best
approach.
7.1.0-dev.375 | 2024-10-01 11:40:16 +0200 7.1.0-dev.375 | 2024-10-01 11:40:16 +0200
* Report suppressed warnings count (Evan Typanski, Corelight) * Report suppressed warnings count (Evan Typanski, Corelight)

View file

@ -1 +1 @@
7.1.0-dev.375 7.1.0-dev.377

View file

@ -3,5 +3,4 @@ warning: ..<...>/Input::READER_ASCII: ../input.log, line 3: Not enough fields in
warning: ..<...>/Input::READER_ASCII: ../input.log, line 9: Suppressed 5 warning(s) warning: ..<...>/Input::READER_ASCII: ../input.log, line 9: Suppressed 5 warning(s)
warning: ..<...>/Input::READER_ASCII: ../input.log, line 10: Not enough fields in line 'hello' of ../input.log. Found 0 fields, want positions 1 and -1 warning: ..<...>/Input::READER_ASCII: ../input.log, line 10: Not enough fields in line 'hello' of ../input.log. Found 0 fields, want positions 1 and -1
warning: ..<...>/Input::READER_ASCII: ../input.log, line 16: Suppressed 6 warning(s) warning: ..<...>/Input::READER_ASCII: ../input.log, line 16: Suppressed 6 warning(s)
received termination signal
>>> >>>

View file

@ -1,6 +1,6 @@
# @TEST-EXEC: btest-bg-run zeek zeek -b %INPUT # @TEST-EXEC: btest-bg-run zeek zeek -b %INPUT
# @TEST-EXEC: btest-bg-wait 10 # @TEST-EXEC: btest-bg-wait 10
# @TEST-EXEC: sed 1d .stderr > .stderrwithoutfirstline # @TEST-EXEC: sed -e 1d -e '/received termination/d' .stderr > .stderrwithoutfirstline
# @TEST-EXEC: TEST_DIFF_CANONIFIER=$SCRIPTS/diff-remove-abspath btest-diff .stderrwithoutfirstline # @TEST-EXEC: TEST_DIFF_CANONIFIER=$SCRIPTS/diff-remove-abspath btest-diff .stderrwithoutfirstline
redef exit_only_after_terminate = T; redef exit_only_after_terminate = T;