-
Notifications
You must be signed in to change notification settings - Fork 541
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
squid-conf-tests: Ignore tests with mismatching autoconf macro #1648
squid-conf-tests: Ignore tests with mismatching autoconf macro #1648
Conversation
The 'skip-unless-autoconf-defines' directive should be able to distinguish autoconf macro values, such as '0' (not defined) from '1' (defined) ones. For example, --disable-ipv6 configuration option defines USE_IPV6 as '0'. This fix allowed to activate the IPv6 tests marked with a TODO.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM, thank you.
Status update: @eduard-bagdasaryan is working on addressing Jenkins check failures. |
This seems to be causing some issues on the unit tests. Retracting the "clear for merge" signal |
e95be10
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@eduard-bagdasaryan, thank you for figuring out what was wrong with Jenkins nodes.
@kinkie, thank you for enabling IPv6 on Jenkins nodes.
The 'skip-unless-autoconf-defines' directive should be able to distinguish autoconf macro values, such as '0' (not defined) from '1' (defined) ones. For example, --disable-ipv6 configuration option defines USE_IPV6 as '0'. This change allows IPv6 tests activation, addressing a TODO.
…-cache#1648) The 'skip-unless-autoconf-defines' directive should be able to distinguish autoconf macro values, such as '0' (not defined) from '1' (defined) ones. For example, --disable-ipv6 configuration option defines USE_IPV6 as '0'. This change allows IPv6 tests activation, addressing a TODO.
The 'skip-unless-autoconf-defines' directive should be able to
distinguish autoconf macro values, such as '0' (not defined) from '1'
(defined) ones. For example, --disable-ipv6 configuration option
defines USE_IPV6 as '0'. This change allows IPv6 tests activation,
addressing a TODO.