Skip to content

Commit 2ee4100

Browse files
authored
Merge pull request #1654 from puremourning/fix-libclag-14-flags
Fix after clang 14 upgrade. compilation database now includes a trail…
2 parents c3c27de + d4970e1 commit 2ee4100

File tree

5 files changed

+100
-12
lines changed

5 files changed

+100
-12
lines changed

ycmd/completers/cpp/flags.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,8 @@
5454
'-MT',
5555
'-MQ',
5656
'-o',
57-
'--serialize-diagnostics' }
57+
'--serialize-diagnostics',
58+
'--' }
5859

5960
# Use a regex to correctly detect c++/c language for both versioned and
6061
# non-versioned compiler executable names suffixes

ycmd/tests/clang/flags_test.py

+40-11
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
from hamcrest import ( assert_that,
2121
calling,
2222
contains_exactly,
23+
matches_regexp,
2324
empty,
2425
equal_to,
2526
raises )
@@ -30,7 +31,7 @@
3031
from ycmd.completers.cpp import flags
3132
from ycmd.completers.cpp.flags import ShouldAllowWinStyleFlags, INCLUDE_FLAGS
3233
from ycmd.tests.test_utils import ( MacOnly, TemporaryTestDir, WindowsOnly,
33-
TemporaryClangProject )
34+
TemporaryClangProject, UnixOnly )
3435
from ycmd.tests.clang import setUpModule # noqa
3536
from ycmd.utils import CLANG_RESOURCE_DIR
3637
from ycmd.responses import NoExtraConfDetected
@@ -1424,8 +1425,7 @@ def test_CompilationDatabase_UseFlagsFromSameDir( self ):
14241425
'-x',
14251426
'c++',
14261427
'--driver-mode=g++',
1427-
'-Wall',
1428-
'--' ),
1428+
'-Wall' ),
14291429
os.path.join( tmp_dir, 'test1.cc' )
14301430
)
14311431
)
@@ -1441,8 +1441,7 @@ def test_CompilationDatabase_UseFlagsFromSameDir( self ):
14411441
'-x',
14421442
'c++',
14431443
'--driver-mode=g++',
1444-
'-Wall',
1445-
'--' ),
1444+
'-Wall' ),
14461445
os.path.join( tmp_dir, 'some_dir', 'test1.cc' )
14471446
)
14481447
)
@@ -1472,8 +1471,40 @@ def test_CompilationDatabase_HeaderFile_SameNameAsSourceFile( self ):
14721471
'--driver-mode=g++',
14731472
'-Wall',
14741473
'-x',
1475-
'c++-header',
1476-
'--' ) )
1474+
'c++-header' ) )
1475+
1476+
1477+
@UnixOnly
1478+
def test_CompilationDatabase_HeaderFile_SameNameAsSourceFile_ExtraClang(
1479+
self ):
1480+
with TemporaryTestDir() as tmp_dir:
1481+
compile_commands = [
1482+
{
1483+
'directory': tmp_dir,
1484+
'command': 'clang++ -x c++ -Wall',
1485+
'file': os.path.join( tmp_dir, 'test.cc' ),
1486+
},
1487+
]
1488+
1489+
with patch( 'ycmd.completers.cpp.flags.OnMac', return_value=False ):
1490+
with TemporaryClangProject( tmp_dir, compile_commands ):
1491+
# If we ask for a header file with the same name as a source file, it
1492+
# returns the flags of that cc file (and a special language flag for
1493+
# C++ # headers). It also includes a trailing `--` flag which breaks
1494+
# our "add_extra_clang_flags", so test here that works correctly.
1495+
assert_that(
1496+
flags.Flags().FlagsForFile(
1497+
os.path.join( tmp_dir, 'test.h' ),
1498+
add_extra_clang_flags = True )[ 0 ],
1499+
contains_exactly( 'clang++',
1500+
'-x',
1501+
'c++',
1502+
'--driver-mode=g++',
1503+
'-Wall',
1504+
'-x',
1505+
'c++-header',
1506+
matches_regexp( '-resource-dir=.*' ),
1507+
'-fspell-checking' ) )
14771508

14781509

14791510
def test_CompilationDatabase_HeaderFile_DifferentNameFromSourceFile( self ):
@@ -1500,8 +1531,7 @@ def test_CompilationDatabase_HeaderFile_DifferentNameFromSourceFile( self ):
15001531
'--driver-mode=g++',
15011532
'-Wall',
15021533
'-x',
1503-
'c++-header',
1504-
'--' ) )
1534+
'c++-header' ) )
15051535

15061536

15071537
def test_CompilationDatabase_ExplicitHeaderFileEntry( self ):
@@ -1553,8 +1583,7 @@ def test_CompilationDatabase_CUDALanguageFlags( self ):
15531583
'--driver-mode=g++',
15541584
'-Wall',
15551585
'-x',
1556-
'cuda',
1557-
'--' ) )
1586+
'cuda' ) )
15581587

15591588

15601589
def test_MakeRelativePathsInFlagsAbsolute( self ):

ycmd/tests/clang/get_completions_test.py

+39
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,8 @@
4747
CompletionEntryMatcher,
4848
ErrorMatcher,
4949
LocationMatcher,
50+
TemporaryClangProject,
51+
TemporaryTestDir,
5052
WindowsOnly )
5153
from ycmd.utils import ImportCore, ReadFile
5254
ycm_core = ImportCore()
@@ -139,6 +141,43 @@ def test_GetCompletions_ForcedWithNoTrigger( self, app ):
139141
} )
140142

141143

144+
@SharedYcmd
145+
def test_GetCompletions_In_HeaderFile_WithCompDB( self, app ):
146+
import shutil
147+
import os
148+
with TemporaryTestDir() as tmp_dir:
149+
shutil.copy( PathToTestFile( 'headerfileflags.cc' ), tmp_dir )
150+
shutil.copy( PathToTestFile( 'headerfileflags.h' ), tmp_dir )
151+
compile_commands = [
152+
{
153+
'directory': tmp_dir,
154+
'command': 'clang++ -x c++ -I. -Wall',
155+
'file': os.path.join( tmp_dir, 'headerfileflags.cc' ),
156+
},
157+
]
158+
with TemporaryClangProject( tmp_dir, compile_commands ):
159+
RunTest( app, {
160+
'description': 'completion works in header files using cdb',
161+
'request': {
162+
'filetype' : 'cpp',
163+
'filepath' : os.path.join( tmp_dir, 'headerfileflags.h' ),
164+
'line_num' : 11,
165+
'column_num': 7
166+
},
167+
'expect': {
168+
'response': requests.codes.ok,
169+
'data': has_entries( {
170+
'completions': has_item(
171+
CompletionEntryMatcher( 'foo', 'int' ),
172+
),
173+
'errors': empty(),
174+
} )
175+
},
176+
} )
177+
178+
179+
180+
142181
# This test is isolated to make sure we trigger c hook for clangd, instead of
143182
# fetching completer from cache.
144183
@IsolatedYcmd()
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#include "headerfileflags.h"
2+
3+
int main()
4+
{
5+
Struct s = {};
6+
declared_in_header( s.foo );
7+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#pragma once
2+
3+
struct Struct
4+
{
5+
int foo;
6+
};
7+
8+
void declared_in_header( int s )
9+
{
10+
Struct bar;
11+
bar.foo = s;
12+
}

0 commit comments

Comments
 (0)