Lines Matching refs:out

12       call system('cscope -bk -fXcscope.out Xmemfile_test.c')
13 call system('cscope -bk -fXcscope2.out Xmemfile_test.c')
14 cscope add Xcscope.out
18 for file in ['Xcscope.out', 'Xcscope2.out', 'Xmemfile_test.c']
29 cscope add Xcscope.out
35 call assert_fails('cscope add Xcscope.out', 'E568:')
36 call assert_fails('cscope add doesnotexist.out', 'E563:')
172 call assert_match('\nAdded cscope database.*Xcscope.out (#0)', a)
177 call assert_match('\n 0 \d\+.*Xcscope.out\s*<none>', a)
236 cscope add Xcscope.out
237 let a = execute('cscope kill Xcscope.out')
238 call assert_match('cscope connection Xcscope.out closed', a)
240 cscope add Xcscope.out .
242 call assert_match('cscope connection .*Xcscope.out closed', a)
249 call assert_fails('cscope add Xcscope2.out', 'E609:')
253 cscope add Xcscope.out
254 cscope add Xcscope2.out . -C
256 call assert_match('\n 0 \d\+.*Xcscope.out\s*<none>', a)
257 call assert_match('\n 1 \d\+.*Xcscope2.out\s*\.', a)
273 call assert_equal('"cs add Xcscope.out Xcscope2.out', @:)
277 call assert_equal(cscope_connection(0, 'out'), 1)
280 call assert_equal(cscope_connection(1, 'out'), 1)
283 call assert_equal(cscope_connection(2, 'out'), 0)
284 call assert_equal(cscope_connection(2, getcwd() .. '/Xcscope.out', 1), 1)
287 call assert_equal(cscope_connection(3, 'out', 'xxx'), 0)
288 call assert_equal(cscope_connection(3, 'out', '.'), 1)
290 call assert_equal(cscope_connection(4, 'out', '.'), 0)
292 call assert_equal(cscope_connection(5, 'out'), 0)
293 call assert_equal(cscope_connection(-1, 'out'), 0)
298 " Test ":cs add {dir}" (add the {dir}/cscope.out database)
305 call system('cscope -bk -fXcscopedir/cscope.out ' . memfile)
313 call assert_match('^ 0 \d\+.*Xcscopedir/cscope.out\s\+<none>$', lines[2])
316 call delete('Xcscopedir/cscope.out')