Skip to content

Commit 37461ae

Browse files
committed
Fix CI on emscripten
1 parent c400d9f commit 37461ae

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

libc-test/build.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2895,6 +2895,9 @@ fn test_emscripten(target: &str) {
28952895
});
28962896

28972897
cfg.skip_struct(move |ty| {
2898+
if ty.starts_with("__c_anonymous_") {
2899+
return true;
2900+
}
28982901
match ty {
28992902
// This is actually a union, not a struct
29002903
"sigval" => true,

0 commit comments

Comments
 (0)