-
Notifications
You must be signed in to change notification settings - Fork 491
ccinfo: when providing ccinfo, optionally include libstd and alloc #624
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
c871d06
ccinfo: when providing ccinfo, optionally include libstd and alloc
durin42 2d9f0ee
Add verification that all files were properly partitioned
hlopko d1a8771
Disable print
hlopko 6db880f
stdlib_ordering: new tests to ensure check stdlib rlib ordering
durin42 41d8456
native_deps: give up on testing cc_binary using rust_library
durin42 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
load(":stdlib_ordering.bzl", "stdlib_ordering_suite") | ||
|
||
############################ UNIT TESTS ############################# | ||
stdlib_ordering_suite(name = "stdlib_ordering_suite") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
pub fn print_stuff() { | ||
println!("stuff"); | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
"""Unittest to verify ordering of rust stdlib in rust_library() CcInfo""" | ||
load("@bazel_skylib//lib:unittest.bzl", "analysistest", "asserts") | ||
load("//rust:defs.bzl", "rust_library") | ||
|
||
def _categorize_library(name): | ||
"""Given an rlib name, guess if it's std, core, or alloc.""" | ||
if "std" in name: | ||
return "std" | ||
if "core" in name: | ||
return "core" | ||
if "alloc" in name: | ||
return "alloc" | ||
if "compiler_builtins" in name: | ||
return "compiler_builtins" | ||
return "other" | ||
|
||
def _dedup_preserving_order(list): | ||
"""Given a list, deduplicate its elements preserving order.""" | ||
r = [] | ||
seen = {} | ||
for e in list: | ||
if e in seen: | ||
continue | ||
seen[e] = 1 | ||
r.append(e) | ||
return r | ||
|
||
def _libstd_ordering_test_impl(ctx): | ||
env = analysistest.begin(ctx) | ||
tut = analysistest.target_under_test(env) | ||
libs = [lib.static_library for li in tut[CcInfo].linking_context.linker_inputs.to_list() for lib in li.libraries] | ||
rlibs = [_categorize_library(lib.basename) for lib in libs if ".rlib" in lib.basename] | ||
set_to_check = _dedup_preserving_order([lib for lib in rlibs if lib != "other"]) | ||
asserts.equals(env, ["std", "core", "compiler_builtins", "alloc"], set_to_check) | ||
return analysistest.end(env) | ||
|
||
libstd_ordering_test = analysistest.make(_libstd_ordering_test_impl) | ||
|
||
def _native_dep_test(): | ||
rust_library( | ||
name = "some_rlib", | ||
srcs = ["some_rlib.rs"], | ||
) | ||
|
||
libstd_ordering_test( | ||
name = "libstd_ordering_test", | ||
target_under_test = ":some_rlib", | ||
) | ||
|
||
def stdlib_ordering_suite(name): | ||
"""Entry-point macro called from the BUILD file. | ||
|
||
Args: | ||
name: Name of the macro. | ||
""" | ||
_native_dep_test() | ||
|
||
native.test_suite( | ||
name = name, | ||
tests = [ | ||
":libstd_ordering_test", | ||
], | ||
) |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.