projects
/
gcc.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
302a3fa
)
Adopt to standard requirements.
author
Martin v. Löwis
<loewis@gcc.gnu.org>
Fri, 2 Apr 1999 04:40:06 +0000
(
04:40
+0000)
committer
Martin v. Löwis
<loewis@gcc.gnu.org>
Fri, 2 Apr 1999 04:40:06 +0000
(
04:40
+0000)
From-SVN: r26112
gcc/testsuite/g++.old-deja/g++.jason/opeq5.C
patch
|
blob
|
history
diff --git
a/gcc/testsuite/g++.old-deja/g++.jason/opeq5.C
b/gcc/testsuite/g++.old-deja/g++.jason/opeq5.C
index 51b3e6e237caa130c8b89b20556c92e2349f53ab..90996e9699869177514f5d96e9385e836bec8a3a 100644
(file)
--- a/
gcc/testsuite/g++.old-deja/g++.jason/opeq5.C
+++ b/
gcc/testsuite/g++.old-deja/g++.jason/opeq5.C
@@
-1,7
+1,7
@@
// Testcase for tricky synthesized op= in complex inheritance situation.
-//
See discussion in g++int.texi
.
-
-//
execution test - XFAIL *-*-*
+//
This used to test whether the virtual base was copy-assigned only once
.
+// That feature is not required by ISO C++, so the test now only checks
+//
whether the vbase is assigned at all.
int count = 0;
extern "C" int printf (const char *, ...);
@@
-20,7
+20,7
@@
int main()
D a, b;
a = b;
printf ("%d\n",count);
- if (count
!= 1
)
+ if (count
== 0
)
return 1;
return 0;
}