Skip to content

Commit 85fa982

Browse files
pks-tgitster
authored andcommitted
meson: fix conflicts with in-flight topics
As support for Meson is still in-flight we have to accommodate for conflicts with topics in "seen". The following conflicts are being addressed in this commit: - ej/cat-file-remote-object-info adds t1017 and "fetch-object-info.c". - ds/path-walk-1 adds t6601 as well as "path-walk.c" and "test-path-walk.c". - js/libgit-rust adds "common-exit.c" and "common-init.c". - ds/name-hash-tweaks adds "t/helper/test-name-hash.c". This is somewhat painful in the current state where Meson is not yet part of the main tree, but we'll have to live with that for the time being. I've split this commit out into a separate fixup-style commit such that it is possible to test this topic both with and without "seen" merged into it. You can simply revert this commit to test without "seen". Signed-off-by: Patrick Steinhardt <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
1 parent 904339e commit 85fa982

File tree

3 files changed

+8
-0
lines changed

3 files changed

+8
-0
lines changed

meson.build

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -235,6 +235,8 @@ libgit_sources = [
235235
'commit-graph.c',
236236
'commit-reach.c',
237237
'commit.c',
238+
'common-exit.c',
239+
'common-init.c',
238240
'compat/nonblock.c',
239241
'compat/obstack.c',
240242
'compat/terminal.c',
@@ -273,6 +275,7 @@ libgit_sources = [
273275
'ewah/ewah_rlw.c',
274276
'exec-cmd.c',
275277
'fetch-negotiator.c',
278+
'fetch-object-info.c',
276279
'fetch-pack.c',
277280
'fmt-merge-msg.c',
278281
'fsck.c',
@@ -348,6 +351,7 @@ libgit_sources = [
348351
'patch-delta.c',
349352
'patch-ids.c',
350353
'path.c',
354+
'path-walk.c',
351355
'pathspec.c',
352356
'pkt-line.c',
353357
'preload-index.c',

t/helper/meson.build

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,12 +34,14 @@ test_tool_sources = [
3434
'test-match-trees.c',
3535
'test-mergesort.c',
3636
'test-mktemp.c',
37+
'test-name-hash.c',
3738
'test-online-cpus.c',
3839
'test-pack-mtimes.c',
3940
'test-parse-options.c',
4041
'test-parse-pathspec-file.c',
4142
'test-partial-clone.c',
4243
'test-path-utils.c',
44+
'test-path-walk.c',
4345
'test-pcre2-config.c',
4446
'test-pkt-line.c',
4547
'test-proc-receive.c',

t/meson.build

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,6 +177,7 @@ integration_tests = [
177177
't1014-read-tree-confusing.sh',
178178
't1015-read-index-unmerged.sh',
179179
't1016-compatObjectFormat.sh',
180+
't1017-cat-file-remote-object-info.sh',
180181
't1020-subdirectory.sh',
181182
't1021-rerere-in-workdir.sh',
182183
't1022-read-tree-partial-clone.sh',
@@ -829,6 +830,7 @@ integration_tests = [
829830
't6500-gc.sh',
830831
't6501-freshen-objects.sh',
831832
't6600-test-reach.sh',
833+
't6601-path-walk.sh',
832834
't6700-tree-depth.sh',
833835
't7001-mv.sh',
834836
't7002-mv-sparse-checkout.sh',

0 commit comments

Comments
 (0)