Page MenuHomePhabricator

add SCRIPT_ENABLE_SCHNORR flag
ClosedPublic

Authored by markblundeberg on Jan 29 2019, 02:56.

Details

Summary

This merely adds the flag -- no change in behaviour yet.
Numerous tests are duplicated in script_tests to make sure that nothing
weird happens when the flag is merely activated.

Test Plan

run test_bitcoin

Diff Detail

Repository
rABC Bitcoin ABC
Branch
add_schnorr_flag
Lint
Lint Passed
Unit
No Test Coverage
Build Status
Buildable 4732
Build 7527: Bitcoin ABC Buildbot (legacy)
Build 7526: arc lint + arc unit

Event Timeline

oops, forgot to include a commit

I am now getting a warning when compiling script_tests.cpp, I guess because that script builder is too long:

../../src/test/script_tests.cpp: In member function ‘void script_tests::script_build::test_method()’:
../../src/test/script_tests.cpp:433:22: note: variable tracking size limit exceeded with -fvar-tracking-assignments, retrying without
 BOOST_AUTO_TEST_CASE(script_build) {

Not sure how to fix this. :-/

@markblundeberg Did you activate the undefined sanitizer (ubsan) ? This would explain your warning, this is a tool limitation.

In D2430#55413, @Fabien wrote:

@markblundeberg Did you activate the undefined sanitizer (ubsan) ? This would explain your warning, this is a tool limitation.

I didn't do anything out of the ordinary, though I do have libubsan0:amd64 installed.

Regarding the warning: https://github.com/bitcoin/bitcoin/issues/10030 Looks like Core didn't care about the issue much either.

This revision is now accepted and ready to land.Jan 29 2019, 23:13

Regarding the warning: https://github.com/bitcoin/bitcoin/issues/10030 Looks like Core didn't care about the issue much either.

Mmmm that makes sense. Good to know it's as benign as it sounds like.

This revision was automatically updated to reflect the committed changes.