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
f6a9714b
Commit
f6a9714b
authored
Oct 30, 2002
by
Hans-Peter Nilsson
Committed by
Hans-Peter Nilsson
Oct 30, 2002
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
* lib/compat.exp (compat-execute): Don't clean out a gluefile.
From-SVN: r58646
parent
33c21f5c
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
10 additions
and
1 deletions
+10
-1
gcc/testsuite/ChangeLog
+4
-0
gcc/testsuite/lib/compat.exp
+6
-1
No files found.
gcc/testsuite/ChangeLog
View file @
f6a9714b
2002-10-29 Hans-Peter Nilsson <hp@bitrange.com>
* lib/compat.exp (compat-execute): Don't clean out a gluefile.
2002-10-29 Mark Mitchell <mark@codesourcery.com>
PR c++/8287
...
...
gcc/testsuite/lib/compat.exp
View file @
f6a9714b
...
...
@@ -120,6 +120,7 @@ proc compat-execute { src1 use_alt } {
global tool
global verbose
global testcase
global gluefile
# Use the dg-options mechanism to specify extra flags for this test.
# FIXME: This does not handle other uses of dg-options, and it only
...
...
@@ -229,7 +230,11 @@ proc compat-execute { src1 use_alt } {
# Clean up object files.
set files [glob -nocomplain *.o]
if { $files != "" } {
eval "remote_file build delete $files"
foreach objfile $files {
if { [info exists gluefile] && $objfile != $gluefile } {
eval "remote_file build delete $objfile"
}
}
}
}
}
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