mirror of
https://github.com/Instagram/IGListKit
synced 2026-05-23 09:18:29 +00:00
Fixing Build Issues when Running IGListKit-tvOSTests
Summary:
tvOS Tests were failing because `IGListAdapterUpdateTester` was being used by `IGListAdapterE2ETests` but `IGListAdapterUpdateTester` was not included in the tvOS Target.
Error Msg:
```
Undefined symbols for architecture x86_64:
"_OBJC_CLASS_$_IGListAdapterUpdateTester", referenced from:
objc-class-ref in IGListAdapterE2ETests.o
ld: symbol(s) not found for architecture x86_64
clang: error: linker command failed with exit code 1 (use -v to see invocation)
```
Reviewed By: rnystrom
Differential Revision: D6251880
fbshipit-source-id: 463452c2206bac79e9c5738306b61c693ea580ca
This commit is contained in:
parent
d6e26d54e8
commit
ee7813a730
1 changed files with 4 additions and 0 deletions
|
|
@ -263,6 +263,8 @@
|
|||
29DA5CA81EA7D37000113926 /* IGListTestCase.m in Sources */ = {isa = PBXBuildFile; fileRef = 29DA5CA61EA7D37000113926 /* IGListTestCase.m */; };
|
||||
29EA6C491DB43A8000957A88 /* IGTestNibCell.xib in Resources */ = {isa = PBXBuildFile; fileRef = 294369B01DB1B7AE0025F6E7 /* IGTestNibCell.xib */; };
|
||||
64D8007E592D0292BE4FC21D /* Pods_IGListKitTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 68CC152B514785B3113DDD4A /* Pods_IGListKitTests.framework */; };
|
||||
5D1C6B481FB1109000188009 /* IGListAdapterUpdateTester.h in Headers */ = {isa = PBXBuildFile; fileRef = 294CDE611F995DD7002CF6E4 /* IGListAdapterUpdateTester.h */; };
|
||||
5D1C6B491FB1109200188009 /* IGListAdapterUpdateTester.m in Sources */ = {isa = PBXBuildFile; fileRef = 294CDE621F995DD7002CF6E4 /* IGListAdapterUpdateTester.m */; };
|
||||
7BC0C61B1F5C401F00A06ADD /* IGListArrayUtilsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BC0C61A1F5C401F00A06ADD /* IGListArrayUtilsInternal.h */; };
|
||||
7BC0C61C1F5C402600A06ADD /* IGListArrayUtilsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BC0C61A1F5C401F00A06ADD /* IGListArrayUtilsInternal.h */; };
|
||||
7BC0C61D1F5C402600A06ADD /* IGListArrayUtilsInternal.h in Headers */ = {isa = PBXBuildFile; fileRef = 7BC0C61A1F5C401F00A06ADD /* IGListArrayUtilsInternal.h */; };
|
||||
|
|
@ -984,6 +986,7 @@
|
|||
0B3B93411E08D7F5008390ED /* IGListWorkingRangeHandler.h in Headers */,
|
||||
294652B81EA927750063BDD9 /* IGListBatchUpdateData+DebugDescription.h in Headers */,
|
||||
0B3B92E71E08D7F5008390ED /* IGListIndexPathResultInternal.h in Headers */,
|
||||
5D1C6B481FB1109000188009 /* IGListAdapterUpdateTester.h in Headers */,
|
||||
0B3B932F1E08D7F5008390ED /* IGListAdapterProxy.h in Headers */,
|
||||
0B3B92FD1E08D7F5008390ED /* IGListAdapterDelegate.h in Headers */,
|
||||
0B3B92F71E08D7F5008390ED /* IGListAdapter.h in Headers */,
|
||||
|
|
@ -1464,6 +1467,7 @@
|
|||
0B3B93131E08D7F5008390ED /* IGListReloadDataUpdater.m in Sources */,
|
||||
0B3B93231E08D7F5008390ED /* IGListStackedSectionController.m in Sources */,
|
||||
294652B41EA927440063BDD9 /* UICollectionView+DebugDescription.m in Sources */,
|
||||
5D1C6B491FB1109200188009 /* IGListAdapterUpdateTester.m in Sources */,
|
||||
298DD9CB1E3ACFE300F76F50 /* IGListBindingSectionController.m in Sources */,
|
||||
0B3B92C91E08D7F5008390ED /* IGListBatchUpdateData.mm in Sources */,
|
||||
);
|
||||
|
|
|
|||
Loading…
Reference in a new issue