LLVM Bugzilla is read-only and represents the historical archive of all LLVM issues filled before November 26, 2021. Use github to submit LLVM bugs

Bug 25872 - OS X: TestGlobalVariables dwarf is not finding the static const int g_file_static_int
Summary: OS X: TestGlobalVariables dwarf is not finding the static const int g_file_st...
Status: RESOLVED FIXED
Alias: None
Product: lldb
Classification: Unclassified
Component: All Bugs (show other bugs)
Version: unspecified
Hardware: PC MacOS X
: P normal
Assignee: Greg Clayton
URL:
Keywords:
: 27863 (view as bug list)
Depends on:
Blocks:
 
Reported: 2015-12-17 12:49 PST by Todd Fiala
Modified: 2019-07-31 18:07 PDT (History)
3 users (show)

See Also:
Fixed By Commit(s):


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Todd Fiala 2015-12-17 12:49:26 PST
This looks like it started happening very recently:

runCmd: frame variable --show-types --scope --show-globals --no-args
output: STATIC: (const char *) g_func_static_cstr = 0x0000000103c65f69 "g_func_static_cstr"
STATIC: (const char *) g_file_static_cstr = 0x0000000103c65f83 "g_file_static_cstr"
STATIC: (const char *) g_func_static_cstr = 0x0000000103c65f69 "g_func_static_cstr"
GLOBAL: (const char *) g_file_global_cstr = 0x0000000103c65f56 "g_file_global_cstr"
GLOBAL: (int) g_common_1 = 21
GLOBAL: (int) g_file_global_int = 42


Expecting sub string: GLOBAL: (int) g_file_global_int = 42
Matched

Expecting sub string: STATIC: (const int) g_file_static_int = 2
Not matched

FAIL

<bound method SBProcess.Kill of <lldb.SBProcess; proxy of <Swig Object of type 'lldb::SBProcess *' at 0x112aafea0> >>: success

Traceback (most recent call last):
  File "/Users/tfiala/src/lldb-tot/lldb/packages/Python/lldbsuite/test/lldbtest.py", line 2263, in dwarf_test_method
    return attrvalue(self)
  File "/Users/tfiala/src/lldb-tot/lldb/packages/Python/lldbsuite/test/lldbtest.py", line 608, in wrapper
    func(*args, **kwargs)
  File "/Users/tfiala/src/lldb-tot/lldb/packages/Python/lldbsuite/test/lang/c/global_variables/TestGlobalVariables.py", line 60, in test
    'GLOBAL: (int) g_common_1 = 21'])
  File "/Users/tfiala/src/lldb-tot/lldb/packages/Python/lldbsuite/test/lldbtest.py", line 2715, in expect
    msg if msg else EXP_MSG(str, exe))
AssertionError: False is not True : Variable(s) displayed correctly
Config=x86_64-clang
Session info generated @ Thu Dec 17 10:46:37 2015
To rerun this test, issue the following command from the 'test' directory:

./dotest.py -A x86_64 -C clang -v -t  -f GlobalVariablesTestCase.test_dwarf


OS X 10.11.2 (15C50)
Xcode 7.2 (7C68)
Comment 1 Todd Fiala 2015-12-18 12:18:23 PST
We're going to try to fix this.
Comment 2 Todd Fiala 2015-12-18 12:18:48 PST
(Running dsymutil on the main.o and then rerunning the test logic works, so we've got an issue here on the Darwin side).
Comment 3 Todd Fiala 2015-12-18 12:41:30 PST
Marked OS X dwarf test XFAIL here:
r256006

We'll flip this back on once Greg addresses it.
Comment 4 Todd Fiala 2015-12-18 12:45:02 PST
Running dsymutil on the a.out of the dwarf build allowed us to find it with lldb, but we then mis-classify it as a LOCAL.
Comment 5 Todd Fiala 2016-05-24 15:29:55 PDT
This is also failing using gmodules debug info, as will land in the test suite with:
http://reviews.llvm.org/D19998
Comment 6 Todd Fiala 2016-05-24 15:30:31 PDT
*** Bug 27863 has been marked as a duplicate of this bug. ***
Comment 7 Jonas Devlieghere 2019-07-31 18:07:03 PDT
This test is enabled and passing on Darwin.