Skip to content

Commit 7afbcb6

Browse files
pks-tttaylorr
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. - cc/promisor-remote-capability adds t5710. - ds/path-walk adds t6601 as well as "path-walk.c" and "test-path-walk.c". - am/git-blame-ignore-revs-by-default adds t8015 and t8016. - ps/reftable-detach adds "reftable/system.c". - js/libgit-rust adds "common-exit.c" and "common-init.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: Taylor Blau <[email protected]>
1 parent 483e5dd commit 7afbcb6

File tree

3 files changed

+10
-0
lines changed

3 files changed

+10
-0
lines changed

meson.build

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -65,6 +65,8 @@ libgit_sources = [
6565
'commit-graph.c',
6666
'commit-reach.c',
6767
'commit.c',
68+
'common-exit.c',
69+
'common-init.c',
6870
'compat/nonblock.c',
6971
'compat/obstack.c',
7072
'compat/terminal.c',
@@ -177,6 +179,7 @@ libgit_sources = [
177179
'parse-options.c',
178180
'patch-delta.c',
179181
'patch-ids.c',
182+
'path-walk.c',
180183
'path.c',
181184
'pathspec.c',
182185
'pkt-line.c',
@@ -217,6 +220,7 @@ libgit_sources = [
217220
'reftable/reader.c',
218221
'reftable/record.c',
219222
'reftable/stack.c',
223+
'reftable/system.c',
220224
'reftable/tree.c',
221225
'reftable/writer.c',
222226
'remote.c',

t/helper/meson.build

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,7 @@ test_tool_sources = [
4040
'test-parse-pathspec-file.c',
4141
'test-partial-clone.c',
4242
'test-path-utils.c',
43+
'test-path-walk.c',
4344
'test-pcre2-config.c',
4445
'test-pkt-line.c',
4546
'test-proc-receive.c',

t/meson.build

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -167,6 +167,7 @@ integration_tests = [
167167
't1014-read-tree-confusing.sh',
168168
't1015-read-index-unmerged.sh',
169169
't1016-compatObjectFormat.sh',
170+
't1017-cat-file-remote-object-info.sh',
170171
't1020-subdirectory.sh',
171172
't1021-rerere-in-workdir.sh',
172173
't1022-read-tree-partial-clone.sh',
@@ -718,6 +719,7 @@ integration_tests = [
718719
't5703-upload-pack-ref-in-want.sh',
719720
't5704-protocol-violations.sh',
720721
't5705-session-id-in-capabilities.sh',
722+
't5710-promisor-remote-capability.sh',
721723
't5730-protocol-v2-bundle-uri-file.sh',
722724
't5731-protocol-v2-bundle-uri-git.sh',
723725
't5732-protocol-v2-bundle-uri-http.sh',
@@ -820,6 +822,7 @@ integration_tests = [
820822
't6500-gc.sh',
821823
't6501-freshen-objects.sh',
822824
't6600-test-reach.sh',
825+
't6601-path-walk.sh',
823826
't6700-tree-depth.sh',
824827
't7001-mv.sh',
825828
't7002-mv-sparse-checkout.sh',
@@ -946,6 +949,8 @@ integration_tests = [
946949
't8012-blame-colors.sh',
947950
't8013-blame-ignore-revs.sh',
948951
't8014-blame-ignore-fuzzy.sh',
952+
't8015-blame-default-ignore-revs.sh',
953+
't8016-blame-override-ignore-revs.sh',
949954
't9001-send-email.sh',
950955
't9002-column.sh',
951956
't9003-help-autocorrect.sh',

0 commit comments

Comments
 (0)