diff options
author | bors[bot] <26634292+bors[bot]@users.noreply.github.com> | 2023-01-27 16:10:43 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-01-27 16:10:43 +0000 |
commit | 21ec24265b2fb5ee76f806680d30ea90b4903ec8 (patch) | |
tree | b15fa82ae0d451b275810591dde58de97bb76fb9 | |
parent | d4f6a97c628fe561ff5d1a14cf26113de9a869d3 (diff) | |
parent | 53c0231c78261c7d142dd71c1bc861b6298d553a (diff) | |
download | gcc-21ec24265b2fb5ee76f806680d30ea90b4903ec8.zip gcc-21ec24265b2fb5ee76f806680d30ea90b4903ec8.tar.gz gcc-21ec24265b2fb5ee76f806680d30ea90b4903ec8.tar.bz2 |
Merge #1759
1759: Revert 10-second timeout for each test r=philberty a=Parthib314
* Fixes issue #1747
**Remove the 10-second timeout for each compile case**
Co-authored-by: vagrant <vagrant@vagrant.vm>
-rw-r--r-- | gcc/testsuite/lib/rust.exp | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/gcc/testsuite/lib/rust.exp b/gcc/testsuite/lib/rust.exp index 287905b..0c15507 100644 --- a/gcc/testsuite/lib/rust.exp +++ b/gcc/testsuite/lib/rust.exp @@ -168,10 +168,7 @@ proc rust_target_compile { source dest type options } { global gluefile wrap_flags global ALWAYS_RUSTFLAGS global RUST_UNDER_TEST - global individual_timeout - - # HACK: guard against infinite loops in the compiler - set individual_timeout 10 + if { [target_info needs_status_wrapper] != "" && [info exists gluefile] } { lappend options "libs=${gluefile}" |