Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
run cargo fmt in libc-test after all
  • Loading branch information
benjamin-sieffert committed Jul 21, 2023
commit 225eead6147f108cd9193df22b76ba793449f67d
28 changes: 6 additions & 22 deletions libc-test/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2734,30 +2734,14 @@ fn test_emscripten(target: &str) {
n if n.starts_with("PTRACE_") => true,
n if n.starts_with("QIF_") => true,

| "ADDR_NO_RANDOMIZE"
| "MMAP_PAGE_ZERO"
| "ADDR_COMPAT_LAYOUT"
| "READ_IMPLIES_EXEC"
| "ADDR_LIMIT_32BIT"
| "SHORT_INODE"
| "WHOLE_SECONDS"
| "STICKY_TIMEOUTS"
| "ADDR_LIMIT_3GB"
=> true,
"ADDR_NO_RANDOMIZE" | "MMAP_PAGE_ZERO" | "ADDR_COMPAT_LAYOUT" | "READ_IMPLIES_EXEC"
| "ADDR_LIMIT_32BIT" | "SHORT_INODE" | "WHOLE_SECONDS" | "STICKY_TIMEOUTS"
| "ADDR_LIMIT_3GB" => true,

| "USRQUOTA"
| "GRPQUOTA"
=> true,
"USRQUOTA" | "GRPQUOTA" => true,

| "Q_GETFMT"
| "Q_GETINFO"
| "Q_SETINFO"
| "Q_SYNC"
| "Q_QUOTAON"
| "Q_QUOTAOFF"
| "Q_GETQUOTA"
| "Q_SETQUOTA"
=> true,
"Q_GETFMT" | "Q_GETINFO" | "Q_SETINFO" | "Q_SYNC" | "Q_QUOTAON" | "Q_QUOTAOFF"
| "Q_GETQUOTA" | "Q_SETQUOTA" => true,

// FIXME: https://github.com/emscripten-core/emscripten/pull/14883
"SIG_IGN" => true,
Expand Down