File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
crates/intrinsic-test/src/common Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -96,6 +96,8 @@ case ${TARGET} in
96
96
TEST_RUNNER=" ${CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_RUNNER} "
97
97
TEST_SKIP_INTRINSICS=crates/intrinsic-test/missing_x86.txt
98
98
export STDARCH_DISABLE_ASSERT_INSTR=1
99
+ PATH=" $PATH " :" $( pwd) " /c_programs
100
+ export PATH
99
101
100
102
export RUSTFLAGS=" ${RUSTFLAGS} -C target-feature=+avx"
101
103
cargo_test " ${PROFILE} "
Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ pub trait SupportedArchitectureTest {
49
49
fn cpp_compilation ( & self ) -> Option < CppCompilation > ;
50
50
51
51
fn build_c_file ( & self ) -> bool {
52
- let ( chunk_size, chunk_count) = manual_chunk ( self . intrinsics ( ) . len ( ) , 100 ) ;
52
+ let ( chunk_size, chunk_count) = manual_chunk ( self . intrinsics ( ) . len ( ) , 400 ) ;
53
53
54
54
let cpp_compiler_wrapped = self . cpp_compilation ( ) ;
55
55
@@ -126,7 +126,7 @@ pub trait SupportedArchitectureTest {
126
126
fn build_rust_file ( & self ) -> bool {
127
127
std:: fs:: create_dir_all ( "rust_programs/src" ) . unwrap ( ) ;
128
128
129
- let ( chunk_size, chunk_count) = manual_chunk ( self . intrinsics ( ) . len ( ) , 100 ) ;
129
+ let ( chunk_size, chunk_count) = manual_chunk ( self . intrinsics ( ) . len ( ) , 400 ) ;
130
130
131
131
let mut cargo = File :: create ( "rust_programs/Cargo.toml" ) . unwrap ( ) ;
132
132
write_bin_cargo_toml ( & mut cargo, chunk_count) . unwrap ( ) ;
You can’t perform that action at this time.
0 commit comments