Skip to content

Commit

Permalink
[MSAN] Enable memory sanitizer build (google#8094)
Browse files Browse the repository at this point in the history
* CRAS: Use CARGO_BUILD_TARGET="x86_64-unknown-linux-gnu"

In oss-fuzz, to build with MemorySanitizer, Rust part needs to use

```
CARGO_BUILD_TARGET="x86_64-unknown-linux-gnu"
```

to resolve libc `MemorySanitizer: use-of-uninitialized-value` error
according to google#3469.

* CRAS: Add new member to auto_ccs

Co-authored-by: paulhsia <paulhsia@google.com>
  • Loading branch information
2 people authored and henryrneh committed Aug 1, 2022
1 parent 23c401a commit f9f796b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
3 changes: 2 additions & 1 deletion projects/cras/build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,10 @@
cd ${SRC}/adhd/cras
./git_prepare.sh
mkdir -p ${WORK}/build && cd ${WORK}/build
export CARGO_BUILD_TARGET="x86_64-unknown-linux-gnu"
CFLAGS="${CFLAGS} -DHAVE_FUZZER" ${SRC}/adhd/cras/configure --disable-featured
make -j$(nproc)
cp ${WORK}/build/src/server/rust/target/release/libcras_rust.a /usr/local/lib
cp ${WORK}/build/src/server/rust/target/${CARGO_BUILD_TARGET}/release/libcras_rust.a /usr/local/lib

CRAS_FUZZERS="rclient_message cras_hfp_slc cras_fl_media_fuzzer"

Expand Down
7 changes: 6 additions & 1 deletion projects/cras/project.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,10 @@ auto_ccs:
- "hunghsienchen@chromium.org"
- "htcheong@chromium.org"
- "jrwu@chromium.org"
builds_per_day: 2
- "michelleyswang@google.com"
sanitizers:
- address
- memory
- undefined
builds_per_day: 4
main_repo: 'https://chromium.googlesource.com/chromiumos/third_party/adhd'

0 comments on commit f9f796b

Please sign in to comment.