aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorYang Tse <yangsita@gmail.com>2008-10-22 15:03:15 +0000
committerYang Tse <yangsita@gmail.com>2008-10-22 15:03:15 +0000
commit81e48ada47e466fb476155b5f996138498ee6247 (patch)
treedca6bcaa4dcf6c759a4519641849fdf3260878e3 /tests
parent598bc44f67a21cec8affca18c33ee46c5dd7e89e (diff)
For i686 icc autobuilds:
Re-enable all tests for debug-enabled builds. For debug-disabled builds only 8 tests are enabled.
Diffstat (limited to 'tests')
-rwxr-xr-xtests/runtests.pl9
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/runtests.pl b/tests/runtests.pl
index 5456a8732..18c65c9f4 100755
--- a/tests/runtests.pl
+++ b/tests/runtests.pl
@@ -1823,7 +1823,14 @@ sub singletest {
my $dbghosttype=join(' ', runclientoutput("uname -a"));
if(($dbghosttype =~ /SMP PREEMPT/) && ($dbghosttype =~ /i686 GNU/)) {
- $why = "debugging icc build" if(($testnum != 1) && ($testnum != 100));
+ if(!$curl_debug) {
+ if(($testnum != 1) && ($testnum != 100) &&
+ ($testnum != 500) && ($testnum != 507) &&
+ ($testnum != 517) && ($testnum != 534) &&
+ ($testnum != 557) && ($testnum != 1013)) {
+ $why = "debugging icc build";
+ }
+ }
}
if(!$why) {