File tree Expand file tree Collapse file tree 2 files changed +3
-12
lines changed
crates/intrinsic-test/src/common Expand file tree Collapse file tree 2 files changed +3
-12
lines changed Original file line number Diff line number Diff line change 8585# Arm specific
8686case " ${TARGET} " in
8787 aarch64-unknown-linux-gnu* |armv7-unknown-linux-gnueabihf* )
88- CPPFLAGS=" ${TEST_CPPFLAGS} " RUSTFLAGS=" ${HOST_RUSTFLAGS} " RUST_LOG=info \
88+ CPPFLAGS=" ${TEST_CPPFLAGS} " RUSTFLAGS=" ${HOST_RUSTFLAGS} " RUST_LOG=trace \
8989 cargo run " ${INTRINSIC_TEST} " " ${PROFILE} " \
9090 --bin intrinsic-test -- intrinsics_data/arm_intrinsics.json \
9191 --runner " ${TEST_RUNNER} " \
@@ -96,7 +96,7 @@ case "${TARGET}" in
9696 ;;
9797
9898 aarch64_be-unknown-linux-gnu* )
99- CPPFLAGS=" ${TEST_CPPFLAGS} " RUSTFLAGS=" ${HOST_RUSTFLAGS} " RUST_LOG=info \
99+ CPPFLAGS=" ${TEST_CPPFLAGS} " RUSTFLAGS=" ${HOST_RUSTFLAGS} " RUST_LOG=trace \
100100 cargo run " ${INTRINSIC_TEST} " " ${PROFILE} " \
101101 --bin intrinsic-test -- intrinsics_data/arm_intrinsics.json \
102102 --runner " ${TEST_RUNNER} " \
@@ -114,7 +114,7 @@ case "${TARGET}" in
114114 # Hence the use of `env -u`.
115115 env -u CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUNNER \
116116 CPPFLAGS=" ${TEST_CPPFLAGS} " RUSTFLAGS=" ${HOST_RUSTFLAGS} " \
117- RUST_LOG=info RUST_BACKTRACE=1 \
117+ RUST_LOG=trace RUST_BACKTRACE=1 \
118118 cargo run " ${INTRINSIC_TEST} " " ${PROFILE} " \
119119 --bin intrinsic-test -- intrinsics_data/x86-intel.xml \
120120 --runner " ${TEST_RUNNER} " \
Original file line number Diff line number Diff line change 9898 . collect :: < Result < ( ) , String > > ( )
9999 . unwrap ( ) ;
100100
101- let mut file = File :: create ( "c_programs/main.cpp" ) . unwrap ( ) ;
102- write_main_cpp (
103- & mut file,
104- Self :: PLATFORM_C_DEFINITIONS ,
105- Self :: PLATFORM_C_HEADERS ,
106- self . intrinsics ( ) . iter ( ) . map ( |i| i. name . as_str ( ) ) ,
107- )
108- . unwrap ( ) ;
109-
110101 let available_parallelism = std:: thread:: available_parallelism ( ) . unwrap ( ) . get ( ) ;
111102 self . intrinsics ( )
112103 . par_chunks ( available_parallelism)
You can’t perform that action at this time.
0 commit comments