summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony Green <green@moxielogic.com>2019-02-12 08:50:30 -0500
committerAnthony Green <green@moxielogic.com>2019-02-12 08:52:18 -0500
commit042ef8c314a946ef1cd58c6e10cd74e403ef5bf9 (patch)
tree96f5c46723e9eeedc23af3031fd4e3c15b66cfaa
parent8fa88373a1d433c675b11200ccd58418e91f81e4 (diff)
downloadlibffi-042ef8c314a946ef1cd58c6e10cd74e403ef5bf9.tar.gz
Remove -Os testing. No ABI impact, and helps trim log lengths.
-rw-r--r--testsuite/lib/libffi.exp6
1 files changed, 3 insertions, 3 deletions
diff --git a/testsuite/lib/libffi.exp b/testsuite/lib/libffi.exp
index 28f793a..b3f684c 100644
--- a/testsuite/lib/libffi.exp
+++ b/testsuite/lib/libffi.exp
@@ -1,4 +1,4 @@
-# Copyright (C) 2003, 2005, 2008, 2009, 2010, 2011, 2014 Free Software Foundation, Inc.
+# Copyright (C) 2003, 2005, 2008, 2009, 2010, 2011, 2014, 2019 Free Software Foundation, Inc.
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
@@ -480,11 +480,11 @@ proc run-many-tests { testcases extra_flags } {
switch $compiler_vendor {
"clang" {
set common "-W -Wall"
- set optimizations { "-O0" "-O2" "-Os" }
+ set optimizations { "-O0" "-O2" }
}
"gnu" {
set common "-W -Wall -Wno-psabi"
- set optimizations { "-O0" "-O2" "-Os" "-O2 -fomit-frame-pointer" }
+ set optimizations { "-O0" "-O2" "-O2 -fomit-frame-pointer" }
}
default {
# Assume we are using the vendor compiler.