mirror of
https://github.com/zeek/zeek.git
synced 2025-10-02 06:38:20 +00:00

Some tests were always being skipped because config.h was renamed to bro-config.h a long time ago.
11 lines
417 B
Text
11 lines
417 B
Text
# @TEST-REQUIRES: grep -q "#define ENABLE_MOBILE_IPV6" $BUILD/bro-config.h
|
|
# @TEST-EXEC: bro -b -r $TRACES/mobile-ipv6/ipv6-mobile-routing.trace %INPUT >output
|
|
# @TEST-EXEC: btest-diff output
|
|
|
|
# Just check that the responder of the connection is the final routing
|
|
# address, but the destination in the header is the actual destination address.
|
|
event new_packet(c: connection, p: pkt_hdr)
|
|
{
|
|
print c$id;
|
|
print p;
|
|
}
|