tarantool / test-run

Tarantool functional testing framework
14 stars 15 forks source link

Fix determination of debug build #353

Closed CuriousGeorgiy closed 1 year ago

CuriousGeorgiy commented 1 year ago

Determination of debug build uses an incorrect regular expression: since it uses re.I flag (case insensitivity), it can match compiler flags contained in the version string, e.g. '--Wa,--debug-prefix-map==' — remove this flag and make the regular expression more specific.

Closes #352

coveralls commented 1 year ago

Coverage Status

Coverage remained the same at 63.093% when pulling 959b636cb649819fd50cdee839f2ecf595391d37 on CuriousGeorgiy:master into e970cdb735e3c4014a2d172215ffad5470f26a26 on tarantool:master.

Totktonada commented 1 year ago

Context: https://github.com/tarantool/tarantool/pull/7809