File tree Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Expand file tree Collapse file tree 2 files changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -8,7 +8,7 @@ refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503
8
8
refs/tags/release-0.3.1: 495bae036dfe5ec6ceafd3312b4dca48741e845b
9
9
refs/tags/release-0.4: e828ea2080499553b97dfe33b3f4d472b4562ad7
10
10
refs/tags/release-0.5: 7e3bcfbf21278251ee936ad53e92e9b719702d73
11
- refs/heads/auto: a264f5b7e8df34c4bf7f10d0c6c7f9ab805ee672
11
+ refs/heads/auto: b22c8ec5c74e75cf579aad50e3948e8c01f9d343
12
12
refs/tags/release-0.6: b4ebcfa1812664df5e142f0134a5faea3918544c
13
13
refs/tags/0.1: b19db808c2793fe2976759b85a355c3ad8c8b336
14
14
refs/tags/0.2: 1754d02027f2924bed83b0160ee340c7f41d5ea1
Original file line number Diff line number Diff line change 585
585
BOOL_OPTIONS=" "
586
586
VAL_OPTIONS=" "
587
587
588
+ opt option-checking 1 " complain about unrecognized options"
588
589
opt debug 0 " debug mode; disables optimization unless \` --enable-optimize\` given"
589
590
opt valgrind 0 " run tests with valgrind (memcheck by default)"
590
591
opt helgrind 0 " run tests with helgrind instead of memcheck"
@@ -674,8 +675,11 @@ then
674
675
fi
675
676
676
677
# Validate Options
677
- step_msg " validating $CFG_SELF args"
678
- validate_opt
678
+ if [ -z " $CFG_DISABLE_OPTION_CHECKING " ]
679
+ then
680
+ step_msg " validating $CFG_SELF args"
681
+ validate_opt
682
+ fi
679
683
680
684
# Validate the release channel, and configure options
681
685
case " $CFG_RELEASE_CHANNEL " in
You can’t perform that action at this time.
0 commit comments