Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
4d3a22b4
Commit
4d3a22b4
authored
Jul 30, 2009
by
John David Anglin
Committed by
John David Anglin
Jul 30, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
options.exp: Use "!=" instead of "ne".
* lib/options.exp: Use "!=" instead of "ne". From-SVN: r150283
parent
cb5c784d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
4 deletions
+6
-4
gcc/testsuite/ChangeLog
+2
-0
gcc/testsuite/lib/options.exp
+4
-4
No files found.
gcc/testsuite/ChangeLog
View file @
4d3a22b4
2009-07-30 John David Anglin <dave.anglin@nrc-cnrc.gc.ca>
* lib/options.exp: Use "!=" instead of "ne".
* gcc.dg/vector-4.c: Add -fno-common option on hppa*-*-hpux* (32-bit).
* gcc.dg/ucnid-11.c: Skip on hppa*-*-hpux* (32-bit).
...
...
gcc/testsuite/lib/options.exp
View file @
4d3a22b4
...
...
@@ -41,11 +41,11 @@ proc check_for_options {language gcc_options compiler_patterns compiler_non_patt
remote_file build delete $filename.c $filename.x $filename.gcno
foreach pattern [split $compiler_patterns "\n"] {
if {$pattern
ne
""} {
if {$pattern
!=
""} {
if {[regexp -- "$pattern" $gcc_output]} {
pass "$test $pattern"
} else {
if {$expected_failure
ne
""} {
if {$expected_failure
!=
""} {
xfail "$test $pattern"
} else {
fail "$test $pattern"
...
...
@@ -54,11 +54,11 @@ proc check_for_options {language gcc_options compiler_patterns compiler_non_patt
}
}
foreach pattern [split $compiler_non_patterns "\n"] {
if {$pattern
ne
""} {
if {$pattern
!=
""} {
if {![regexp -- "$pattern" $gcc_output]} {
pass "$test $pattern"
} else {
if {$expected_failure
ne
""} {
if {$expected_failure
!=
""} {
xfail "$test $pattern"
} else {
fail "$test $pattern"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment