File tree Expand file tree Collapse file tree 3 files changed +4
-2
lines changed
docker/i686-unknown-linux-gnu Expand file tree Collapse file tree 3 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ RUN mkdir intel-sde
1313RUN tar -xJf sde.tar.xz --strip-components=1 -C intel-sde
1414ENV CARGO_TARGET_I686_UNKNOWN_LINUX_GNU_RUNNER="/intel-sde/sde \
1515 -cpuid-in /checkout/ci/cpuid.def \
16- -rtm-mode full -tsx --"
16+ -pin-log-file /checkout/target/pin-log.txt --"
1717# SDE doesn't support AMD extensions
1818# FIXME: find a way to test these
1919ENV STDARCH_TEST_SKIP_FEATURE="sse4a,tbm,xop"
Original file line number Diff line number Diff line change @@ -19,6 +19,8 @@ run() {
1919 # Prevent `Read-only file system (os error 30)`.
2020 cargo generate-lockfile
2121
22+ echo 0 | sudo tee /proc/sys/kernel/yama/ptrace_scope
23+
2224 echo " Building docker container for TARGET=${1} "
2325 docker build -t stdarch -f " ci/docker/${1} /Dockerfile" ci/
2426 mkdir -p target c_programs rust_programs
Original file line number Diff line number Diff line change @@ -92,7 +92,7 @@ cargo_test() {
9292CORE_ARCH=" --manifest-path=crates/core_arch/Cargo.toml"
9393STDARCH_EXAMPLES=" --manifest-path=examples/Cargo.toml"
9494
95- cargo_test " ${CORE_ARCH} "
95+ cargo_test " ${CORE_ARCH} " || cat /checkout/target/pin-log.txt
9696
9797if [ " $NOSTD " != " 1" ]; then
9898 cargo_test " ${STDARCH_EXAMPLES} "
You can’t perform that action at this time.
0 commit comments